Repository: awslabs/aws-service-catalog-products Branch: main Commit: 69b295f88758 Files: 17327 Total size: 29.8 MB Directory structure: 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 ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/PULL_REQUEST_TEMPLATE.md ================================================ *Issue #, if available:* *Description of changes:* By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. ================================================ FILE: .gitignore ================================================ .idea *.iml node_modules/ dist/ ignored .DS_Store ================================================ FILE: CODE_OF_CONDUCT.md ================================================ ## Code of Conduct This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact opensource-codeofconduct@amazon.com with any additional questions or comments. ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing Guidelines Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional documentation, we greatly value feedback and contributions from our community. Please read through this document before submitting any issues or pull requests to ensure we have all the necessary information to effectively respond to your bug report or contribution. ## Reporting Bugs/Feature Requests We welcome you to use the GitHub issue tracker to report bugs or suggest features. When filing an issue, please check [existing open](https://github.com/awslabs/aws-service-catalog-products/issues), or [recently closed](https://github.com/awslabs/aws-service-catalog-products/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already reported the issue. Please try to include as much information as you can. Details like these are incredibly useful: * A reproducible test case or series of steps * The version of our code being used * Any modifications you've made relevant to the bug * Anything unusual about your environment or deployment ## Contributing via Pull Requests Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that: 1. You are working against the latest source on the *master* branch. 2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already. 3. You open an issue to discuss any significant work - we would hate for your time to be wasted. To send us a pull request, please: 1. Fork the repository. 2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change. 3. Ensure local tests pass. 4. Commit to your fork using clear commit messages. 5. Send us a pull request, answering any default questions in the pull request interface. 6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation. GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and [creating a pull request](https://help.github.com/articles/creating-a-pull-request/). ## Finding contributions to work on Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/awslabs/aws-service-catalog-products/labels/help%20wanted) issues is a great place to start. ## Code of Conduct This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact opensource-codeofconduct@amazon.com with any additional questions or comments. ## Security issue notifications If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue. ## Licensing See the [LICENSE](https://github.com/awslabs/aws-service-catalog-products/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution. We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes. ================================================ FILE: LICENSE ================================================ Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ ## AWS Service Catalog Products This repository contains a number of solutions that can be easily deployed by the Service Catalog Tools ([aws-service-catalog-factory](https://github.com/awslabs/aws-service-catalog-factory) and [aws-service-catalog-puppet](https://github.com/awslabs/aws-service-catalog-puppet)). The solutions are grouped by functional area: - foundational - these are the solutions we recommend you use when building a foundation in AWS - operations - these are the solutions we recommend to help you with operations - reference - these are sample templates useful when you are learning how to write AWS Cloudformation templates - unsorted - these are solutions that have been tested but not yet classified or standardised ## Getting started Within the functional area directories you will see a list of solutions: ```bash ls -la foundational drwxr-xr-x 8 user group 256 18 Nov 21:49 . drwxr-xr-x 15 user group 480 29 Nov 09:55 .. drwxr-xr-x 7 user group 224 19 Nov 14:39 amazon-guardduty-multi-account drwxr-xr-x 6 user group 192 19 Nov 14:44 aws-securityhub-multi-account drwxr-xr-x 6 user group 192 19 Nov 12:58 delete-default-networking ``` Each solution should be deployable independently and each solution should be deployable with all other solutions in this repository without issue. Each solution has the same consistent folder structure: ```bash ls -la foundational/amazon-guardduty-multi-account drwxr-xr-x 7 user group 224 19 Nov 14:39 . drwxr-xr-x 8 user group 256 18 Nov 21:49 .. -rw-r--r-- 1 user group 0 18 Nov 21:43 README.md drwxr-xr-x 6 user group 192 19 Nov 14:07 stacks drwxr-xr-x 6 user group 192 19 Nov 14:07 portfolios drwxr-xr-x 6 user group 192 19 Nov 14:07 apps drwxr-xr-x 6 user group 192 19 Nov 14:07 workspaces -rw-r--r-- 1 user group 2602 19 Nov 14:39 example-manifest.yaml ``` - The README.md explains what the solution does. - The stacks directory is the source code for the parts of the solution that should be created as stacks - The portfolios directory is the source code for the parts of the solution that should be created as products - The apps directory is the source code for the parts of the solution that should be created as CDK apps - The workspaces directory is the source code for the parts of the solution that should be created as Terraform workspaces - The example-manifest.yaml is a valid YAML file providing an example of how to deploy the solution Within each of the directorys stacks, portfolios, apps, workspaces you will find a file named amazon-guardduty-multi-account.yaml. Each of the amazon-guardduty-multi-account.yaml files is a valid factory YAML file that can be used to configure your install to build the parts of the solution that are needed. ### Importing a solution To import a solution you should copy each of the YAML files from its stacks, apps, workspaces and portfolios directories into the matching directory in your ServiceCatalogFactory repo. If you are not going to be using AWS CodeCommit for the source directory you will need to change that configuration. Once you are ready commit the changes and run the factory pipeline. The new pipelines will be created and you are now ready to copy over the source code for the different parts. ### Deploying a solution To deploy a solution you should copy the contents of the example-manifest.yaml into your ServiceCatalogPuppet repo into the path manifests/.yaml. If there is a file in that path already you should merge the contents. Ensure you are happy with the parameters specified and the tags used before committing and pushing the change. ### Contributing If you have a solution you would like to contribute please [raise an issue](https://github.com/awslabs/aws-service-catalog-products/issues/new) to see verify if a similar solution existing already or is in active development. Once you are ready to get started please fork the repository and complete the following TODOs: 1. choose which or create a new functional area your solution should be added to (see above for descriptions) 2. choose a unique and descriptive name - eg amazon-guardduty-multi-account 3. create a foundational/amazon-guardduty-multi-account/README.md 4. read over the programming standards section below 5. build out your solution in the directories foundational/amazon-guardduty-multi-account/stacks, foundational/amazon-guardduty-multi-account/apps, foundational/amazon-guardduty-multi-account/workspaces, foundational/amazon-guardduty-multi-account/portfolios 6. create each factory YAML file in each directory - eg. foundational/amazon-guardduty-multi-account/stacks/amazon-guardduty-multi-account.yaml 7. create an foundational/amazon-guardduty-multi-account/example-manifest.yaml file containing each part of the solution and each of the parameters you have created for each part. 8. raise a PR ## Programming Standards Please read the following standards and follow them when implementing solutions for this repo ### General and Structure 1. You should not make changes to previously shared parts of your solution - you should create a new version of that part. 2. For each part of your solution that will be provisioned by the Service Catalog Tools you should use stacks, apps or workspaces - portfolios should be reserved for self service use cases. 3. When building your solution you should favour mono repos over poly repos - with the exception of when you are using portfolios. 4. When building solutions where parts need to be provisioned into different accounts try to limit the number of parts needed for each account to 1. This will reduce the complexity for users wishing to deploy your solution. 5. Each solution should be configured to use AWS CodeCommit as a git source to ensure a consistent experience when users import. ### Common parameters and tags When writing your solution ensure you are using the autogenerated / provided parameters: - SCTAccountId - puppet and factory account id - SCTManifestAccounts - JSON encoded list of all accounts included in the manifest (including accounts in OUs specified) comprising of account_id and email attributes - SCTManifestSpokes - same as SCTManifestAccounts but without including the SCT account. - SCTConfigRegions - JSON encoded list of regions specified in the config You should also use the following tags in your example-manifest.yaml: - role:sct - the account containing the Service Catalog Tools - role:org_management - the AWS Organizations management account - role:securitytooling - the account designated for security tooling - role:spoke - spoke accounts ### AWS CloudFormation 1. All AWS CloudFormation parameter and output names should be prefixed with the solution name to avoid parameter clashes. 2. All AWS CloudFormation templates should pass a CFN Nag check 3. Each AWS CloudFormation template should have a description 4. Each AWS CloudFormation template parameter should have a description 5. Each AWS CloudFormation template output should have a description ### AWS IAM Resources 1. When creating IAM resources you should allow others to configure the path and role name via parameters. 2. There should be default values for IAM path and role name values 3. IAM path default values should be the same value across all parts of the solution and should contain the solution category and an indication of the solution name in it. 4. IAM roles should follow least privilege or users should be able to specify an IAM boundary. ### AWS Lambda 1. AWS Lambda function dependencies should be pinned to specific versions. 2. AWS Lambda functions should allow the configuration of log level via an environmental variable. ## Where is the old content The previous master branch is still available as the branch archive ## License Summary This sample code is made available under the MIT-0 license. See the LICENSE file. ================================================ FILE: foundational/README.md ================================================ ## Global Parameters SecurityToolingAccountId FinanceAccountId ================================================ FILE: foundational/account-vending/README.md ================================================ # Account Vending This solution is to be deployed using the service catalog tools. Once deployed it will allow you to create new AWS accounts using the AWS Organizations API or via the AWS Control Tower Account Factory (using AWS Service Catalog). ## Setting up Before you can create accounts you will need to provision stacks in the stacks directory. To create accounts you will need to provision the products in the portfolios directory. ### Setting up the stacks Before provisioning the stacks you will need to create pipelines for them. To do this copy the stacks/account-vending.yaml file into the stacks directory of your ServiceCatalogFactory git repo. It should look like this: ``` tree ServiceCatalogFactory ServiceCatalogFactory └── stacks └── account-vending.yaml ``` You will most likely have other files in the repository - this is okay. Once you have copied the file edit it to declare where your source code will be. The account-vending.yaml file uses paths for the source code. You do not have to do so and are free to change it. You can read more about paths / monorepos here: https://service-catalog-tools-workshop.com/every-day-use/using-a-mono-repo.html Once you have done that you should upload/create the source code for the four stacks where ever you decided. Once you have done that you can commit and push your ServiceCatalogFactory changes and the solution will execute. Once completed you will have four new pipelines that will run creating artefacts for the four stacks: - prereqs-puppet-account - prereqs-controltower-account - prereqs-orgs-account - prereqs-puppet-account-optional ### Creating the Service Catalog Products This is very similar to the creating of the stacks. You will need to copy the portfolios/account-vending.yaml file into the portfolios directory of your ServiceCatalogFactory repository. Within the portfolios/account-vending.yaml file you will need to update the source details to declare where your source code will be. This works the same as stacks. You will need to upload/create the source code for the two products where ever you decided. Once you have done that you can commit and push your ServiceCatalogFactory changes and the solution will execute. Once completed you will have four new pipelines that will run creating artefacts for the two products: account-vending-with-aws-organizations account-vending-with-aws-control-tower You can verify this by checking Service Catalog to see the products are there. ## Provisioning the stacks When accounts are created using AWS Service Catalog or AWS Control Tower this solution will ensure we wait for the account to be created, then bootstrap it and then run the single account pipeline for it. This will ensure it is ready for use by the end user. To do all of this there is a step function and some helper lambda functions. To ensure they are provisioned you will need to provision the stacks we created in the earlier step. To provision the stacks you will need to add the following to your manifest file: ```yaml parameters: AccountVendingIAMRolesPath: default: /foundational/account-vending/ stacks: account-vending-prereqs-controltower-account: name: account-vending-prereqs-controltower-account version: v1 execution: hub capabilities: - CAPABILITY_NAMED_IAM parameters: AccountVendingControlTowerRoleName: default: AccountVendingOrgsRole deploy_to: tags: - tag: 'role:controltower_management' regions: default_region outputs: ssm: - param_name: "/foundational/account-vending/AccountVendingAccountVendingControlTowerRoleArn" stack_output: AccountVendingAccountVendingControlTowerRoleArn account-vending-prereqs-orgs-account: name: account-vending-prereqs-orgs-account version: v1 execution: hub capabilities: - CAPABILITY_NAMED_IAM parameters: AccountVendingOrgsRoleName: default: AccountVendingOrgsRoleName AWSOrganizationsCrossAccountRoleName: default: OrganizationAccountAccessRole deploy_to: tags: - tag: 'role:orgs_management' regions: default_region outputs: ssm: - param_name: "/foundational/account-vending/AccountVendingOrgsRoleArn" stack_output: AccountVendingOrgsRoleArn account-vending-prereqs-puppet-account-optional: name: account-vending-prereqs-puppet-account-optional version: v1 execution: hub parameters: AccountVendingAccountNotificationCreatedTopicName: default: AccountVendingAccountNotificationCreatedTopic deploy_to: tags: - tag: 'role:sct' regions: default_region outputs: ssm: - param_name: "/foundational/account-vending/AccountVendingAccountNotificationCreatedTopicArn" stack_output: AccountVendingAccountNotificationCreatedTopicArn account-vending-prereqs-puppet-account: name: account-vending-prereqs-puppet-account version: v1 execution: hub capabilities: - CAPABILITY_NAMED_IAM - CAPABILITY_AUTO_EXPAND depends_on: - name: account-vending-prereqs-controltower-account affinity: stack type: stack - name: account-vending-prereqs-orgs-account affinity: stack type: stack - name: account-vending-prereqs-puppet-account-optional affinity: stack type: stack parameters: AccountVendingIAMRolesPath: default: /foundational/account-vending/ AccountVendingAccountOrganizationsRoleArn: ssm: name: "/foundational/account-vending/AccountVendingOrgsRoleArn" AccountVendingControlTowerRoleArn: ssm: name: "/foundational/account-vending/AccountVendingAccountVendingControlTowerRoleArn" AccountVendingAccountCreationCustomResourceBackerFunctionName: default: AccountCreationCustomResourceBacker AccountCreationCustomResourceBackerRoleName: default: AccountCreationCustomResourceBackerRole AccountVendingAccountCreationSNSTopicArn: ssm: name: "/foundational/account-vending/AccountVendingAccountNotificationCreatedTopicArn" AccountVendingStateMachineName: default: account-vending-state-machine AccountVendingStateMachineRoleName: default: StateMachineRole AccountVendingInputValidatorFunctionName: default: InputValidator AccountVendingInputValidatorRoleName: default: InputValidatorRole AccountVendingOrganizationsAccountCreatorFunctionName: default: OrganizationsAccountCreator AccountVendingOrganizationsAccountCreatorRoleName: default: OrganizationsAccountCreatorRole AccountVendingOrganizationsAccountWaiterFunctionName: default: OrganizationsAccountWaiter AccountVendingOrganizationsAccountWaiterRoleName: default: OrganizationsAccountWaiterRole AccountVendingControlTowerAccountCreatorFunctionName: default: ControlTowerAccountCreator AccountVendingControlTowerAccountCreatorRoleName: default: ControlTowerAccountCreatorRole AccountVendingControlTowerAccountWaiterFunctionName: default: ControlTowerAccountWaiter AccountVendingControlTowerAccountWaiterRoleName: default: ControlTowerAccountWaiterRole AccountVendingSubscriptionWaiterFunctionName: default: SubscriptionWaiter AccountVendingSubscriptionWaiterRoleName: default: SubscriptionWaiterRole deploy_to: tags: - tag: 'role:sct' regions: default_region outputs: ssm: - param_name: "/foundational/account-vending/AccountVendingAccountCreationCustomResourceBackerArn" stack_output: AccountVendingAccountCreationCustomResourceBackerArn ``` We recommend you create a new file named ServiceCatalogPuppet/manifests/account-vending.yaml so the resources needed for account vending are kept together. Please note you will to verify the deploy_to statements in the snippet to make sure you have matches for your Organization / Control Tower management account and your SCT account. You may need to add tags to these accounts or you may wish to update the tags in the snippet. Once you have added this file you can commit and push your ServiceCatalogPuppet repository changes. When the solution runs the needed stacks will be created and you are ready to create an account! ### Creating an account using AWS Control Tower To create an account using AWS Control Tower you will need to provision the Service Catalog product named account-vending-account-with-aws-control-tower. This product has parameters that you would expect for account creation and it has a parameter named AccountVendingAccountCreationCustomResourceBackerArn. If you followed the instructions above the value of parameter will be in AWS Systems Manager in the parameter store as a parameter with the name /foundational/account-vending/AccountVendingAccountCreationCustomResourceBackerArn. When you provision the product the account will be created. If you provide account details for an already created account the solution will resume the account creation process. ### Creating an account using AWS Organizations To create an account using AWS Organizations you will need to provision the Service Catalog product named account-vending-account-with-aws-organizations. This product has parameters that you would expect for account creation and it has a parameter named AccountVendingAccountCreationCustomResourceBackerArn. If you followed the instructions above the value of parameter will be in AWS Systems Manager in the parameter store as a parameter with the name /foundational/account-vending/AccountVendingAccountCreationCustomResourceBackerArn. When you provision the product the account will be created. If you provide account details for an already created account the solution will resume the account creation process. ================================================ FILE: foundational/account-vending/example-manifest.yaml ================================================ # Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 parameters: AccountVendingIAMRolesPath: default: /foundational/account-vending/ stacks: account-vending-prereqs-controltower-account: name: account-vending-prereqs-controltower-account version: v1 execution: hub capabilities: - CAPABILITY_NAMED_IAM parameters: AccountVendingControlTowerRoleName: default: AccountVendingOrgsRole deploy_to: tags: - tag: 'role:controltower_management' regions: default_region outputs: ssm: - param_name: "/foundational/account-vending/AccountVendingAccountVendingControlTowerRoleArn" stack_output: AccountVendingAccountVendingControlTowerRoleArn account-vending-prereqs-orgs-account: name: account-vending-prereqs-orgs-account version: v1 execution: hub capabilities: - CAPABILITY_NAMED_IAM parameters: AccountVendingOrgsRoleName: default: AccountVendingOrgsRoleName AWSOrganizationsCrossAccountRoleName: default: OrganizationAccountAccessRole deploy_to: tags: - tag: 'role:orgs_management' regions: default_region outputs: ssm: - param_name: "/foundational/account-vending/AccountVendingOrgsRoleArn" stack_output: AccountVendingOrgsRoleArn account-vending-prereqs-puppet-account-optional: name: account-vending-prereqs-puppet-account-optional version: v1 execution: hub parameters: AccountVendingAccountNotificationCreatedTopicName: default: AccountVendingAccountNotificationCreatedTopic deploy_to: tags: - tag: 'role:sct' regions: default_region outputs: ssm: - param_name: "/foundational/account-vending/AccountVendingAccountNotificationCreatedTopicArn" stack_output: AccountVendingAccountNotificationCreatedTopicArn account-vending-prereqs-puppet-account: name: account-vending-prereqs-puppet-account version: v1 execution: hub capabilities: - CAPABILITY_NAMED_IAM - CAPABILITY_AUTO_EXPAND depends_on: - name: account-vending-prereqs-controltower-account affinity: stack type: stack - name: account-vending-prereqs-orgs-account affinity: stack type: stack - name: account-vending-prereqs-puppet-account-optional affinity: stack type: stack parameters: AccountVendingIAMRolesPath: default: /foundational/account-vending/ AccountVendingAccountOrganizationsRoleArn: ssm: name: "/foundational/account-vending/AccountVendingOrgsRoleArn" AccountVendingControlTowerRoleArn: ssm: name: "/foundational/account-vending/AccountVendingAccountVendingControlTowerRoleArn" AccountVendingAccountCreationCustomResourceBackerFunctionName: default: AccountCreationCustomResourceBacker AccountCreationCustomResourceBackerRoleName: default: AccountCreationCustomResourceBackerRole AccountVendingAccountCreationSNSTopicArn: ssm: name: "/foundational/account-vending/AccountVendingAccountNotificationCreatedTopicArn" AccountVendingStateMachineName: default: account-vending-state-machine AccountVendingStateMachineRoleName: default: StateMachineRole AccountVendingInputValidatorFunctionName: default: InputValidator AccountVendingInputValidatorRoleName: default: InputValidatorRole AccountVendingOrganizationsAccountCreatorFunctionName: default: OrganizationsAccountCreator AccountVendingOrganizationsAccountCreatorRoleName: default: OrganizationsAccountCreatorRole AccountVendingOrganizationsAccountWaiterFunctionName: default: OrganizationsAccountWaiter AccountVendingOrganizationsAccountWaiterRoleName: default: OrganizationsAccountWaiterRole AccountVendingControlTowerAccountCreatorFunctionName: default: ControlTowerAccountCreator AccountVendingControlTowerAccountCreatorRoleName: default: ControlTowerAccountCreatorRole AccountVendingControlTowerAccountWaiterFunctionName: default: ControlTowerAccountWaiter AccountVendingControlTowerAccountWaiterRoleName: default: ControlTowerAccountWaiterRole AccountVendingSubscriptionWaiterFunctionName: default: SubscriptionWaiter AccountVendingSubscriptionWaiterRoleName: default: SubscriptionWaiterRole deploy_to: tags: - tag: 'role:sct' regions: default_region outputs: ssm: - param_name: "/foundational/account-vending/AccountVendingAccountCreationCustomResourceBackerArn" stack_output: AccountVendingAccountCreationCustomResourceBackerArn ================================================ FILE: foundational/account-vending/portfolios/account-vending-with-aws-control-tower/v1/product.template.yaml ================================================ # Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Transform: AWS::Serverless-2016-10-31 AWSTemplateFormatVersion: "2010-09-09" Description: | {"framework": "servicecatalog-products", "role": "product", "product-set": "account-vending", "product": "account-vending-with-aws-control-tower", "version": "v1"} Metadata: AWS::CloudFormation::Interface: ParameterGroups: - Label: default: "Account Details" Parameters: - AccountName - AccountEmail - SSOUserFirstName - SSOUserLastName - SSOUserEmail - ManagedOrganizationalUnit - Label: default: "Settings" Parameters: - ShouldWaitForAccountSubscriptionCreateComplete - ShouldBootstrapAccount - ShouldRunSingleAccountPipeline - ShouldNotifiyOnCompletion - AccountVendingAccountCreationCustomResourceBackerArn Parameters: AccountName: Type: String AccountEmail: Type: String SSOUserFirstName: Type: String SSOUserLastName: Type: String SSOUserEmail: Type: String ManagedOrganizationalUnit: Type: String ShouldWaitForAccountSubscriptionCreateComplete: Type: String Default: 'true' AllowedValues: - 'true' - 'false' ShouldBootstrapAccount: Type: String Default: 'true' AllowedValues: - 'true' - 'false' ShouldRunSingleAccountPipeline: Type: String Default: 'true' AllowedValues: - 'true' - 'false' ShouldNotifiyOnCompletion: Type: String Default: 'true' AllowedValues: - 'true' - 'false' AccountVendingAccountCreationCustomResourceBackerArn: Type: String Resources: Account: Type: Custom::Account Properties: ServiceToken: !Ref AccountVendingAccountCreationCustomResourceBackerArn AccountName: !Ref AccountName AccountEmail: !Ref AccountEmail SSOUserFirstName: !Ref SSOUserFirstName SSOUserLastName: !Ref SSOUserLastName SSOUserEmail: !Ref SSOUserEmail ManagedOrganizationalUnit: !Ref ManagedOrganizationalUnit ShouldWaitForAccountSubscriptionCreateComplete: !Ref ShouldWaitForAccountSubscriptionCreateComplete ShouldBootstrapAccount: !Ref ShouldBootstrapAccount ShouldRunSingleAccountPipeline: !Ref ShouldRunSingleAccountPipeline ShouldNotifiyOnCompletion: !Ref ShouldNotifiyOnCompletion AccountCreationMethod: "AWSControlTower" Outputs: AccountId: Value: !Ref Account ================================================ FILE: foundational/account-vending/portfolios/account-vending-with-aws-control-tower/v1/template.drawio ================================================ ================================================ FILE: foundational/account-vending/portfolios/account-vending-with-aws-organizations/v1/product.template.yaml ================================================ # Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: "2010-09-09" Description: | {"framework": "servicecatalog-products", "role": "product", "product-set": "account-vending", "product": "account-vending-with-aws-organizations", "version": "v1"} Metadata: AWS::CloudFormation::Interface: ParameterGroups: - Label: default: "Account Details" Parameters: - Email - AccountName - RoleName - IamUserAccessToBilling - TargetOrganizationalUnitId - Label: default: "Settings" Parameters: - ShouldWaitForAccountSubscriptionCreateComplete - ShouldBootstrapAccount - ShouldRunSingleAccountPipeline - ShouldNotifiyOnCompletion - AccountCreationCustomResourceBackerArn Parameters: Email: Type: String AccountName: Type: String RoleName: Type: String IamUserAccessToBilling: Type: String AllowedValues: - 'ALLOW' - 'DENY' TargetOrganizationalUnitId: Type: String ShouldWaitForAccountSubscriptionCreateComplete: Type: String Default: 'true' AllowedValues: - 'true' - 'false' ShouldBootstrapAccount: Type: String Default: 'true' AllowedValues: - 'true' - 'false' ShouldRunSingleAccountPipeline: Type: String Default: 'true' AllowedValues: - 'true' - 'false' ShouldNotifiyOnCompletion: Type: String Default: 'true' AllowedValues: - 'true' - 'false' AccountCreationCustomResourceBackerArn: Type: String Resources: Account: Type: Custom::Account Properties: ServiceToken: !Ref AccountCreationCustomResourceBackerArn Email: !Ref Email AccountName: !Ref AccountName RoleName: !Ref RoleName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOrganizationalUnitId: !Ref TargetOrganizationalUnitId ShouldWaitForAccountSubscriptionCreateComplete: !Ref ShouldWaitForAccountSubscriptionCreateComplete ShouldBootstrapAccount: !Ref ShouldBootstrapAccount ShouldRunSingleAccountPipeline: !Ref ShouldRunSingleAccountPipeline ShouldNotifiyOnCompletion: !Ref ShouldNotifiyOnCompletion AccountCreationMethod: "AWSOrganizations" Outputs: AccountId: Value: !Ref Account ================================================ FILE: foundational/account-vending/portfolios/account-vending-with-aws-organizations/v1/template.drawio ================================================ ================================================ FILE: foundational/account-vending/portfolios/account-vending.yaml ================================================ # Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: - DisplayName: account-vending Description: account creation products ProviderName: central-it-team Products: - Name: account-vending-account-with-aws-control-tower Owner: central-it@customer.com Description: Create an account using AWS Control Tower Distributor: central-it-team SupportDescription: Contact us on Chime for help SupportEmail: central-it-team@example.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/account-iam Tags: - Key: product-set Value: account-vending Versions: - Name: v1 Description: Create an account using AWS Control Tower Active: True Source: Provider: CodeCommit Path: portfolios/account-vending-with-aws-control-tower/v1 Configuration: RepositoryName: account-vending BranchName: main Portfolios: - account-vending - Name: account-vending-account-with-aws-organizations Owner: central-it@customer.com Description: Create an account using AWS Organizations Distributor: central-it-team SupportDescription: Contact us on Chime for help SupportEmail: central-it-team@example.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/account-iam Options: ShouldCFNNag: True Tags: - Key: product-set Value: account-vending Versions: - Name: v1 Description: Create an account using AWS Organizations Active: True Source: Provider: CodeCommit Path: portfolios/account-vending-with-aws-organizations/v1 Configuration: RepositoryName: account-vending BranchName: main Portfolios: - account-vending ================================================ FILE: foundational/account-vending/stacks/account-vending.yaml ================================================ # Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Stacks: - Name: account-vending-prereqs-controltower-account Tags: - Key: category Value: foundational - Key: product-type Value: governance Versions: - Name: v1 Active: True Source: Provider: CodeCommit Path: stacks/prereqs-controltower-account/v1 Configuration: RepositoryName: account-vending BranchName: main - Name: account-vending-prereqs-orgs-account Tags: - Key: category Value: foundational - Key: product-type Value: governance Versions: - Name: v1 Active: True Source: Provider: CodeCommit Path: stacks/prereqs-orgs-account/v1 Configuration: RepositoryName: account-vending BranchName: main - Name: account-vending-prereqs-puppet-account Tags: - Key: category Value: foundational - Key: product-type Value: governance Versions: - Name: v1 Active: True Source: Provider: CodeCommit Path: stacks/prereqs-puppet-account/v1 Configuration: RepositoryName: account-vending BranchName: main Stages: Package: BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.x build: commands: - cd $SOURCE_PATH - pip install -r requirements.txt -t src/AccountCreationCustomResourceBacker {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/stack.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file stack.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' - Name: account-vending-prereqs-puppet-account-optional Tags: - Key: category Value: foundational - Key: product-type Value: governance Versions: - Name: v1 Active: True Source: Provider: CodeCommit Path: stacks/prereqs-puppet-account-optional/v1 Configuration: RepositoryName: account-vending BranchName: main ================================================ FILE: foundational/account-vending/stacks/prereqs-controltower-account/v1/stack.template.yaml ================================================ # Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: "2010-09-09" Description: | {"framework": "servicecatalog-products", "role": "product", "product-set": "account-vending", "product": "prereqs-controltower-account", "version": "v1"} Parameters: SCTAccountId: Type: String AccountVendingControlTowerRoleName: Type: String Default: AccountVendingOrgsRole AccountVendingIAMRolesPath: Type: String Default: /foundational/account-vending/ Resources: AccountVendingControlTowerRole: Type: AWS::IAM::Role Properties: RoleName: !Ref AccountVendingControlTowerRoleName Path: !Ref AccountVendingIAMRolesPath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${SCTAccountId}:root" Action: - "sts:AssumeRole" Policies: - PolicyName: PermissionsNeededForServiceCatalog PolicyDocument: Statement: - Effect: Allow Action: - servicecatalog:SearchProducts - servicecatalog:DescribeProduct Resource: "*" - PolicyName: PermissionsNeededForSpokeExecution PolicyDocument: Statement: - Effect: Allow Action: - sts:AssumeRole Resource: "arn:aws:iam::*:role/AWSControlTowerExecution" - PolicyName: PermissionsNeededForControlTower PolicyDocument: Statement: - Effect: Allow Action: - servicecatalog:DescribeProvisionedProduct - servicecatalog:GetProvisionedProductOutputs - servicecatalog:ProvisionProduct - sso:GetProfile - sso:CreateProfile - sso:UpdateProfile - sso:AssociateProfile - sso:CreateApplicationInstance - sso:GetSSOStatus - sso:GetTrust - sso:CreateTrust - sso:UpdateTrust - sso:GetPeregrineStatus - sso:GetApplicationInstance - sso:ListDirectoryAssociations - sso:ListPermissionSets - sso:GetPermissionSet - sso:ProvisionApplicationInstanceForAWSAccount - sso:ProvisionApplicationProfileForAWSAccountInstance - sso:ProvisionSAMLProvider - sso:ListProfileAssociations - sso-directory:ListMembersInGroup - sso-directory:AddMemberToGroup - sso-directory:SearchGroups - sso-directory:SearchGroupsWithGroupName - sso-directory:SearchUsers - sso-directory:CreateUser - sso-directory:DescribeGroups - sso-directory:DescribeDirectory - sso-directory:GetUserPoolInfo - controltower:CreateManagedAccount - controltower:DescribeManagedAccount - controltower:DeregisterManagedAccount - organizations:describeOrganization - sso:DescribeRegisteredRegions Resource: "*" - Effect: "Allow" Action: s3:GetObject Resource: - !Sub "arn:${AWS::Partition}:s3:::cf-templates-*" - !Sub "arn:${AWS::Partition}:s3:::cf-templates-*/*" Outputs: AccountVendingAccountVendingControlTowerRoleArn: Description: Arn of the AccountVendingControlTowerRole Value: !GetAtt AccountVendingControlTowerRole.Arn ================================================ FILE: foundational/account-vending/stacks/prereqs-controltower-account/v1/template.drawio ================================================ ================================================ FILE: foundational/account-vending/stacks/prereqs-orgs-account/v1/stack.template.yaml ================================================ # Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: "2010-09-09" Description: | {"framework": "servicecatalog-products", "role": "product", "product-set": "account-vending", "product": "prereqs-orgs-account", "version": "v1"} Parameters: SCTAccountId: Type: String AccountVendingOrgsRoleName: Type: String Default: AccountVendingOrgsRole AccountVendingIAMRolesPath: Type: String Default: /foundational/account-vending/ AWSOrganizationsCrossAccountRoleName: Type: String Resources: AccountVendingOrgsRole: Type: AWS::IAM::Role Properties: RoleName: !Ref AccountVendingOrgsRoleName Path: !Ref AccountVendingIAMRolesPath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${SCTAccountId}:root" Action: - "sts:AssumeRole" Policies: - PolicyName: PermissionsNeededForOrgs PolicyDocument: Statement: - Effect: Allow Action: - organizations:CreateAccount - organizations:DescribeCreateAccountStatus - organizations:ListAccounts - organizations:ListAccountsForParent - organizations:MoveAccount - organizations:ListParents Resource: "*" - Effect: Allow Action: - sts:AssumeRole Resource: !Sub "arn:aws:iam::*:role/${AWSOrganizationsCrossAccountRoleName}" Outputs: AccountVendingOrgsRoleArn: Description: Arn of the AccountVendingOrgsRole Value: !GetAtt AccountVendingOrgsRole.Arn ================================================ FILE: foundational/account-vending/stacks/prereqs-orgs-account/v1/template.drawio ================================================ ================================================ FILE: foundational/account-vending/stacks/prereqs-puppet-account/v1/requirements.txt ================================================ crhelper==2.0.10 ================================================ FILE: foundational/account-vending/stacks/prereqs-puppet-account/v1/src/AccountCreationCustomResourceBacker/handler.py ================================================ # Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import logging import json import os from crhelper import CfnResource import boto3 logger = logging.getLogger(__name__) helper = CfnResource(json_logging=False, log_level='DEBUG', boto_level='CRITICAL', sleep_on_delete=120, ssl_verify=None) @helper.create @helper.update def create(event, context): properties = event.get("ResourceProperties") input = dict( AccountCreationMethod=properties.get("AccountCreationMethod"), ShouldWaitForAccountSubscriptionCreateComplete=properties.get("ShouldWaitForAccountSubscriptionCreateComplete") == 'true', ShouldBootstrapAccount=properties.get("ShouldBootstrapAccount") == 'true', ShouldRunSingleAccountPipeline=properties.get("ShouldRunSingleAccountPipeline") == 'true', ShouldNotifiyOnCompletion=properties.get("ShouldNotifiyOnCompletion") == 'true', ) if properties.get("AccountCreationMethod") == "AWSOrganizations": input.update(dict( Email=properties.get("Email"), AccountName=properties.get("AccountName"), RoleName=properties.get("RoleName"), IamUserAccessToBilling=properties.get("IamUserAccessToBilling"), TargetOrganizationalUnitId=properties.get("TargetOrganizationalUnitId"), )) elif properties.get("AccountCreationMethod") == "AWSControlTower": input.update(dict( AccountName=properties.get("AccountName"), AccountEmail=properties.get("AccountEmail"), SSOUserFirstName=properties.get("SSOUserFirstName"), SSOUserLastName=properties.get("SSOUserLastName"), SSOUserEmail=properties.get("SSOUserEmail"), ManagedOrganizationalUnit=properties.get("ManagedOrganizationalUnit"), )) state_machine_arn = os.environ.get("STATE_MACHINE_ARN") client = boto3.client('stepfunctions') response = client.start_execution( stateMachineArn=state_machine_arn, name=event.get("RequestId"), input=json.dumps(input), ) execution_arn = response.get("executionArn") helper.Data['execution_arn'] = execution_arn return execution_arn @helper.poll_create @helper.poll_update def poll_create(event, context): execution_arn = helper.Data['execution_arn'] client = boto3.client('stepfunctions') response = client.describe_execution(executionArn=execution_arn) if response.get("status") == "RUNNING": return None elif response.get("status") in ['FAILED', 'TIMED_OUT', 'ABORTED']: raise ValueError(f'Execution {response.get("name")} has finished with status: {response.get("status")}') elif response.get("status") == "SUCCEEDED": execution_output = json.loads(response.get("output")) created_account_id = execution_output.get("CheckAccountOutput").get("account_id") return created_account_id else: raise ValueError(f'Execution {response.get("name")} has finished with unknown status: {response.get("status")}') def handle(event, context): helper(event, context) ================================================ FILE: foundational/account-vending/stacks/prereqs-puppet-account/v1/stack.template.yaml ================================================ # Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Transform: AWS::Serverless-2016-10-31 AWSTemplateFormatVersion: "2010-09-09" Description: | {"framework": "servicecatalog-products", "role": "product", "product-set": "account-vending", "product": "prereqs-puppet-account", "version": "v1"} Metadata: AWS::CloudFormation::Interface: ParameterGroups: - Label: default: "Shared Settings" Parameters: - AccountVendingStateMachineName - AccountVendingStateMachineRoleName - AccountVendingIAMRolesPath - AccountVendingInputValidatorFunctionName - AccountVendingInputValidatorRoleName - AccountVendingSubscriptionWaiterFunctionName - AccountVendingSubscriptionWaiterRoleName - AccountVendingAccountCreationSNSTopicArn - AccountVendingAccountCreationCustomResourceBackerFunctionName - Label: default: "AWS Organizations Settings" Parameters: - AccountVendingAccountOrganizationsRoleArn - AccountVendingOrganizationsAccountCreatorFunctionName - AccountVendingOrganizationsAccountCreatorRoleName - AccountVendingOrganizationsAccountWaiterFunctionName - AccountVendingOrganizationsAccountWaiterRoleName - Label: default: "AWS Control Tower Settings" Parameters: - AccountVendingControlTowerRoleArn - AccountVendingControlTowerAccountCreatorFunctionName - AccountVendingControlTowerAccountCreatorRoleName - AccountVendingControlTowerAccountWaiterFunctionName - AccountVendingControlTowerAccountWaiterRoleName Parameters: AccountVendingIAMRolesPath: Type: String Default: /foundational/account-vending/ AccountVendingAccountOrganizationsRoleArn: Type: String Description: Arn of an IAM Role that can create accounts using the AWS Orgs API Default: arn:aws:iam::156551640785:role/servicecatalog-puppet/PuppetRole AccountVendingControlTowerRoleArn: Type: String Description: Arn of an IAM Role that can create accounts using AWS Control Tower Default: arn:aws:iam::182157867954:role/Admin AccountVendingAccountCreationCustomResourceBackerFunctionName: Type: String Default: AccountCreationCustomResourceBacker AccountCreationCustomResourceBackerRoleName: Type: String Default: AccountCreationCustomResourceBackerRole AccountVendingAccountCreationSNSTopicArn: Type: String Description: Arn of the SNS Topic account creations are published to Default: arn:aws:sns:eu-west-1:000000000000:dev-null AccountVendingStateMachineName: Type: String Default: account-vending-state-machine AccountVendingStateMachineRoleName: Type: String Description: Name of the IAM Role used by the State machine Default: StateMachineRole AccountVendingInputValidatorFunctionName: Type: String Default: InputValidator AccountVendingInputValidatorRoleName: Type: String Default: InputValidatorRole AccountVendingOrganizationsAccountCreatorFunctionName: Type: String Default: OrganizationsAccountCreator AccountVendingOrganizationsAccountCreatorRoleName: Type: String Default: OrganizationsAccountCreatorRole AccountVendingOrganizationsAccountWaiterFunctionName: Type: String Default: OrganizationsAccountWaiter AccountVendingOrganizationsAccountWaiterRoleName: Type: String Default: OrganizationsAccountWaiterRole AccountVendingControlTowerAccountCreatorFunctionName: Type: String Default: ControlTowerAccountCreator AccountVendingControlTowerAccountCreatorRoleName: Type: String Default: ControlTowerAccountCreatorRole AccountVendingControlTowerAccountWaiterFunctionName: Type: String Default: ControlTowerAccountWaiter AccountVendingControlTowerAccountWaiterRoleName: Type: String Default: ControlTowerAccountWaiterRole AccountVendingSubscriptionWaiterFunctionName: Type: String Default: SubscriptionWaiter AccountVendingSubscriptionWaiterRoleName: Type: String Default: SubscriptionWaiterRole Resources: InputValidatorFunction: Type: AWS::Lambda::Function Properties: FunctionName: !Ref AccountVendingInputValidatorFunctionName Code: ZipFile: | import json def handle(event, context): required_values = ["AccountCreationMethod", "ShouldWaitForAccountSubscriptionCreateComplete", "ShouldBootstrapAccount", "ShouldRunSingleAccountPipeline", "ShouldNotifiyOnCompletion", ] allowed_values = dict( AccountCreationMethod=["AWSOrganizations", "AWSControlTower"], ShouldWaitForAccountSubscriptionCreateComplete=[True, False], ShouldBootstrapAccount=[True, False], ShouldRunSingleAccountPipeline=[True, False], ShouldNotifiyOnCompletion=[True, False], ) if event.get("AccountCreationMethod") == "AWSOrganizations": required_values += ["Email", "AccountName", "RoleName", "IamUserAccessToBilling", "TargetOrganizationalUnitId", ] if event.get("AccountCreationMethod") == "AWSControlTower": required_values += ["AccountName", "AccountEmail", "SSOUserFirstName", "SSOUserLastName", "SSOUserEmail", "ManagedOrganizationalUnit", ] for thing_to_check in required_values: if event.get(thing_to_check) is None: raise Exception(f"{thing_to_check} is a required field") for thing_to_check in ["AccountCreationMethod"]: if event.get(thing_to_check) not in allowed_values.get(thing_to_check): raise Exception(f"{thing_to_check} must be in {allowed_values.get(thing_to_check)}") return True Handler: index.handle Architectures: - arm64 MemorySize: 128 Runtime: python3.9 Role: !GetAtt InputValidatortRole.Arn Timeout: 30 InputValidatortRole: Type: AWS::IAM::Role Properties: RoleName: !Ref AccountVendingInputValidatorRoleName Path: !Ref AccountVendingIAMRolesPath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Principal: Service: lambda.amazonaws.com Action: sts:AssumeRole ManagedPolicyArns: - !Sub "arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" AccountCreatorFunction: Type: AWS::Lambda::Function Properties: FunctionName: !Ref AccountVendingOrganizationsAccountCreatorFunctionName Code: ZipFile: | from boto3.session import Session import os import json def handle(event, context): sts = Session().client('sts') assumable_cross_account_role_arn = os.environ.get("ORGANIZATIONS_ROLE_ARN") assumed_role_object = sts.assume_role( RoleArn=assumable_cross_account_role_arn, RoleSessionName="sts_session", ) credentials = assumed_role_object['Credentials'] kwargs = { "aws_access_key_id": credentials['AccessKeyId'], "aws_secret_access_key": credentials['SecretAccessKey'], "aws_session_token": credentials['SessionToken'], } client = Session().client(service_name="organizations", **kwargs) create_args = dict( Email=event.get("Email"), AccountName=event.get("AccountName"), RoleName=event.get("RoleName"), IamUserAccessToBilling=event.get("IamUserAccessToBilling"), ) create_account_request_id = client.create_account(**create_args)["CreateAccountStatus"]["Id"] return { 'create_account_request_id': create_account_request_id } Handler: index.handle Architectures: - arm64 MemorySize: 128 Runtime: python3.9 Role: !GetAtt AccountCreatorRole.Arn Timeout: 30 Environment: Variables: ORGANIZATIONS_ROLE_ARN: !Ref AccountVendingAccountOrganizationsRoleArn AccountCreatorRole: Type: AWS::IAM::Role Properties: RoleName: !Ref AccountVendingOrganizationsAccountCreatorRoleName Path: !Ref AccountVendingIAMRolesPath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Principal: Service: lambda.amazonaws.com Action: sts:AssumeRole ManagedPolicyArns: - !Sub "arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" Policies: - PolicyName: OrgRoleAssumption PolicyDocument: Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref AccountVendingAccountOrganizationsRoleArn AccountWaiterFunction: Type: AWS::Lambda::Function Properties: FunctionName: !Ref AccountVendingOrganizationsAccountWaiterFunctionName Code: ZipFile: | import json import logging import os from boto3.session import Session logger = logging.getLogger() logger.setLevel(logging.INFO) def handle(event, context): sts = Session().client('sts') assumable_cross_account_role_arn = os.environ.get("ORGANIZATIONS_ROLE_ARN") assumed_role_object = sts.assume_role( RoleArn=assumable_cross_account_role_arn, RoleSessionName="sts_session", ) credentials = assumed_role_object['Credentials'] kwargs = { "aws_access_key_id": credentials['AccessKeyId'], "aws_secret_access_key": credentials['SecretAccessKey'], "aws_session_token": credentials['SessionToken'], } client = Session().client(service_name="organizations", **kwargs) create_account_request_id = event.get("CreateAccountUsingAWSOrganizationsOutput").get("create_account_request_id") create_account_status = client.describe_create_account_status(CreateAccountRequestId=create_account_request_id).get("CreateAccountStatus") del create_account_status["RequestedTimestamp"] del create_account_status["CompletedTimestamp"] if create_account_status.get("State") == "FAILED" and create_account_status.get("FailureReason") == "EMAIL_ALREADY_EXISTS": if create_account_status.get("AccountName") == event.get("AccountName"): logger.info(f"account {event.get('AccountName')} was already created using the email {event.get('Email')}") create_account_status["State"] = "SUCCEEDED" del create_account_status["FailureReason"] if create_account_status.get("AccountId") is None: logger.info("Having to get account id") paginator = client.get_paginator('list_accounts') for page in paginator.paginate(): for account in page.get("Accounts", []): if account.get("Name") == event.get('AccountName'): create_account_status["AccountId"] = account.get("Id") account_id = create_account_status['AccountId'] parents = client.list_parents( ChildId=account_id, ).get("Parents", []) if len(parents) != 1: raise Exception(f"account: {account_id} does not have one parent") if parents[0].get("Id") != event.get("TargetOrganizationalUnitId"): client.move_account( AccountId=account_id, SourceParentId=parents[0].get("Id"), DestinationParentId=event.get("TargetOrganizationalUnitId"), ) create_account_status["assumable_role_in_spoke"] = f"arn:{os.environ.get('AWS_PARTITION')}:iam::{account_id}:role/{event.get('RoleName')}" create_account_status["assumable_role_in_hub"] = os.environ.get("ORGANIZATIONS_ROLE_ARN") return create_account_status Handler: index.handle Architectures: - arm64 MemorySize: 128 Runtime: python3.9 Role: !GetAtt AccountWaiterRole.Arn Timeout: 30 Environment: Variables: ORGANIZATIONS_ROLE_ARN: !Ref AccountVendingAccountOrganizationsRoleArn AWS_PARTITION: !Sub "${AWS::Partition}" AccountWaiterRole: Type: AWS::IAM::Role Properties: RoleName: !Ref AccountVendingOrganizationsAccountWaiterRoleName Path: !Ref AccountVendingIAMRolesPath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Principal: Service: lambda.amazonaws.com Action: sts:AssumeRole ManagedPolicyArns: - !Sub "arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" Policies: - PolicyName: OrgRoleAssumption PolicyDocument: Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref AccountVendingAccountOrganizationsRoleArn ControlTowerAccountCreatorFunction: Type: AWS::Lambda::Function Properties: FunctionName: !Ref AccountVendingControlTowerAccountCreatorFunctionName Code: ZipFile: | from boto3.session import Session import os import json def handle(event, context): sts = Session().client('sts') assumable_cross_account_role_arn = os.environ.get("CONTROL_TOWER_ROLE_ARN") assumed_role_object = sts.assume_role( RoleArn=assumable_cross_account_role_arn, RoleSessionName="sts_session", ) credentials = assumed_role_object['Credentials'] kwargs = { "aws_access_key_id": credentials['AccessKeyId'], "aws_secret_access_key": credentials['SecretAccessKey'], "aws_session_token": credentials['SessionToken'], } client = Session().client(service_name="servicecatalog", **kwargs) try: pp_id = client.describe_provisioned_product(Name=event.get("AccountName")).get("ProvisionedProductDetail", {}).get("Id") if pp_id is not None: return { 'create_account_request_id': pp_id } except client.exceptions.ResourceNotFoundException: pass product_id = None product_view_summaries = client.search_products(Filters=dict(FullTextSearch=["AWS Control Tower Account Factory"])).get("ProductViewSummaries", []) for product_view_summary in product_view_summaries: if product_view_summary.get("Name") == "AWS Control Tower Account Factory": product_id = product_view_summary.get("ProductId") break if product_id is None: raise Execption("Could not find AWS Control Tower Account Factory product") provisioning_artifacts = client.describe_product(Id=product_id).get("ProvisioningArtifacts", []) for provisioning_artifact in provisioning_artifacts: if provisioning_artifact.get("Name") == "AWS Control Tower Account Factory": pa_id = provisioning_artifact.get("Id") if pa_id is None: raise Execption("Could not find AWS Control Tower Account Factory provisioning artifact") print(f"Using pa_id: {pa_id} of: {product_id} to provision") create_args = dict( ProductId=product_id, ProvisioningArtifactId=pa_id, ProvisionedProductName=event.get("AccountName"), ProvisioningParameters=[ { 'Key': 'AccountName', 'Value': event.get("AccountName") }, { 'Key': 'AccountEmail', 'Value': event.get("AccountEmail") }, { 'Key': 'SSOUserFirstName', 'Value': event.get("SSOUserFirstName") }, { 'Key': 'SSOUserLastName', 'Value': event.get("SSOUserLastName") }, { 'Key': 'SSOUserEmail', 'Value': event.get("SSOUserEmail") }, { 'Key': 'ManagedOrganizationalUnit', 'Value': event.get("ManagedOrganizationalUnit") }, ] ) create_account_request_id = client.provision_product(**create_args).get("RecordDetail").get("ProvisionedProductId") return { 'create_account_request_id': create_account_request_id } Handler: index.handle Architectures: - arm64 MemorySize: 128 Runtime: python3.9 Role: !GetAtt ControlTowerAccountCreatorRole.Arn Timeout: 30 Environment: Variables: CONTROL_TOWER_ROLE_ARN: !Ref AccountVendingControlTowerRoleArn ControlTowerAccountCreatorRole: Type: AWS::IAM::Role Properties: RoleName: !Ref AccountVendingControlTowerAccountCreatorRoleName Path: !Ref AccountVendingIAMRolesPath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Principal: Service: lambda.amazonaws.com Action: sts:AssumeRole ManagedPolicyArns: - !Sub "arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" Policies: - PolicyName: OrgRoleAssumption PolicyDocument: Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref AccountVendingControlTowerRoleArn ControlTowerAccountWaiterFunction: Type: AWS::Lambda::Function Properties: FunctionName: !Ref AccountVendingControlTowerAccountWaiterFunctionName Code: ZipFile: | import json import logging import os from boto3.session import Session logger = logging.getLogger() logger.setLevel(logging.INFO) def handle(event, context): sts = Session().client('sts') assumable_cross_account_role_arn = os.environ.get("CONTROL_TOWER_ROLE_ARN") assumed_role_object = sts.assume_role( RoleArn=assumable_cross_account_role_arn, RoleSessionName="sts_session", ) credentials = assumed_role_object['Credentials'] kwargs = { "aws_access_key_id": credentials['AccessKeyId'], "aws_secret_access_key": credentials['SecretAccessKey'], "aws_session_token": credentials['SessionToken'], } client = Session().client(service_name="servicecatalog", **kwargs) create_account_request_id = event.get("CreateAccountUsingAWSOrganizationsOutput").get("create_account_request_id") provisioned_product_detail = client.describe_provisioned_product(Id=create_account_request_id).get("ProvisionedProductDetail") account_id = "unknown" if provisioned_product_detail.get("Status") == "AVAILABLE": account_id = client.get_provisioned_product_outputs(ProvisionedProductId=create_account_request_id,OutputKeys=["AccountId"]).get("Outputs")[0].get("OutputValue") state = provisioned_product_detail.get("Status") if state in ["ERROR", "TAINTED"]: raise Exception(f"Control Tower account factory product provision status of: {state}") response = dict( account_id=account_id, state=state, assumable_role_in_spoke=f"arn:{os.environ.get('AWS_PARTITION')}:iam::{account_id}:role/AWSControlTowerExecution", assumable_role_in_hub=os.environ.get("CONTROL_TOWER_ROLE_ARN") ) return response Handler: index.handle Architectures: - arm64 MemorySize: 128 Runtime: python3.9 Role: !GetAtt ControlTowerAccountWaiterRole.Arn Timeout: 30 Environment: Variables: CONTROL_TOWER_ROLE_ARN: !Ref AccountVendingControlTowerRoleArn AWS_PARTITION: !Sub "${AWS::Partition}" ControlTowerAccountWaiterRole: Type: AWS::IAM::Role Properties: RoleName: !Ref AccountVendingControlTowerAccountWaiterRoleName Path: !Ref AccountVendingIAMRolesPath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Principal: Service: lambda.amazonaws.com Action: sts:AssumeRole ManagedPolicyArns: - !Sub "arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" Policies: - PolicyName: OrgRoleAssumption PolicyDocument: Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref AccountVendingControlTowerRoleArn SubscriptionWaiterFunction: Type: AWS::Lambda::Function Properties: FunctionName: !Ref AccountVendingSubscriptionWaiterFunctionName Code: ZipFile: | from boto3.session import Session def handle(event, context): sts = Session().client('sts') assumable_cross_account_role_arn = event.get("CheckAccountOutput").get("assumable_role_in_hub") assumed_role_object = sts.assume_role( RoleArn=assumable_cross_account_role_arn, RoleSessionName="sts_session", ) credentials = assumed_role_object['Credentials'] kwargs = { "aws_access_key_id": credentials['AccessKeyId'], "aws_secret_access_key": credentials['SecretAccessKey'], "aws_session_token": credentials['SessionToken'], } assumable_cross_account_client = Session().client(service_name="sts", **kwargs) spoke_role_arn = event.get("CheckAccountOutput").get("assumable_role_in_spoke") assumed_role_object = assumable_cross_account_client.assume_role( RoleArn=spoke_role_arn, RoleSessionName="spoke_role_sts", ) credentials = assumed_role_object['Credentials'] kwargs = { "aws_access_key_id": credentials['AccessKeyId'], "aws_secret_access_key": credentials['SecretAccessKey'], "aws_session_token": credentials['SessionToken'], } codebuild = Session().client(service_name="codebuild", **kwargs) codebuild.list_projects() cloudformation = Session().client(service_name="cloudformation", **kwargs) cloudformation.list_stacks() return { "state": "READY", } Handler: index.handle Architectures: - arm64 MemorySize: 128 Runtime: python3.9 Role: !GetAtt SubscriptionWaiterRole.Arn Timeout: 90 SubscriptionWaiterRole: Type: AWS::IAM::Role Properties: RoleName: !Ref AccountVendingSubscriptionWaiterRoleName Path: !Ref AccountVendingIAMRolesPath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Principal: Service: lambda.amazonaws.com Action: sts:AssumeRole ManagedPolicyArns: - !Sub "arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" Policies: - PolicyName: OrgRoleAssumption PolicyDocument: Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref AccountVendingAccountOrganizationsRoleArn - PolicyName: ControlTowerRoleAssumption PolicyDocument: Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref AccountVendingControlTowerRoleArn StateMachine: Type: AWS::StepFunctions::StateMachine Properties: StateMachineName: !Ref AccountVendingStateMachineName RoleArn: !GetAtt StateMachineRole.Arn DefinitionSubstitutions: AWS_PARTITION: !Sub "${AWS::Partition}" INPUT_VALIDATOR_ARN: !GetAtt InputValidatorFunction.Arn ACCOUNT_CREATOR_ARN: !GetAtt AccountCreatorFunction.Arn ACCOUNT_WAITER_ARN: !GetAtt AccountWaiterFunction.Arn CONTROL_TOWER_ACCOUNT_CREATOR_ARN: !GetAtt ControlTowerAccountCreatorFunction.Arn CONTROL_TOWER_ACCOUNT_WAITER_ARN: !GetAtt ControlTowerAccountWaiterFunction.Arn SUBSCRIPTION_WAITER_ARN: !GetAtt SubscriptionWaiterFunction.Arn ACCOUNT_CREATION_SNS_TOPIC_ARN: !Ref AccountVendingAccountCreationSNSTopicArn DefinitionString: | { "Comment": "Account vending solution supporting both AWS Organizations and AWS Control Tower", "StartAt": "ValidateInput", "States": { "ValidateInput": { "Type": "Task", "Resource": "arn:${AWS_PARTITION}:states:::lambda:invoke", "Parameters": { "Payload.$": "$", "FunctionName": "${INPUT_VALIDATOR_ARN}" }, "Retry": [ { "ErrorEquals": [ "Lambda.ServiceException", "Lambda.AWSLambdaException", "Lambda.SdkClientException" ], "IntervalSeconds": 2, "MaxAttempts": 6, "BackoffRate": 2 } ], "Next": "IsUsingAWSControlTower", "ResultPath": null }, "IsUsingAWSControlTower": { "Type": "Choice", "Choices": [ { "Variable": "$.AccountCreationMethod", "StringMatches": "AWSControlTower", "Next": "CreateAccountUsingAWSControlTower" } ], "Default": "CreateAccountUsingAWSOrganizations" }, "CreateAccountUsingAWSControlTower": { "Type": "Task", "Resource": "arn:${AWS_PARTITION}:states:::lambda:invoke", "Parameters": { "Payload.$": "$", "FunctionName": "${CONTROL_TOWER_ACCOUNT_CREATOR_ARN}" }, "Retry": [ { "ErrorEquals": [ "Lambda.ServiceException", "Lambda.AWSLambdaException", "Lambda.SdkClientException" ], "IntervalSeconds": 2, "MaxAttempts": 6, "BackoffRate": 2 } ], "Next": "WaitForAccountCreateCompleteUsingAWSControlTower", "ResultSelector": { "create_account_request_id.$": "$.Payload.create_account_request_id" }, "ResultPath": "$.CreateAccountUsingAWSOrganizationsOutput" }, "WaitForAccountCreateCompleteUsingAWSControlTower": { "Type": "Wait", "Seconds": 30, "Next": "CheckAccountCreateCompleteUsingAWSControlTower" }, "CheckAccountCreateCompleteUsingAWSControlTower": { "Type": "Task", "Resource": "arn:${AWS_PARTITION}:states:::lambda:invoke", "Parameters": { "Payload.$": "$", "FunctionName": "${CONTROL_TOWER_ACCOUNT_WAITER_ARN}" }, "Retry": [ { "ErrorEquals": [ "Lambda.ServiceException", "Lambda.AWSLambdaException", "Lambda.SdkClientException" ], "IntervalSeconds": 2, "MaxAttempts": 6, "BackoffRate": 2 } ], "Next": "IsAccountCreateCompleteUsingAWSControlTower", "ResultSelector": { "account_id.$": "$.Payload.account_id", "state.$": "$.Payload.state", "assumable_role_in_spoke.$": "$.Payload.assumable_role_in_spoke", "assumable_role_in_hub.$": "$.Payload.assumable_role_in_hub" }, "ResultPath": "$.CheckAccountOutput" }, "IsAccountCreateCompleteUsingAWSControlTower": { "Type": "Choice", "Choices": [ { "Variable": "$.CheckAccountOutput.state", "StringEquals": "AVAILABLE", "Next": "ShouldWaitForAccountSubscriptionCreateComplete" } ], "Default": "WaitForAccountCreateCompleteUsingAWSControlTower" }, "CreateAccountUsingAWSOrganizations": { "Type": "Task", "Resource": "arn:${AWS_PARTITION}:states:::lambda:invoke", "Parameters": { "Payload.$": "$", "FunctionName": "${ACCOUNT_CREATOR_ARN}" }, "Retry": [ { "ErrorEquals": [ "Lambda.ServiceException", "Lambda.AWSLambdaException", "Lambda.SdkClientException" ], "IntervalSeconds": 2, "MaxAttempts": 6, "BackoffRate": 2 } ], "Next": "WaitForAccountCreateCompleteUsingAWSOrganizations", "ResultPath": "$.CreateAccountUsingAWSOrganizationsOutput", "ResultSelector": { "create_account_request_id.$": "$.Payload.create_account_request_id" } }, "WaitForAccountCreateCompleteUsingAWSOrganizations": { "Type": "Wait", "Seconds": 5, "Next": "CheckAccountCreateCompleteUsingAWSOrganizations" }, "CheckAccountCreateCompleteUsingAWSOrganizations": { "Type": "Task", "Resource": "arn:${AWS_PARTITION}:states:::lambda:invoke", "Parameters": { "Payload.$": "$", "FunctionName": "${ACCOUNT_WAITER_ARN}" }, "Retry": [ { "ErrorEquals": [ "Lambda.ServiceException", "Lambda.AWSLambdaException", "Lambda.SdkClientException" ], "IntervalSeconds": 2, "MaxAttempts": 6, "BackoffRate": 2 } ], "Next": "IsAccountCreateCompleteUsingAWSOrganizationsComplete", "ResultPath": "$.CheckAccountOutput", "ResultSelector": { "account_id.$": "$.Payload.AccountId", "state.$": "$.Payload.State", "assumable_role_in_spoke.$": "$.Payload.assumable_role_in_spoke", "assumable_role_in_hub.$": "$.Payload.assumable_role_in_hub" } }, "IsAccountCreateCompleteUsingAWSOrganizationsComplete": { "Type": "Choice", "Choices": [ { "Variable": "$.CheckAccountOutput.state", "StringEquals": "SUCCEEDED", "Next": "ShouldWaitForAccountSubscriptionCreateComplete" } ], "Default": "WaitForAccountCreateCompleteUsingAWSOrganizations" }, "ShouldWaitForAccountSubscriptionCreateComplete": { "Type": "Choice", "Choices": [ { "Variable": "$.ShouldWaitForAccountSubscriptionCreateComplete", "BooleanEquals": true, "Next": "WaitForAccountSubscriptionCreateComplete" } ], "Default": "ShouldBootstrap" }, "WaitForAccountSubscriptionCreateComplete": { "Type": "Wait", "Seconds": 5, "Next": "CheckWaitForAccountSubscription" }, "CheckWaitForAccountSubscription": { "Type": "Task", "Resource": "arn:${AWS_PARTITION}:states:::lambda:invoke", "Parameters": { "Payload.$": "$", "FunctionName": "${SUBSCRIPTION_WAITER_ARN}" }, "Retry": [ { "ErrorEquals": [ "Lambda.ServiceException", "Lambda.AWSLambdaException", "Lambda.SdkClientException" ], "IntervalSeconds": 2, "MaxAttempts": 6, "BackoffRate": 2, "Comment": "L" }, { "ErrorEquals": [ "States.TaskFailed" ], "BackoffRate": 2, "IntervalSeconds": 4, "MaxAttempts": 15, "Comment": "InvalidInputException" } ], "Next": "IsWaitForAccountSubscriptionComplete", "ResultPath": "$.CheckWaitForAccountSubscriptionOutput", "ResultSelector": { "state.$": "$.Payload.state" }, "TimeoutSeconds": 90 }, "IsWaitForAccountSubscriptionComplete": { "Type": "Choice", "Choices": [ { "Variable": "$.CheckWaitForAccountSubscriptionOutput.state", "StringEquals": "READY", "Next": "ShouldBootstrap" } ], "Default": "WaitForAccountSubscriptionCreateComplete" }, "ShouldBootstrap": { "Type": "Choice", "Choices": [ { "Variable": "$.ShouldBootstrapAccount", "BooleanEquals": true, "Next": "BootstrapSpoke" } ], "Default": "BootstrapCompleted" }, "BootstrapSpoke": { "Type": "Task", "Resource": "arn:${AWS_PARTITION}:states:::codebuild:startBuild.sync", "Parameters": { "ProjectName": "servicecatalog-puppet-bootstrap-spoke", "EnvironmentVariablesOverride": [ { "Name": "ASSUMABLE_ROLE_IN_ROOT_ACCOUNT", "Value.$": "$.CheckAccountOutput.assumable_role_in_hub" }, { "Name": "ORGANIZATION_ACCOUNT_ACCESS_ROLE_ARN", "Value.$": "$.CheckAccountOutput.assumable_role_in_spoke" }, { "Name": "OPTIONS", "Value": "" } ] }, "Next": "BootstrapCompleted", "ResultSelector": { "status.$": "$.Build.BuildStatus", "id.$": "$.Build.Id" }, "ResultPath": "$.BootstrapSpokeOutput" }, "BootstrapCompleted": { "Type": "Pass", "Next": "ShouldRunPipeline" }, "ShouldRunPipeline": { "Type": "Choice", "Choices": [ { "Variable": "$.ShouldRunSingleAccountPipeline", "BooleanEquals": true, "Next": "SingleAccountRun" } ], "Default": "PipelineCompleted" }, "SingleAccountRun": { "Type": "Task", "Resource": "arn:${AWS_PARTITION}:states:::codebuild:startBuild.sync", "Parameters": { "ProjectName": "servicecatalog-puppet-single-account-run", "EnvironmentVariablesOverride": [ { "Name": "SINGLE_ACCOUNT_ID", "Value.$": "$.CheckAccountOutput.account_id" } ] }, "Next": "PipelineCompleted", "ResultPath": "$.SingleAccountRunOutput", "ResultSelector": { "status.$": "$.Build.BuildStatus", "id.$": "$.Build.Id" } }, "PipelineCompleted": { "Type": "Pass", "Next": "ShouldNotifyOnCompletion" }, "ShouldNotifyOnCompletion": { "Type": "Choice", "Choices": [ { "Variable": "$.ShouldNotifiyOnCompletion", "BooleanEquals": true, "Next": "NotifyOnCompletion" } ], "Default": "Completion" }, "NotifyOnCompletion": { "Type": "Task", "Resource": "arn:${AWS_PARTITION}:states:::sns:publish", "Parameters": { "Message.$": "$", "TopicArn": "${ACCOUNT_CREATION_SNS_TOPIC_ARN}" }, "Next": "Completion", "ResultPath": null }, "Completion": { "Type": "Pass", "End": true, "ResultPath": null } } } StateMachineRole: Type: AWS::IAM::Role Properties: RoleName: !Ref AccountVendingStateMachineRoleName Path: !Ref AccountVendingIAMRolesPath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Principal: Service: - !Sub states.${AWS::Region}.amazonaws.com Action: sts:AssumeRole Policies: - PolicyName: StatesExecutionPolicy PolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Action: - "lambda:InvokeFunction" Resource: - !GetAtt InputValidatorFunction.Arn - !Sub "${InputValidatorFunction.Arn}:*" - !GetAtt AccountCreatorFunction.Arn - !Sub "${AccountCreatorFunction.Arn}:*" - !GetAtt AccountWaiterFunction.Arn - !Sub "${AccountWaiterFunction.Arn}:*" - !GetAtt ControlTowerAccountCreatorFunction.Arn - !Sub "${ControlTowerAccountCreatorFunction.Arn}:*" - !GetAtt ControlTowerAccountWaiterFunction.Arn - !Sub "${ControlTowerAccountWaiterFunction.Arn}:*" - !GetAtt SubscriptionWaiterFunction.Arn - !Sub "${SubscriptionWaiterFunction.Arn}:*" - Effect: Allow Action: - codebuild:StartBuild - codebuild:StopBuild - codebuild:BatchGetBuilds Resource: - !Sub "arn:${AWS::Partition}:codebuild:${AWS::Region}:${AWS::AccountId}:project/servicecatalog-puppet-bootstrap-spoke" - !Sub "arn:${AWS::Partition}:codebuild:${AWS::Region}:${AWS::AccountId}:project/servicecatalog-puppet-single-account-run" - Effect: Allow Action: - sns:Publish Resource: - !Ref AccountVendingAccountCreationSNSTopicArn - PolicyName: ParentStepFunctionExecutionPolicy PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - states:DescribeExecution - states:StopExecution Resource: "*" - Effect: Allow Action: - events:PutTargets - events:PutRule - events:DescribeRule Resource: !Sub arn:${AWS::Partition}:events:${AWS::Region}:${AWS::AccountId}:rule/StepFunctionsGetEventForCodeBuildStartBuildRule AccountCreationCustomResourceBackerRole: Type: AWS::IAM::Role Properties: RoleName: !Ref AccountCreationCustomResourceBackerRoleName Path: !Ref AccountVendingIAMRolesPath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Principal: Service: lambda.amazonaws.com Action: sts:AssumeRole ManagedPolicyArns: - !Sub "arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" Policies: - PolicyName: startmachine PolicyDocument: Statement: - Effect: Allow Action: - states:StartExecution Resource: !GetAtt StateMachine.Arn - Effect: Allow Action: - states:DescribeExecution Resource: !Sub "arn:${AWS::Partition}:states:${AWS::Region}:${AWS::AccountId}:execution:${AccountVendingStateMachineName}:*" - PolicyName: crhelper PolicyDocument: Statement: - Effect: Allow Action: - lambda:AddPermission - lambda:RemovePermission Resource: - !Sub "arn:${AWS::Partition}:lambda:${AWS::Region}:${AWS::AccountId}:function:${AccountVendingAccountCreationCustomResourceBackerFunctionName}" - !Sub "arn:${AWS::Partition}:lambda:${AWS::Region}:${AWS::AccountId}:function:${AccountVendingAccountCreationCustomResourceBackerFunctionName}:*" - Effect: Allow Action: - events:PutRule - events:DeleteRule - events:PutTargets - events:RemoveTargets Resource: "*" AccountCreationCustomResourceBacker: Type: AWS::Serverless::Function Properties: FunctionName: !Ref AccountVendingAccountCreationCustomResourceBackerFunctionName CodeUri: src/AccountCreationCustomResourceBacker Handler: handler.handle Environment: Variables: STATE_MACHINE_ARN: !GetAtt StateMachine.Arn Architectures: - arm64 MemorySize: 128 Runtime: python3.9 Role: !GetAtt AccountCreationCustomResourceBackerRole.Arn Timeout: 30 Outputs: AccountVendingAccountCreationCustomResourceBackerArn: Value: !GetAtt AccountCreationCustomResourceBacker.Arn ================================================ FILE: foundational/account-vending/stacks/prereqs-puppet-account/v1/template.drawio ================================================ ================================================ FILE: foundational/account-vending/stacks/prereqs-puppet-account-optional/v1/stack.template.yaml ================================================ # Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: "2010-09-09" Description: | {"framework": "servicecatalog-products", "role": "product", "product-set": "account-vending", "product": "prereqs-puppet-account-optional", "version": "v1"} Parameters: AccountVendingAccountNotificationCreatedTopicName: Type: String Default: AccountVendingAccountNotificationCreatedTopic Resources: AccountNotificationCreatedTopicArn: Type: AWS::SNS::Topic Properties: TopicName: !Ref AccountVendingAccountNotificationCreatedTopicName Outputs: AccountVendingAccountNotificationCreatedTopicArn: Description: The Arn of the topic created Value: !Ref AccountNotificationCreatedTopicArn ================================================ FILE: foundational/account-vending/stacks/prereqs-puppet-account-optional/v1/template.drawio ================================================ ================================================ FILE: foundational/amazon-guardduty-multi-account/README.md ================================================ ================================================ FILE: foundational/amazon-guardduty-multi-account/example-manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 parameters: SCTAccountId: default: &SCTAccountId "${AWS::PuppetAccountId}" SecurityToolingAccountId: default: &SecurityToolingAccountId "338024302548" GuardDutyMultiAccountFunctionName: default: &GuardDutyMultiAccountFunctionName GuardDutyMultiAccountFunction stacks: amazon-guardduty-multi-account-prereqs-orgs-account: name: amazon-guardduty-multi-account-prereqs-orgs-account version: v1 execution: hub capabilities: - CAPABILITY_NAMED_IAM deploy_to: tags: - tag: 'role:org_management' regions: default_region outputs: ssm: - param_name: "/foundational/GuardDutyMultiAccount/GuardDutyMultiAccountDelegateAdminRoleArn" stack_output: GuardDutyMultiAccountDelegateAdminRoleArn amazon-guardduty-multi-account-prereqs-securitytooling-account: name: amazon-guardduty-multi-account-prereqs-securitytooling-account version: v1 execution: hub capabilities: - CAPABILITY_NAMED_IAM deploy_to: tags: - tag: 'role:securitytooling' regions: default_region outputs: ssm: - param_name: "/foundational/GuardDutyMultiAccount/GuardDutyMultiAccountGuardDutyRoleArn" stack_output: GuardDutyMultiAccountGuardDutyRoleArn amazon-guardduty-multi-account-enabler-and-creator: name: amazon-guardduty-multi-account-enabler-and-creator version: v1 execution: hub capabilities: - CAPABILITY_NAMED_IAM parameters: GuardDutyMultiAccountDelegateAdminRoleArn: ssm: name: "/foundational/GuardDutyMultiAccount/GuardDutyMultiAccountDelegateAdminRoleArn" GuardDutyMultiAccountGuardDutyRoleArn: ssm: name: "/foundational/GuardDutyMultiAccount/GuardDutyMultiAccountGuardDutyRoleArn" depends_on: - name: amazon-guardduty-multi-account-prereqs-orgs-account affinity: stack type: stack deploy_to: tags: - tag: 'role:sct' regions: default_region lambda-invocations: amazon-guardduty-multi-account: function_name: *GuardDutyMultiAccountFunctionName qualifier: $LATEST invocation_type: RequestResponse parameters: accounts_to_ensure: default: ${AWS::ManifestAccountsSpokes} depends_on: - name: amazon-guardduty-multi-account-enabler-and-creator affinity: stack type: stack invoke_for: tags: - regions: "default_region" tag: "role:securitytooling" ================================================ FILE: foundational/amazon-guardduty-multi-account/stacks/amazon-guardduty-multi-account.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Stacks: - Name: amazon-guardduty-multi-account-enabler-and-creator Tags: - Key: category Value: foundational - Key: product-type Value: governance Versions: - Name: v1 Active: True Source: Provider: CodeCommit Path: stacks/enabler-and-creator/v1 Configuration: RepositoryName: amazon-guardduty-multi-account BranchName: main - Name: amazon-guardduty-multi-account-prereqs-orgs-account Tags: - Key: category Value: foundational - Key: product-type Value: governance Versions: - Name: v1 Active: True Source: Provider: CodeCommit Path: stacks/prereqs-orgs-account/v1 Configuration: RepositoryName: amazon-guardduty-multi-account BranchName: main - Name: amazon-guardduty-multi-account-prereqs-securitytooling-account Tags: - Key: category Value: foundational - Key: product-type Value: governance Versions: - Name: v1 Active: True Source: Provider: CodeCommit Path: stacks/prereqs-securitytooling-account/v1 Configuration: RepositoryName: amazon-guardduty-multi-account BranchName: main ================================================ FILE: foundational/amazon-guardduty-multi-account/stacks/enabler-and-creator/enabler-and-creator.drawio ================================================ ================================================ FILE: foundational/amazon-guardduty-multi-account/stacks/enabler-and-creator/v1/stack.template.yaml ================================================ Parameters: GuardDutyMultiAccountDelegateAdminRoleArn: Type: String GuardDutyMultiAccountGuardDutyRoleArn: Type: String GuardDutyMultiAccountExecutionRoleName: Type: String Default: "GuardDutyMultiAccountExecutionRole" GuardDutyMultiAccountRolePath: Type: String Default: "/foundational/GuardDutyMultiAccount/" GuardDutyMultiAccountFunctionName: Type: String Default: "GuardDutyMultiAccountFunction" SecurityToolingAccountId: Type: String Resources: Function: Type: AWS::Lambda::Function Properties: FunctionName: !Ref GuardDutyMultiAccountFunctionName Code: ZipFile: | import logging import boto3 import os import json boto_level = os.environ.get("BOTO_LOG_LEVEL", logging.CRITICAL) logging.getLogger("boto").setLevel(boto_level) logging.getLogger("boto3").setLevel(boto_level) logging.getLogger("botocore").setLevel(boto_level) logging.getLogger("urllib3").setLevel(boto_level) log_level = os.environ.get("LOG_LEVEL", logging.WARNING) logger = logging.getLogger(__name__) logging.basicConfig( format="%(levelname)s %(threadName)s %(message)s", level=logging.INFO ) logger.setLevel(log_level) def get_detector_id(client): paginator = client.get_paginator('list_detectors') for page in paginator.paginate(): for detector_id in page.get("DetectorIds", []): logger.debug(f"Looking at {detector_id}") detector = client.get_detector( DetectorId=detector_id ) logger.debug(f"Checking detector: {detector.get('Status')}") if detector.get("Status") == "ENABLED": return detector_id logger.info("Did not find an enabled detector") return None def create_detector(client): response = client.create_detector( Enable=True, ClientToken='foundational-aws-guardduty-multi-account', FindingPublishingFrequency='FIFTEEN_MINUTES', DataSources={ 'S3Logs': { 'Enable': True } }, ) logger.info("created a detector") return response.get("DetectorId") def update_organization_configuration(client, detector_id): if client.describe_organization_configuration(DetectorId=detector_id).get("AutoEnable", False) is not True: logger.info("AutoEnabled was not enabled") client.update_organization_configuration( DetectorId=detector_id, AutoEnable=True, DataSources={ 'S3Logs': { 'AutoEnable': True } } ) logger.info("AutoEnabled set to true") def enable_organization_admin_account(client, admin_account_id): client.enable_organization_admin_account( AdminAccountId=admin_account_id ) def is_an_organization_admin_accounts(client, account_id): paginator = client.get_paginator('list_organization_admin_accounts') for page in paginator.paginate(): for admin_accounts in page.get("AdminAccounts", []): if admin_accounts.get("AdminAccountId") == account_id: return admin_accounts.get("AdminStatus") == "ENABLED" return False def make_an_organization_admin_accounts(client, account_id): client.enable_organization_admin_account( AdminAccountId=account_id ) logger.info(f"made {account_id} an org admin account") def get_org_client(): guard_duty_multi_account_delegate_admin_role_arn = os.environ.get( "GUARD_DUTY_MULTI_ACCOUNT_DELEGATE_ADMIN_ROLE_ARN") sts = boto3.client('sts') assumed_role_object = sts.assume_role( RoleArn=guard_duty_multi_account_delegate_admin_role_arn, RoleSessionName='guard_duty_multi_account_delegate_admin_role_arn', ) credentials = assumed_role_object['Credentials'] kwargs = { "aws_access_key_id": credentials['AccessKeyId'], "aws_secret_access_key": credentials['SecretAccessKey'], "aws_session_token": credentials['SessionToken'], } return boto3.client('guardduty', **kwargs) def create_client(region): guard_duty_multi_account_guard_duty_role_arn = os.environ.get( "GUARD_DUTY_MULTI_ACCOUNT_GUARD_DUTY_ROLE_ARN") sts = boto3.client('sts') assumed_role_object = sts.assume_role( RoleArn=guard_duty_multi_account_guard_duty_role_arn, RoleSessionName='guard_duty_multi_account_guard_duty_role_arn', ) credentials = assumed_role_object['Credentials'] kwargs = { "aws_access_key_id": credentials['AccessKeyId'], "aws_secret_access_key": credentials['SecretAccessKey'], "aws_session_token": credentials['SessionToken'], } return boto3.client('guardduty', region_name=region, **kwargs) def ensure_all_are_members(client, detector_id, accounts_to_ensure): accounts_to_add = [{ 'AccountId': account_to_ensure.get("account_id"), 'Email': account_to_ensure.get("email") } for account_to_ensure in accounts_to_ensure] client.create_members( DetectorId=detector_id, AccountDetails=accounts_to_add ) logger.info(f"created members: {accounts_to_add}") def handle(event, context): logger.info("starting") logger.debug(json.dumps(event, default=str)) parameters = event.get("parameters") security_tooling_account_id = parameters.get("SecurityToolingAccountId") accounts_to_ensure = json.loads(parameters.get("SCTManifestSpokes")) regions_to_ensure = json.loads(parameters.get("SCTConfigRegions")) org_client = get_org_client() if not is_an_organization_admin_accounts(org_client, security_tooling_account_id): logger.info(f"{security_tooling_account_id} is not an org admin account") make_an_organization_admin_accounts(org_client, security_tooling_account_id) logger.info(f"Finished with org setup/config") paginator = org_client.get_paginator('list_detectors') detectors = [] for page in paginator.paginate(): detectors += page.get("DetectorIds", []) if len(detectors) != 1: raise Exception(f"There was not 1 detector in the home region of the gd org account. Detectors: {detectors}") detector_id = detectors[0] update_organization_configuration(org_client, detector_id) for region in regions_to_ensure: guardduty = create_client(region) detector_id = get_detector_id(guardduty) if detector_id is None: detector_id = create_detector(guardduty) ensure_all_are_members(guardduty, detector_id, accounts_to_ensure) logger.info(f"Finished with region: {region}") logger.info(f"Finished with regional setup/config") logger.info("created") Handler: index.handle MemorySize: 128 Runtime: python3.8 Role: !GetAtt ExecutionRole.Arn Timeout: 30 Environment: Variables: GUARD_DUTY_MULTI_ACCOUNT_DELEGATE_ADMIN_ROLE_ARN: !Ref GuardDutyMultiAccountDelegateAdminRoleArn GUARD_DUTY_MULTI_ACCOUNT_GUARD_DUTY_ROLE_ARN: !Ref GuardDutyMultiAccountGuardDutyRoleArn BOTO_LOG_LEVEL: CRITICAL LOG_LEVEL: INFO ExecutionRole: Type: AWS::IAM::Role Properties: RoleName: !Ref GuardDutyMultiAccountExecutionRoleName Path: !Ref GuardDutyMultiAccountRolePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Principal: Service: lambda.amazonaws.com Action: sts:AssumeRole Policies: - PolicyName: OrgsPerms PolicyDocument: Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref GuardDutyMultiAccountDelegateAdminRoleArn - Effect: Allow Action: - sts:AssumeRole Resource: !Ref GuardDutyMultiAccountGuardDutyRoleArn - PolicyName: Logging PolicyDocument: Statement: - Effect: Allow Action: - logs:CreateLogGroup - logs:CreateLogStream - logs:PutLogEvents Resource: "*" ================================================ FILE: foundational/amazon-guardduty-multi-account/stacks/prereqs-orgs-account/prereqs-orgs-account.drawio ================================================ ================================================ FILE: foundational/amazon-guardduty-multi-account/stacks/prereqs-orgs-account/v1/stack.template.yaml ================================================ Parameters: GuardDutyMultiAccountDelegateAdminRoleName: Type: String Default: "GuardDutyMultiAccountDelegateAdminRole" GuardDutyMultiAccountRolePath: Type: String Default: "/foundational/GuardDutyMultiAccount/" SCTAccountId: Type: String Resources: GuardDutyMultiAccountDelegateAdminRole: Type: AWS::IAM::Role Properties: RoleName: !Ref GuardDutyMultiAccountDelegateAdminRoleName Path: !Ref GuardDutyMultiAccountRolePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${SCTAccountId}:root" Action: - "sts:AssumeRole" Policies: - PolicyName: PermissionsForGuardDutyAdmin PolicyDocument: Statement: - Effect: Allow Action: - "organizations:EnableAWSServiceAccess" - "organizations:RegisterDelegatedAdministrator" - "organizations:ListDelegatedAdministrators" - "organizations:ListAWSServiceAccessForOrganization" - "organizations:DescribeOrganizationalUnit" - "organizations:DescribeAccount" - "organizations:DescribeOrganization" - "guardduty:ListOrganizationAdminAccounts" - "guardduty:EnableOrganizationAdminAccount" - "guardduty:ListDetectors" - "guardduty:DescribeOrganizationConfiguration" Resource: "*" Outputs: GuardDutyMultiAccountDelegateAdminRoleArn: Description: Arn of the GuardDutyMultiAccountDelegateAdminRole Value: !GetAtt GuardDutyMultiAccountDelegateAdminRole.Arn ================================================ FILE: foundational/amazon-guardduty-multi-account/stacks/prereqs-securitytooling-account/prereqs-securitytooling-account.drawio ================================================ ================================================ FILE: foundational/amazon-guardduty-multi-account/stacks/prereqs-securitytooling-account/v1/stack.template.yaml ================================================ Parameters: GuardDutyMultiAccountGuardDutyRoleName: Type: String Default: "GuardDutyMultiAccountGuardDutyRole" GuardDutyMultiAccountRolePath: Type: String Default: "/foundational/GuardDutyMultiAccount/" SCTAccountId: Type: String Resources: GuardDutyMultiAccountGuardDutyRole: Type: AWS::IAM::Role Properties: RoleName: !Ref GuardDutyMultiAccountGuardDutyRoleName Path: !Ref GuardDutyMultiAccountRolePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${SCTAccountId}:root" Action: - "sts:AssumeRole" Policies: - PolicyName: GDPerms PolicyDocument: Statement: - Effect: Allow Action: - guardduty:ListDetectors - guardduty:GetDetector - guardduty:CreateDetector - guardduty:DescribeOrganizationConfiguration - guardduty:UpdateOrganizationConfiguration - guardduty:CreateMembers - iam:CreateServiceLinkedRole Resource: "*" Outputs: GuardDutyMultiAccountGuardDutyRoleArn: Description: Arn of the GuardDutyMultiAccountGuardDutyRole Value: !GetAtt GuardDutyMultiAccountGuardDutyRole.Arn ================================================ FILE: foundational/aws-securityhub-multi-account/README.md ================================================ ## What to deploy Deploy prereqs orgs account to orgs management account deploy prereqs to security tooling account global to home region of security tooling account deploy prereqs to security tooling account regional to enabled regions of security tooling account ## What it does creates deletegated administrator perms for security tooling account creates iam role for use in regional bits regional bits create a detector, invites all members and sets auto enable to on ================================================ FILE: foundational/aws-securityhub-multi-account/stacks/aws-securityhub-multi-account.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Stacks: - Name: aws-securityhub-multi-account-enabler-and-creator Tags: - Key: category Value: foundational - Key: product-type Value: governance Versions: - Name: v1 Active: True Source: Provider: CodeCommit Path: stacks/enabler-and-creator/v1 Configuration: RepositoryName: aws-securityhub-multi-account BranchName: main - Name: aws-securityhub-multi-account-prereqs-orgs-account Tags: - Key: category Value: foundational - Key: product-type Value: governance Versions: - Name: v1 Active: True Source: Provider: CodeCommit Path: stacks/prereqs-orgs-account/v1 Configuration: RepositoryName: aws-securityhub-multi-account BranchName: main - Name: aws-securityhub-multi-account-prereqs-securitytooling-account Tags: - Key: category Value: foundational - Key: product-type Value: governance Versions: - Name: v1 Active: True Source: Provider: CodeCommit Path: stacks/prereqs-securitytooling-account/v1 Configuration: RepositoryName: aws-securityhub-multi-account BranchName: main ================================================ FILE: foundational/aws-securityhub-multi-account/stacks/enabler-and-creator/v1/stack.template.yaml ================================================ Parameters: SecurityHubMultiAccountDelegateAdminRoleArn: Type: String SecurityHubMultiAccountSecurityHubRoleArn: Type: String SecurityHubMultiAccountExecutionRoleName: Type: String Default: "SecurityHubMultiAccountExecutionRole" SecurityHubMultiAccountRolePath: Type: String Default: "/foundational/SecurityHubMultiAccount/" Resources: Function: Type: AWS::Lambda::Function Properties: Code: ZipFile: | import logging import boto3 import os import json boto_level = os.environ.get("BOTO_LOG_LEVEL", logging.CRITICAL) logging.getLogger("boto").setLevel(boto_level) logging.getLogger("boto3").setLevel(boto_level) logging.getLogger("botocore").setLevel(boto_level) logging.getLogger("urllib3").setLevel(boto_level) log_level = os.environ.get("LOG_LEVEL", logging.WARNING) logger = logging.getLogger(__name__) logging.basicConfig( format="%(levelname)s %(threadName)s %(message)s", level=logging.INFO ) logger.setLevel(log_level) def update_organization_configuration(client): describe_organization_configuration_response = client.describe_organization_configuration() if describe_organization_configuration_response.get("MemberAccountLimitReached", False) is True: raise Exception("Member account limit reached") if describe_organization_configuration_response.get("AutoEnable", False) is not True: logger.info("AutoEnabled was not enabled") client.update_organization_configuration( AutoEnable=True, ) logger.info("AutoEnabled set to true") def enable_organization_admin_account(client, admin_account_id): client.enable_organization_admin_account( AdminAccountId=admin_account_id ) def is_an_organization_admin_accounts(client, account_id): paginator = client.get_paginator('list_organization_admin_accounts') for page in paginator.paginate(): for admin_accounts in page.get("AdminAccounts", []): if admin_accounts.get("AdminAccountId") == account_id: return admin_accounts.get("AdminStatus") == "ENABLED" return False def make_an_organization_admin_accounts(client, account_id): client.enable_organization_admin_account( AdminAccountId=account_id ) logger.info(f"made {account_id} an org admin account") def get_org_client(region): security_hub_multi_account_delegate_admin_role_arn = os.environ.get( "SECURITY_HUB_MULTI_ACCOUNT_DELEGATE_ADMIN_ROLE_ARN") sts = boto3.client('sts') assumed_role_object = sts.assume_role( RoleArn=security_hub_multi_account_delegate_admin_role_arn, RoleSessionName='security_hub_multi_account_delegate_admin_role_arn', ) credentials = assumed_role_object['Credentials'] kwargs = { "aws_access_key_id": credentials['AccessKeyId'], "aws_secret_access_key": credentials['SecretAccessKey'], "aws_session_token": credentials['SessionToken'], } return boto3.client('securityhub', region_name=region, **kwargs) def create_client(region): security_hub_multi_account_security_hub_role_arn = os.environ.get( "SECURITY_HUB_MULTI_ACCOUNT_SECURITY_HUB_ROLE_ARN") sts = boto3.client('sts') assumed_role_object = sts.assume_role( RoleArn=security_hub_multi_account_security_hub_role_arn, RoleSessionName='security_hub_multi_account_security_hub_role_arn', ) credentials = assumed_role_object['Credentials'] kwargs = { "aws_access_key_id": credentials['AccessKeyId'], "aws_secret_access_key": credentials['SecretAccessKey'], "aws_session_token": credentials['SessionToken'], } return boto3.client('securityhub', region_name=region, **kwargs) def ensure_all_are_members(client, accounts_to_ensure): create_members_response = client.create_members( AccountDetails=[{ 'AccountId': account_to_ensure.get("account_id"), 'Email': account_to_ensure.get("email") } for account_to_ensure in accounts_to_ensure] ) if len(create_members_response.get("UnprocessedAccounts", [])) > 0: raise Exception(f"There were unprocessed accounts: {create_members_response.get('UnprocessedAccounts')}") logger.info(f"created members") def handle(event, context): logger.info("starting") logger.debug(json.dumps(event, default=str)) parameters = event.get("parameters") security_tooling_account_id = parameters.get("SecurityToolingAccountId") accounts_to_ensure = parameters.get("SCTManifestSpokes") regions_to_ensure = parameters.get("SCTConfigRegions").split(",") for region in regions_to_ensure: org_client = get_org_client(region) if not is_an_organization_admin_accounts(org_client, security_tooling_account_id): logger.info(f"{security_tooling_account_id} is not an org admin account") make_an_organization_admin_accounts(org_client, security_tooling_account_id) securityhub = create_client(region) update_organization_configuration(securityhub) ensure_all_are_members(securityhub, json.loads(accounts_to_ensure)) logger.info("created") Handler: index.handle MemorySize: 128 Runtime: python3.8 Role: !GetAtt ExecutionRole.Arn Timeout: 30 Environment: Variables: SECURITY_HUB_MULTI_ACCOUNT_DELEGATE_ADMIN_ROLE_ARN: !Ref SecurityHubMultiAccountDelegateAdminRoleArn SECURITY_HUB_MULTI_ACCOUNT_SECURITY_HUB_ROLE_ARN: !Ref SecurityHubMultiAccountSecurityHubRoleArn BOTO_LOG_LEVEL: CRITICAL LOG_LEVEL: INFO ExecutionRole: Type: AWS::IAM::Role Properties: RoleName: !Ref SecurityHubMultiAccountExecutionRoleName Path: !Ref SecurityHubMultiAccountRolePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Principal: Service: lambda.amazonaws.com Action: sts:AssumeRole Policies: - PolicyName: OrgsPerms PolicyDocument: Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref SecurityHubMultiAccountDelegateAdminRoleArn - PolicyName: GDPerms PolicyDocument: Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref SecurityHubMultiAccountSecurityHubRoleArn - PolicyName: Logging PolicyDocument: Statement: - Effect: Allow Action: - logs:CreateLogGroup - logs:CreateLogStream - logs:PutLogEvents Resource: "*" ================================================ FILE: foundational/aws-securityhub-multi-account/stacks/prereqs-orgs-account/v1/stack.template.yaml ================================================ Parameters: SecurityHubMultiAccountDelegateAdminRoleName: Type: String Default: "SecurityHubMultiAccountDelegateAdminRole" SecurityHubMultiAccountRolePath: Type: String Default: "/foundational/SecurityHubMultiAccount/" SCTAccountId: Type: String Resources: SecurityHubMultiAccountDelegateAdminRole: Type: AWS::IAM::Role Properties: RoleName: !Ref SecurityHubMultiAccountDelegateAdminRoleName Path: !Ref SecurityHubMultiAccountRolePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${SCTAccountId}:root" Action: - "sts:AssumeRole" Policies: - PolicyName: PermissionsForSecurityHubAdmin PolicyDocument: Statement: - Effect: Allow Action: - "organizations:EnableAWSServiceAccess" - "organizations:RegisterDelegatedAdministrator" - "organizations:ListDelegatedAdministrators" - "organizations:ListAWSServiceAccessForOrganization" - "organizations:DescribeOrganizationalUnit" - "organizations:DescribeAccount" - "organizations:DescribeOrganization" - "securityhub:ListOrganizationAdminAccounts" - "securityhub:EnableOrganizationAdminAccount" Resource: "*" Outputs: SecurityHubMultiAccountDelegateAdminRoleArn: Description: Arn of the SecurityHubMultiAccountDelegateAdminRole Value: !GetAtt SecurityHubMultiAccountDelegateAdminRole.Arn ================================================ FILE: foundational/aws-securityhub-multi-account/stacks/prereqs-securitytooling-account/v1/stack.template.yaml ================================================ Parameters: SecurityHubMultiAccountSecutityHubRoleName: Type: String Default: "SecurityHubMultiAccountSecutityHubRole" SecurityHubMultiAccountRolePath: Type: String Default: "/foundational/SecurityHubMultiAccount/" Resources: SecurityHubMultiAccountSecutityHubRole: Type: AWS::IAM::Role Properties: RoleName: !Ref SecurityHubMultiAccountSecutityHubRoleName Path: !Ref SecurityHubMultiAccountRolePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Principal: Service: lambda.amazonaws.com Action: sts:AssumeRole Policies: - PolicyName: GDPerms PolicyDocument: Statement: - Effect: Allow Action: - securityhub:DescribeOrganizationConfiguration - securityhub:UpdateOrganizationConfiguration Resource: "*" Outputs: SecurityHubMultiAccountSecutityHubRoleArn: Description: Arn of the SecurityHubMultiAccountSecutityHubRole Value: !GetAtt SecurityHubMultiAccountSecutityHubRole.Arn ================================================ FILE: foundational/delete-default-networking/example-manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 stacks: delete-default-networking-function: name: delete-default-networking-function version: v1 parameters: DeleteDefaultNetworkingRoleNameToAssume: default: servicecatalog-puppet/PuppetRole DeleteDefaultVPCLambdaExecutionIAMRoleName: default: DeleteDefaultVPCLambdaExecution DeleteDefaultVPCLambdaExecutionIAMRolePath: default: /foundational/DeleteDefaultVPCLambdaExecution/ DeleteDefaultNetworkingLambdaFunctionName: default: &DeleteDefaultNetworking DeleteDefaultNetworking deploy_to: tags: - regions: default_region tag: role:sct lambda-invocations: delete-default-networking: function_name: *DeleteDefaultNetworking qualifier: $LATEST invocation_type: Event invoke_for: tags: - regions: enabled_regions tag: "role:spoke" ================================================ FILE: foundational/delete-default-networking/stacks/delete-default-networking.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Stacks: - Name: delete-default-networking-function Tags: - Key: category Value: foundational - Key: product-type Value: networking Versions: - Name: v1 Active: True Source: Provider: CodeCommit Path: stacks/function/v1 Configuration: RepositoryName: delete-default-networking BranchName: main ================================================ FILE: foundational/delete-default-networking/stacks/function/v1/README.md ================================================ # product.template # Description Deletes the following default networking components from AWS Accounts: 1) Deletes the internet gateway 2) Deletes the subnets 4) Deletes the network access lists 5) Deletes the security groups 6) Deletes the default VPC {"framework": "servicecatalog-products", "role": "product", "product-set": "delete-default-vpc", "product": "delete-default-vpc", "version": "v1"} ## Parameters The list of parameters for this template: ### RegionsToDeleteFrom Type: String Description: Comma separated list of AWS Regions to delete the default VPC from ## Resources The list of resources this template creates: ### DefaultVpcDeletionRole Type: AWS::IAM::Role ### CustomDefaultVpcDeletionPolicy Type: AWS::IAM::Policy ### DefaultVpcDeletionLambda Type: AWS::Lambda::Function ## Outputs The list of outputs this template exposes: ================================================ FILE: foundational/delete-default-networking/stacks/function/v1/stack.template.yaml ================================================ AWSTemplateFormatVersion: "2010-09-09" Description: | Deletes the following default networking components from AWS Accounts: 1) Deletes the internet gateway 2) Deletes the subnets 4) Deletes the network access lists 5) Deletes the security groups 6) Deletes the default VPC {"framework": "servicecatalog-products", "role": "product", "product-set": "delete-default-vpc", "product": "delete-default-vpc", "version": "v1"} Parameters: DeleteDefaultNetworkingRoleNameToAssume: Description: "Name of the IAM Role that will be assumed in the spoke account to remove networking" Type: String Default: "servicecatalog-puppet/PuppetRole" DeleteDefaultVPCLambdaExecutionIAMRoleName: Description: "Name of the IAM Role that will be created to execute the lambda function" Type: String Default: "DeleteDefaultVPCLambdaExecution" DeleteDefaultVPCLambdaExecutionIAMRolePath: Description: "The path for the IAM Role that will be created to execute the lambda function" Type: String Default: "/foundational/DeleteDefaultVPCLambdaExecution/" DeleteDefaultNetworkingLambdaFunctionName: Description: "The name to give the function that deletes the default networking resources" Type: String Default: "DeleteDefaultNetworking" Resources: DefaultVpcDeletionRole: Type: AWS::IAM::Role Properties: RoleName: !Ref DeleteDefaultVPCLambdaExecutionIAMRoleName Path: !Ref DeleteDefaultVPCLambdaExecutionIAMRolePath AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: sts:AssumeRole Principal: Service: lambda.amazonaws.com Policies: - PolicyName: Organizations PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - "sts:AssumeRole" Resource: !Sub 'arn:${AWS::Partition}:iam::*:role/${DeleteDefaultNetworkingRoleNameToAssume}' - Effect: Allow Action: - "ec2:DescribeInternetGateways" - "ec2:DetachInternetGateway" - "ec2:DeleteInternetGateway" - "ec2:DescribeSubnets" - "ec2:DeleteSubnet" - "ec2:DescribeRouteTables" - "ec2:DeleteRouteTable" - "ec2:DescribeNetworkAcls" - "ec2:DeleteNetworkAcl" - "ec2:DeleteSecurityGroup" - "ec2:DeleteVpc" - "ec2:DescribeRegions" - "ec2:DescribeAccountAttributes" - "ec2:DescribeNetworkInterfaces" - "ec2:DescribeSecurityGroups" - "ec2:DeleteSecurityGroup" - "logs:CreateLogGroup" - "logs:CreateLogStream" - "logs:PutLogEvents" Resource: '*' Function: Type: AWS::Lambda::Function Properties: FunctionName: !Ref DeleteDefaultNetworkingLambdaFunctionName Handler: index.lambda_handler Runtime: python3.7 Timeout: 600 Role: !GetAtt DefaultVpcDeletionRole.Arn Environment: Variables: DeleteDefaultNetworkingRoleNameToAssume: !Ref DeleteDefaultNetworkingRoleNameToAssume Partition: !Sub '${AWS::Partition}' Code: ZipFile: | import boto3, logging, traceback, os from boto3 import Session logger = logging.getLogger() logger.setLevel(logging.INFO) logging.basicConfig( format='%(levelname)s %(threadName)s [%(filename)s:%(lineno)d] %(message)s', datefmt='%Y-%m-%d:%H:%M:%S', level=logging.INFO ) def delete_igw(client, vpc_id): fltr = [{'Name': 'attachment.vpc-id', 'Values': [vpc_id]}] try: igw = client.describe_internet_gateways(Filters=fltr)['InternetGateways'] if igw: igw_id = igw[0]['InternetGatewayId'] client.detach_internet_gateway(InternetGatewayId=igw_id, VpcId=vpc_id) client.delete_internet_gateway(InternetGatewayId=igw_id) return except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) raise def delete_subnets(client): try: subs = client.describe_subnets()['Subnets'] if subs: for sub in subs: sub_id = sub['SubnetId'] client.delete_subnet(SubnetId=sub_id) return except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) raise def delete_rtbs(client): try: rtbs = client.describe_route_tables()['RouteTables'] if rtbs: for rtb in rtbs: main = False for assoc in rtb['Associations']: main = assoc['Main'] if main: continue rtb_id = rtb['RouteTableId'] client.delete_route_table(RouteTableId=rtb_id) return except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) raise def delete_acls(client): try: acls = client.describe_network_acls()['NetworkAcls'] if acls: for acl in acls: default = acl['IsDefault'] if default: continue acl_id = acl['NetworkAclId'] client.delete_network_acl(NetworkAclId=acl_id) return except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) raise def delete_sgps(client): try: sgps = client.describe_security_groups()['SecurityGroups'] if sgps: for sgp in sgps: default = sgp['GroupName'] if default == 'default': continue sg_id = sgp['GroupId'] client.delete_security_group(GroupId=sg_id) return except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) raise def delete_vpc(client, vpc_id, region): try: client.delete_vpc(VpcId=vpc_id) logger.info('VPC {} has been deleted from the {} region.'.format(vpc_id, region)) return except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) raise def lambda_handler(e, c): account_id=e.get("account_id") region=e.get("region") role_arn = f"arn:{os.getenv('Partition')}:iam::{account_id}:role/{os.getenv('DeleteDefaultNetworkingRoleNameToAssume')}" sts = Session().client('sts') assumed_role_object = sts.assume_role( RoleArn=role_arn, RoleSessionName="spoke", ) credentials = assumed_role_object['Credentials'] kwargs = { "service_name": "ec2", "aws_access_key_id": credentials['AccessKeyId'], "aws_secret_access_key": credentials['SecretAccessKey'], "aws_session_token": credentials['SessionToken'], } ec2 = Session().client(**kwargs, region_name=region) try: attribs = ec2.describe_account_attributes(AttributeNames=['default-vpc'])['AccountAttributes'] vpc_id = attribs[0]['AttributeValues'][0]['AttributeValue'] if vpc_id == 'none': logger.info('Default VPC not found in {}'.format(region)) return # Since most resources are attached an ENI, this checks for additional resources f = [{'Name': 'vpc-id', 'Values': [vpc_id]}] eni = ec2.describe_network_interfaces(Filters=f)['NetworkInterfaces'] if eni: logger.error('VPC {} has existing resources in the {} region.'.format(vpc_id, region)) return delete_igw(ec2, vpc_id) delete_subnets(ec2) delete_rtbs(ec2) delete_acls(ec2) delete_sgps(ec2) delete_vpc(ec2, vpc_id, region) except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) ================================================ FILE: operations/codebuild-sns-notifier/README.md ================================================ # CodeBuild SNS Notifier This solution creates an SNS notification for CodeBuild Jobs in the event that a build fails or is stopped. ## Description * Deploys a single product in the tooling account that will trigger Cloudwatch events rule if a commit is made to a designated branch of all repositories in the designated AWS account * Product consists of CloudWatch Event rule that is triggered for a CodeBuild Build job in the event that a build fails or is stopped * SNS Topic and subscripton is created and Notification sent via E-mail when event occurs ================================================ FILE: operations/codebuild-sns-notifier/example-manifest.yaml ================================================ schema: puppet-2019-04-01 stacks: code-commitbackups: name: code-commit-backups version: v1 parameters: pServiceCatalogCodeCommitSnsNotifyEmail: default: 'itops@company.com' deploy_to: tags: - tag: role:sct regions: default_region ================================================ FILE: operations/codebuild-sns-notifier/stacks/codebuild-sns-notifier/v1/stack.template.yaml ================================================ # Copyright 2021 Amazon.com Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Description: | Product that sends an SNS notification when a CodeBuild Build job succeeeds or fails. {"framework": "servicecatalog-products", "role": "product", "product-category": "operations", "product-set": "codebuild-sns-notifier", "product": "codebuild-sns-notifier", "version": "v1"} Parameters: CodeBuildSnsNotifyEmail: Type: String Description: Target E-mail address for SNS Notifications to be sent to Resources: # sns topic for notifications rSnsTopic: Type: AWS::SNS::Topic Properties: DisplayName: codebuild-notify TopicName: codebuild-notify # sns subscription for notifications rSnsSubscription: Type: AWS::SNS::Subscription Properties: Endpoint: Ref: CodeBuildSnsNotifyEmail Protocol: email TopicArn: Ref: rSnsTopic # policy to allow cloudwatch to publish to sns rEventTopicPolicy: Type: 'AWS::SNS::TopicPolicy' Properties: PolicyDocument: Statement: - Effect: Allow Principal: Service: events.amazonaws.com Action: 'sns:Publish' Resource: !Ref rSnsTopic Topics: - !Ref rSnsTopic # SNS notification Cloudwatch rule rCloudwatchNotifyRule: Type: AWS::Events::Rule Properties: Description: Cloudwatch rule that watches for codebuild events Name: codebuild-build-notify EventPattern: source: - aws.codebuild detail-type: - CodeBuild Build State Change detail: build-status: - FAILED - STOPPED Targets: - Arn: !Ref rSnsTopic Id: codebuild-trigger-notify InputTransformer: InputPathsMap: {"build-id":"$.detail.build-id","project-name":"$.detail.project-name","build-status":"$.detail.build-status","account-id":"$.account","region":"$.region","stream-id":"$.detail.additional-information.logs.stream-name","cloudwatchlogs-url":"$.detail.additional-information.logs.deep-link"} #uses jsonpath to pull logstream InputTemplate: | {"Build '' for build project '' has reached the build status of": , "BuildUrl": "https://console.aws.amazon.com/codesuite/codebuild//projects//build/%3A/log?region=", "CloudWatchLogsUrl": , "AccountId": , "Region": } Outputs: oSnsTopic: Description: SNS Topic Arn Value: !Ref rSnsTopic oSnsSubscription: Description: SNS Subscription Arn Value: !Ref rSnsSubscription ================================================ FILE: operations/codebuild-sns-notifier/stacks/codebuild-sns-notifier.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Stacks: - Name: codebuild-sns-notifier Tags: - Key: category Value: operations Versions: - Name: v1 Active: True Source: Provider: CodeCommit Path: stacks/codebuild-sns-notifier/v1 Configuration: RepositoryName: codebuild-sns-notifier BranchName: main ================================================ FILE: operations/codecommit-backups/README.md ================================================ # CodeCommit backups This solution backs up CodeCommit repositories to an S3 bucket in the event of a commit to the main/Main or master/Master branch of a codecommit repo. If setting parameter pScheduleBackups to 'true' will also create a schedule for backups (daily at 12PM by default, via a Cloudwatch Rule with schedule and a Lambda function) ## Description * Deploys a single product in the tooling account that will trigger Cloudwatch events rule if a commit is made to a designated branch of all repositories in the designated AWS account * Triggers a Codebuild project * Clones the repo and exports to an S3 bucket ================================================ FILE: operations/codecommit-backups/example-manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 stacks: codecommit-backups: name: codecommit-backups version: v1 parameters: pServiceCatalogCodeCommitBackupsScheduleBackups: default: 'true' deploy_to: tags: - tag: role:sct regions: default_region ================================================ FILE: operations/codecommit-backups/stacks/codecommit-backups/v1/stack.template.yaml ================================================ # Copyright 2021 Amazon.com Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Product that zips up code commit repo when a cloudwatch commit event occurs the zip is added to an s3 bucket. {"framework": "servicecatalog-products", "role": "product", "product-category": "operations", "product-set": "codecommit-backups", "product": "codecommit-backups", "version": "v1"} Parameters: pServiceCatalogCodeCommitBackupsScheduleBackups: Type: String Description: Option whether to enable scheduled backups for the repo's in the account AllowedValues: - 'Yes' - 'No' pServiceCatalogCodeCommitBackupsCloudwatchEventsRoleName: Type: String Default: scpuppet-codecommit-backup-cloudwatchrole pServiceCatalogCodeCommitBackupsCodebuildRoleName: Type: String Default: scpuppet-codecommit-backup-codebuildrole pServiceCatalogCodeCommitBackupsLambdaRoleName: Type: String Default: scpuppet-codecommit-backup-lambdarole pServiceCatalogCodeCommitBackupRolePath: Type: String Default: /operations/service-catalog-code-commit-backups/ pServiceCatalogCodeCommitBackupdEnvVersion: Type: String Description: Version of Codebuild Environment Version Default: '5.0' pServiceCatalogCodeCommitBackupschedule: Type: String Description: Expression for how frequently the backup is created. See https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html for syntax. Default: 'cron(0 12 * * ? *)' pServiceCatalogCodeCommitBackupsGitExtraArgs: Type: String Description: Extra arguments to pass to git clone operation, for example --depth or --recurse-submodules Default: '' pServiceCatalogCodeCommitBackupGrcVersion: Type: String Description: Version of Git remote codecommit to be installed Default: '1.16' Conditions: ScheduleBackups: !Not [!Equals ['Yes', !Ref pServiceCatalogCodeCommitBackupsScheduleBackups]] Resources: # S3 Bucket to store backup files rS3Bucket: Type: AWS::S3::Bucket DeletionPolicy: Retain Properties: BucketName: !Sub codecommit-backups-${AWS::AccountId}-${AWS::Region} BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: SSEAlgorithm: AES256 VersioningConfiguration: Status: Enabled # LogGroup for storing Codebuild logs rCodeBuildLogs: Type: AWS::Logs::LogGroup Properties: LogGroupName: /aws/codebuild/codecommit-backup-pipeline-logs RetentionInDays: 7 # Service role for Codebuild rCodeBuildRole: Type: AWS::IAM::Role DependsOn: rCodeBuildLogs Properties: RoleName: !Ref pServiceCatalogCodeCommitBackupsCodebuildRoleName Path: !Ref pServiceCatalogCodeCommitBackupRolePath AssumeRolePolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Principal: Service: codebuild.amazonaws.com Action: sts:AssumeRole ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: codecommit-clone PolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Action: - codecommit:GitPull Resource: - !Sub 'arn:aws:codecommit:${AWS::Region}:${AWS::AccountId}:*' - Effect: Allow Action: - s3:PutObject - s3:GetObject - s3:GetObjectVersion - s3:GetBucketAcl - s3:GetBucketLocation Resource: - !Sub 'arn:aws:s3:::codecommit-backups-${AWS::AccountId}-${AWS::Region}/*' - Effect: Allow Action: - logs:CreateLogGroup - logs:CreateLogStream - logs:PutLogEvents Resource: - !GetAtt rCodeBuildLogs.Arn - Effect: Allow Action: - s3:PutObject - s3:GetObject - s3:GetObjectVersion - s3:GetBucketAcl - s3:GetBucketLocation Resource: - !Sub arn:aws:s3:::codepipeline-${AWS::Region}-* - Effect: Allow Action: - codebuild:CreateReportGroup - codebuild:CreateReport - codebuild:UpdateReport - codebuild:BatchPutTestCases - codebuild:BatchPutCodeCoverages Resource: - !Sub arn:aws:codebuild:${AWS::Region}:${AWS::AccountId}:report-group/codecommit-backup* # Codebuild project rCodeBuildProject: Type: AWS::CodeBuild::Project DependsOn: - rCodeBuildRole - rS3Bucket Properties: Name: codecommit-backup-pipeline LogsConfig: CloudWatchLogs: GroupName: !Ref rCodeBuildLogs Status: ENABLED Environment: Type: LINUX_CONTAINER ComputeType: BUILD_GENERAL1_SMALL Image: !Sub aws/codebuild/standard:${pServiceCatalogCodeCommitBackupdEnvVersion} EnvironmentVariables: - Name: S3Bucket Type: PLAINTEXT Value: !Ref rS3Bucket - Name: GIT_EXTRA_ARGS Type: PLAINTEXT Value: !Ref pServiceCatalogCodeCommitBackupsGitExtraArgs - Name: GRC_VERSION Value: !Ref pServiceCatalogCodeCommitBackupGrcVersion ServiceRole: !GetAtt rCodeBuildRole.Arn Source: Type: NO_SOURCE BuildSpec: | version: 0.2 phases: install: commands: - pip install git-remote-codecommit==$GRC_VERSION build: commands: - git clone $GIT_EXTRA_ARGS -b $REFERENCE_NAME codecommit::$REPO_REGION://$REPOSITORY_NAME - dt=$(date '+%d-%m-%Y-%H:%M:%S'); - hash=$(git rev-parse --short HEAD); - zip -r $REPOSITORY_NAME-$REFERENCE_NAME-$dt-$hash-backup.zip ./ artifacts: files: - $REFERENCE_NAME-$dt-$REPOSITORY_NAME-backup.zip Artifacts: Type: S3 Location: !Ref rS3Bucket Name: backups Packaging: NONE EncryptionDisabled: false # Cloudwatch role to put artifact in S3 bucket rCloudWatchRole: Type: AWS::IAM::Role Properties: RoleName: !Ref pServiceCatalogCodeCommitBackupsCloudwatchEventsRoleName Path: !Ref pServiceCatalogCodeCommitBackupRolePath AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: [events.amazonaws.com] Action: ["sts:AssumeRole"] Description: Role for Cloudwatch to publish to codecommit backup bucket Policies: - PolicyName: CwForwardEventPolicy PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - codebuild:StartBuild Resource: - !GetAtt rCodeBuildProject.Arn # Cloudwatch rule to monitor for state change to Codecommit repository rCloudWatchRule: Type: AWS::Events::Rule Properties: Description: Cloudwatch rule that watches for commit events Name: code-commit-backup-trigger EventPattern: source: - aws.codecommit detail-type: - CodeCommit Repository State Change detail: event: - referenceCreated - referenceUpdated referenceType: - branch referenceName: - main - master - Master - Main Targets: - Arn: !GetAtt rCodeBuildProject.Arn Id: codebuild-trigger-backup RoleArn: !GetAtt rCloudWatchRole.Arn InputTransformer: InputPathsMap: {"referenceType":"$.detail.referenceType","region":"$.region","repositoryName":"$.detail.repositoryName","account":"$.account","referenceName":"$.detail.referenceName"} InputTemplate: | {"environmentVariablesOverride": [ { "name": "REFERENCE_NAME", "value": }, { "name": "REFERENCE_TYPE", "value": }, { "name": "REPOSITORY_NAME", "value": }, { "name": "REPO_REGION", "value": }, { "name": "ACCOUNT_ID", "value": } ]} rCodeCommitBackupLambdaFunction: Type: AWS::Serverless::Function Condition: ScheduleBackups Properties: InlineCode: | import boto3 import logging import os import time from botocore.exceptions import ClientError # set region region = os.environ['region'] boto_level = os.environ.get("BOTO_LOG_LEVEL", logging.CRITICAL) logging.getLogger("boto").setLevel(boto_level) logging.getLogger("boto3").setLevel(boto_level) logging.getLogger("botocore").setLevel(boto_level) logging.getLogger("urllib3").setLevel(boto_level) log_level = os.environ.get("LOG_LEVEL", logging.WARNING) log = logging.getLogger(__name__) logging.basicConfig(format="%(levelname)s %(threadName)s %(message)s", level=logging.INFO) log.setLevel(log_level) def export_repos(): try: # obtain repositories in aws account client = boto3.client('codecommit') codecommit = boto3.client('codebuild') log.info('listing code commit repositories') repos = client.list_repositories() log.info(repos) for repo in repos['repositories']: reponame = repo['repositoryName'] log.info('get branches for repository') log.info('repo name is:' +reponame) branchpoll = getrepobranch(reponame) for branch in branchpoll: targetbranches = ['main','master','Main','Master'] # only targeting main branche(s) if branch in targetbranches: log.info(f'starting build for repo: {reponame}, branch {branch}') buildjob = codecommit.start_build( projectName='codecommit-backup-pipeline', environmentVariablesOverride=[ { 'name': 'REFERENCE_NAME', 'value': branch, 'type': 'PLAINTEXT' }, { 'name': 'REPOSITORY_NAME', 'value': reponame, 'type': 'PLAINTEXT' }, { 'name': 'REPO_REGION', 'value': region, 'type': 'PLAINTEXT' }, ] ) except ClientError as e: log.error('issue backing up repository') log.error(str(e)) def getrepobranch(repo): client = boto3.client('codecommit') branchList = client.list_branches(repositoryName=repo) if not branchList: log.error('no branches found for repository:'+repo) return # obtaining list of branches branches = branchList['branches'] return branches def lambda_handler(event, context): try: export_repos() except Exception as e: log.error('error in execution of backups for repo') Handler: index.lambda_handler PackageType: Zip MemorySize: 256 Role: !GetAtt rCodeCommitBackupLambdaRole.Arn Runtime: python3.9 Timeout: 900 Environment: Variables: region: !Sub ${AWS::Region} BOTO_LOG_LEVEL: CRITICAL LOG_LEVEL: WARNING rCodeCommitBackupLambdaRole: Type: AWS::IAM::Role Condition: ScheduleBackups Properties: RoleName: !Ref pServiceCatalogCodeCommitBackupsLambdaRoleName Path: !Ref pServiceCatalogCodeCommitBackupRolePath AssumeRolePolicyDocument: Statement: - Action: - sts:AssumeRole Effect: Allow Principal: Service: lambda.amazonaws.com Version: "2012-10-17" ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: StartCodebuild PolicyDocument: Statement: - Action: - codebuild:StartBuild Effect: Allow Resource: - !GetAtt rCodeBuildProject.Arn - PolicyName: ListRepos PolicyDocument: Statement: - Action: - codecommit:ListBranches - codecommit:ListRepositories Effect: Allow Resource: '*' rCodeCommitBackupSchedule: Type: AWS::Events::Rule DependsOn: - rCodeCommitBackupLambdaFunction Condition: ScheduleBackups Properties: Name: scpuppet-codecommit-backup-schedule-rule Description: Creates a backup job that runs on a daily basis ScheduleExpression: !Ref pServiceCatalogCodeCommitBackupschedule Targets: - Arn: !GetAtt rCodeCommitBackupLambdaFunction.Arn Id: codecommit-backup-schedule rCodeCommitLambdaInvokePermission: Type: AWS::Lambda::Permission Condition: ScheduleBackups Properties: FunctionName: !GetAtt rCodeCommitBackupLambdaFunction.Arn Action: lambda:InvokeFunction Principal: events.amazonaws.com SourceArn: !GetAtt rCodeCommitBackupSchedule.Arn Outputs: oServiceCatalogCodeCommitBackupsBackupBucketName: Description: S3 Backup bucket name Value: !Ref rS3Bucket oServiceCatalogCodeCommitBackupsBackupBuildProject: Description: Codebuild project that runs the backup job Value: !Ref rCodeBuildProject oServiceCatalogCodeCommitBackupsCloudwatchRuleArn: Description: CloudWatch role that puts backup exports into the target S3 bucket Value: !GetAtt rCloudWatchRole.Arn oServiceCatalogCodeCommitBackupsCodebuildRoleArn: Description: Role created for Codebuild project execution Value: !GetAtt rCodeBuildRole.Arn oServiceCatalogCodeCommitBackupsCodebuildProject: Description: Codebuild Project used to export Code Commit repos to s3 Value: !Ref rCodeBuildProject oServiceCatalogCodeCommitBackupsBackupLambdaFunctionArn: Description: Lambda Backup function Value: !GetAtt rCodeCommitBackupLambdaFunction.Arn Condition: ScheduleBackups ================================================ FILE: operations/codecommit-backups/stacks/codecommit-backups.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Stacks: - Name: code-commit-backups Tags: - Key: category Value: operations Versions: - Name: v1 Active: True Source: Provider: CodeCommit Path: stacks/code-commit-backups/v1 Configuration: RepositoryName: code-commit-backups BranchName: main ================================================ FILE: operations/service-catalog-puppet-pipeline-logs-exporter/README.md ================================================ # Service Catalog Puppet Logs Exporter This solution exports the pipeline logs to an S3 bucket in the event that the Service Catalog Pipeline fails, is superseded or is cancelled. ![Template Design](scpuppet-logs.png) ## Description * Deploys a single product in the tooling account that will trigger Cloudwatch events rule if Service Catalog Puppet pipeline fails * Triggers a Codebuild project * Exports logs as a build artifact to an S3 bucket boto_level = os.environ.get(“BOTO_LOG_LEVEL”, logging.CRITICAL) logging.getLogger(“boto”).setLevel(boto_level) logging.getLogger(“boto3”).setLevel(boto_level) logging.getLogger(“botocore”).setLevel(boto_level) logging.getLogger(“urllib3”).setLevel(boto_level) log_level = os.environ.get(“LOG_LEVEL”, logging.WARNING) logger = logging.getLogger(__name__) logging.basicConfig( format=“%(levelname)s %(threadName)s %(message)s”, level=logging.INFO ) logger.setLevel(log_level) ================================================ FILE: operations/service-catalog-puppet-pipeline-logs-exporter/example-manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 stacks: scpuppet-logs: name: service-catalog-puppet-pipeline-logs-exporter version: v1 deploy_to: tags: - tag: role:sct regions: default_region ================================================ FILE: operations/service-catalog-puppet-pipeline-logs-exporter/stacks/service-catalog-puppet-pipeline-logs-exporter/service-catalog-puppet-pipeline-logs-exporter.drawio ================================================ ================================================ FILE: operations/service-catalog-puppet-pipeline-logs-exporter/stacks/service-catalog-puppet-pipeline-logs-exporter/v1/stack.template.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: | Creates a Cloudwatch events rule that triggers a Codebuild project to export all logs from a failed/cancelled/superseded Service Catalog Puppet pipeline execution. Provides a pre-signed S3 url at the end of execution {"framework": "servicecatalog-products", "role": "product", "product-category": "operations", "product-set": "service-catalog-puppet-pipeline-logs-exporter", "product": "service-catalog-puppet-pipeline-logs-exporter", "version": "v1"} Parameters: pServiceCatalogPuppetLogsExporterCodeBuildEnvVersion: Type: String Description: Version of Codebuild Environment Version Default: '5.0' pServiceCatalogPuppetLogsExporterExportExpiresIn: Type: String Description: Time in seconds that the Pre-signed S3 link expires in, default is 3600 (one hour) Default: '3600' ServiceCatalogPuppetLogsExporterCloudWatchRoleName: Type: String Default: scpuppet-logs-cloudwatch-role ServiceCatalogPuppetLogsExporterCloudWatchRolePath: Type: String Default: /operations/servicecatalog-puppet-logs-export/ Resources: rS3Bucket: Type: AWS::S3::Bucket Description: "S3 Bucket for pipeline logs" DeletionPolicy: Retain Properties: BucketName: !Sub scpuppet-logs-${AWS::Region}-${AWS::AccountId} BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: SSEAlgorithm: AES256 rServiceCatalogPuppetLogsExporterCloudWatchRole: Type: AWS::IAM::Role Description: "Cloudwatch role associated with events rule to catch jobs in cancelled/failed/superseded state" Properties: RoleName: !Ref ServiceCatalogPuppetLogsExporterCloudWatchRoleName Path: !Ref ServiceCatalogPuppetLogsExporterCloudWatchRolePath AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: [events.amazonaws.com] Action: ["sts:AssumeRole"] Description: Role for Cloudwatch to publish to codecommit backup bucket Policies: - PolicyName: CwForwardEventPolicy PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - codebuild:StartBuild Resource: - !GetAtt rCodeBuildProject.Arn rCloudwatchRule: Type: AWS::Events::Rule Description: "Cloudwatch events rule to grab servicecatalog puppet pipeline execution on failure/cancellation/superseded state" Properties: Description: Cloudwatch events rule to grab servicecatalog puppet pipeline execution on failure/cancellation/superseded state EventPattern: source: - aws.codepipeline detail-type: - CodePipeline Pipeline Execution State Change detail: state: - FAILED - CANCELED - SUPERSEDED pipeline: - servicecatalog-puppet-pipeline Targets: - Arn: !GetAtt rCodeBuildProject.Arn Id: codebuild-trigger-logs RoleArn: !GetAtt rServiceCatalogPuppetLogsExporterCloudWatchRole.Arn InputTransformer: InputPathsMap: {"State":"$.detail.state","executionid":"$.detail.execution-id","detailtype":"$.detail-type"} InputTemplate: | {"environmentVariablesOverride": [ { "name": "State", "value": }, { "name": "EXECUTION_ID", "value": }, { "name": "DETAIL_TYPE", "value": } ]} rCodeBuildLogs: Type: AWS::Logs::LogGroup Description: "LogGroup for storing Codebuild logs" Properties: LogGroupName: /aws/codebuild/scpuppet-build-pipeline-logs RetentionInDays: 7 rCodeBuildRole: Type: AWS::IAM::Role Description: "Service role for Codebuild" DependsOn: rCodeBuildLogs Properties: RoleName: scpuppet-logs-codebuild-role Path: /foundational/servicecatalog-puppet-logs-export/ AssumeRolePolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Principal: Service: codebuild.amazonaws.com Action: sts:AssumeRole MaxSessionDuration: 43200 Policies: - PolicyName: codebuildservicerole-permissions PolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Action: - s3:PutObject - s3:GetObject - s3:GetObjectVersion - s3:GetBucketAcl - s3:GetBucketLocation Resource: - !Sub 'arn:aws:s3:::scpuppet-logs-${AWS::Region}-${AWS::AccountId}/*' - Effect: Allow Action: - logs:CreateLogGroup - logs:CreateLogStream - logs:PutLogEvents Resource: - !GetAtt rCodeBuildLogs.Arn - Effect: Allow Action: - logs:GetLogEvents Resource: - !Sub arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/codebuild/servicecatalog-puppet*:log-stream:* - Effect: Allow Action: - s3:PutObject - s3:GetObject - s3:GetObjectVersion - s3:GetBucketAcl - s3:GetBucketLocation Resource: - !Sub arn:aws:s3:::codepipeline-${AWS::Region}-* - Effect: Allow Action: - codebuild:CreateReportGroup - codebuild:CreateReport - codebuild:UpdateReport - codebuild:BatchPutTestCases - codebuild:BatchPutCodeCoverages Resource: - !Sub arn:aws:codebuild:${AWS::Region}:${AWS::AccountId}:report-group/scpuppet-logs-pipeline* - Effect: Allow Action: - codebuild:BatchGetBuilds Resource: - !Sub arn:aws:codebuild:${AWS::Region}:${AWS::AccountId}:project/servicecatalog-puppet* - Effect: Allow Action: - ssm:GetParameters Resource: - !Sub arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/service-catalog-puppet-version - Effect: Allow Action: - sts:AssumeRole Resource: - !Sub arn:aws:iam::${AWS::AccountId}:role/servicecatalog-puppet/PuppetRole - Effect: Allow Action: - codepipeline:ListActionExecutions Resource: - !Sub arn:aws:codepipeline:${AWS::Region}:${AWS::AccountId}:servicecatalog-puppet-pipeline rCodeBuildProject: Type: AWS::CodeBuild::Project DependsOn: - rCodeBuildRole - rS3Bucket Properties: Name: scpuppet-logs-pipeline LogsConfig: CloudWatchLogs: GroupName: !Ref rCodeBuildLogs Status: ENABLED Environment: Type: LINUX_CONTAINER ComputeType: BUILD_GENERAL1_SMALL Image: !Sub aws/codebuild/standard:${pServiceCatalogPuppetLogsExporterCodeBuildEnvVersion} EnvironmentVariables: - Name: S3Bucket Type: PLAINTEXT Value: !Ref rS3Bucket - Name: PuppetVersion Type: PARAMETER_STORE Value: service-catalog-puppet-version - Name: ExportExpiresIn Type: PLAINTEXT Value: !Ref pServiceCatalogPuppetLogsExporterExportExpiresIn ServiceRole: !GetAtt rCodeBuildRole.Arn Source: Type: NO_SOURCE BuildSpec: | version: 0.2 phases: install: commands: - pip install aws-service-catalog-puppet==$PuppetVersion build: commands: - env - echo "Pipeline state is $State" - dt=$(date '+%d-%m-%Y-%H:%M:%S'); - echo $dt - servicecatalog-puppet export-puppet-pipeline-logs $EXECUTION_ID - logbundle=servicecatalogpuppet-pipelinelogs-$dt.zip - zip $logbundle log-servicecatalog*.log - echo "Pre-signing S3 URL" - aws s3 presign s3://$S3Bucket/logs/$logbundle --expires-in $ExportExpiresIn artifacts: files: - $logbundle Artifacts: Type: S3 Location: !Ref rS3Bucket Name: logs Packaging: NONE EncryptionDisabled: false Outputs: oS3Bucket: Description: S3 Bucket that is a location for log exports Value: !Ref rS3Bucket oServiceCatalogPuppetLogsExporterCloudWatchRoleArn: Description: Arn for Cloudwatch Role Value: !GetAtt rServiceCatalogPuppetLogsExporterCloudWatchRole.Arn oCodebuildProject: Description: Codebuild project that exports puppet pipeline logs Value: !Ref rCodeBuildProject oCodebuildRoleArn: Description: Codebuild Role Arn Value: !GetAtt rCodeBuildRole.Arn ================================================ FILE: operations/service-catalog-puppet-pipeline-logs-exporter/stacks/service-catalog-puppet-pipeline-logs-exporter.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Stacks: - Name: service-catalog-puppet-pipeline-logs-exporter Tags: - Key: category Value: operations Versions: - Name: v1 Active: True Source: Provider: CodeCommit Path: stacks/service-catalog-puppet-pipeline-logs-exporter/v1 Configuration: RepositoryName: service-catalog-puppet-pipeline-logs-exporter BranchName: main ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null Validity: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-validity Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: !Ref 'Validity' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null Validity: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-validity Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: !Ref 'Validity' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-Certificate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm TemplateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-templatearn Default: null ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' TemplateArn: !Ref 'TemplateArn' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Subject: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-subject RevocationConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-revocationconfiguration Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: !Ref 'Subject' RevocationConfiguration: !Ref 'RevocationConfiguration' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Subject: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-subject RevocationConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-revocationconfiguration Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: !Ref 'Subject' RevocationConfiguration: !Ref 'RevocationConfiguration' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm SubjectCountry: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country Default: null SubjectOrganization: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization Default: null SubjectOrganizationalUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit Default: null SubjectDistinguishedNameQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier Default: null SubjectState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state Default: null SubjectCommonName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname Default: null SubjectSerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber Default: null SubjectLocality: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality Default: null SubjectTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title Default: null SubjectSurname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname Default: null SubjectGivenName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname Default: null SubjectInitials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials Default: null SubjectPseudonym: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym Default: null SubjectGenerationQualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier Default: null RevocationConfigurationCrlConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RevocationConfigurationCrlConfigurationExpirationInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-expirationindays Default: null RevocationConfigurationCrlConfigurationCustomCname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-customcname Default: null RevocationConfigurationCrlConfigurationS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-s3bucketname Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: Country: !Ref 'SubjectCountry' Organization: !Ref 'SubjectOrganization' OrganizationalUnit: !Ref 'SubjectOrganizationalUnit' DistinguishedNameQualifier: !Ref 'SubjectDistinguishedNameQualifier' State: !Ref 'SubjectState' CommonName: !Ref 'SubjectCommonName' SerialNumber: !Ref 'SubjectSerialNumber' Locality: !Ref 'SubjectLocality' Title: !Ref 'SubjectTitle' Surname: !Ref 'SubjectSurname' GivenName: !Ref 'SubjectGivenName' Initials: !Ref 'SubjectInitials' Pseudonym: !Ref 'SubjectPseudonym' GenerationQualifier: !Ref 'SubjectGenerationQualifier' RevocationConfiguration: CrlConfiguration: Enabled: !Ref 'RevocationConfigurationCrlConfigurationEnabled' ExpirationInDays: !Ref 'RevocationConfigurationCrlConfigurationExpirationInDays' CustomCname: !Ref 'RevocationConfigurationCrlConfigurationCustomCname' S3BucketName: !Ref 'RevocationConfigurationCrlConfigurationS3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate CertificateChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificatechain Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-status Default: null Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' CertificateChain: !Ref 'CertificateChain' Status: !Ref 'Status' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: AnalyzerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzername Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: AnalyzerName: !Ref 'AnalyzerName' Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Broker/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-storagetype Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-id MaintenanceWindowDayOfWeek: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-dayofweek MaintenanceWindowTimeOfDay: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timeofday MaintenanceWindowTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timezone HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' LogListAudit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-audit AllowedValues: - 'true' - 'false' Default: null LogListGeneral: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-general AllowedValues: - 'true' - 'false' Default: null BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' EncryptionOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-kmskeyid Default: null EncryptionOptionsUseAwsOwnedKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-useawsownedkey AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: StorageType: !Ref 'StorageType' EngineVersion: !Ref 'EngineVersion' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' MaintenanceWindowStartTime: DayOfWeek: !Ref 'MaintenanceWindowDayOfWeek' TimeOfDay: !Ref 'MaintenanceWindowTimeOfDay' TimeZone: !Ref 'MaintenanceWindowTimeZone' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' Logs: Audit: !Ref 'LogListAudit' General: !Ref 'LogListGeneral' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' EncryptionOptions: KmsKeyId: !Ref 'EncryptionOptionsKmsKeyId' UseAwsOwnedKey: !Ref 'EncryptionOptionsUseAwsOwnedKey' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Broker/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-storagetype Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-id MaintenanceWindowDayOfWeek: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-dayofweek MaintenanceWindowTimeOfDay: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timeofday MaintenanceWindowTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timezone HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' LogListAudit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-audit AllowedValues: - 'true' - 'false' Default: null LogListGeneral: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-general AllowedValues: - 'true' - 'false' Default: null BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' EncryptionOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-kmskeyid Default: null EncryptionOptionsUseAwsOwnedKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-useawsownedkey AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: StorageType: !Ref 'StorageType' EngineVersion: !Ref 'EngineVersion' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' MaintenanceWindowStartTime: DayOfWeek: !Ref 'MaintenanceWindowDayOfWeek' TimeOfDay: !Ref 'MaintenanceWindowTimeOfDay' TimeZone: !Ref 'MaintenanceWindowTimeZone' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' Logs: Audit: !Ref 'LogListAudit' General: !Ref 'LogListGeneral' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' EncryptionOptions: KmsKeyId: !Ref 'EncryptionOptionsKmsKeyId' UseAwsOwnedKey: !Ref 'EncryptionOptionsUseAwsOwnedKey' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Broker/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-storagetype Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-id MaintenanceWindowDayOfWeek: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-dayofweek MaintenanceWindowTimeOfDay: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timeofday MaintenanceWindowTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timezone HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' LogListAudit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-audit AllowedValues: - 'true' - 'false' Default: null LogListGeneral: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-general AllowedValues: - 'true' - 'false' Default: null BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' EncryptionOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-kmskeyid Default: null EncryptionOptionsUseAwsOwnedKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-useawsownedkey AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: StorageType: !Ref 'StorageType' EngineVersion: !Ref 'EngineVersion' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' MaintenanceWindowStartTime: DayOfWeek: !Ref 'MaintenanceWindowDayOfWeek' TimeOfDay: !Ref 'MaintenanceWindowTimeOfDay' TimeZone: !Ref 'MaintenanceWindowTimeZone' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' Logs: Audit: !Ref 'LogListAudit' General: !Ref 'LogListGeneral' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' EncryptionOptions: KmsKeyId: !Ref 'EncryptionOptionsKmsKeyId' UseAwsOwnedKey: !Ref 'EncryptionOptionsUseAwsOwnedKey' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Broker/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-storagetype Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-id MaintenanceWindowDayOfWeek: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-dayofweek MaintenanceWindowTimeOfDay: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timeofday MaintenanceWindowTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timezone HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' LogListAudit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-audit AllowedValues: - 'true' - 'false' Default: null LogListGeneral: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-general AllowedValues: - 'true' - 'false' Default: null BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' EncryptionOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-kmskeyid Default: null EncryptionOptionsUseAwsOwnedKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-useawsownedkey AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: StorageType: !Ref 'StorageType' EngineVersion: !Ref 'EngineVersion' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' MaintenanceWindowStartTime: DayOfWeek: !Ref 'MaintenanceWindowDayOfWeek' TimeOfDay: !Ref 'MaintenanceWindowTimeOfDay' TimeZone: !Ref 'MaintenanceWindowTimeZone' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' Logs: Audit: !Ref 'LogListAudit' General: !Ref 'LogListGeneral' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' EncryptionOptions: KmsKeyId: !Ref 'EncryptionOptionsKmsKeyId' UseAwsOwnedKey: !Ref 'EncryptionOptionsUseAwsOwnedKey' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Broker/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-storagetype Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-id MaintenanceWindowDayOfWeek: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-dayofweek MaintenanceWindowTimeOfDay: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timeofday MaintenanceWindowTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timezone HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' LogListAudit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-audit AllowedValues: - 'true' - 'false' Default: null LogListGeneral: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-general AllowedValues: - 'true' - 'false' Default: null BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' EncryptionOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-kmskeyid Default: null EncryptionOptionsUseAwsOwnedKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-useawsownedkey AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: StorageType: !Ref 'StorageType' EngineVersion: !Ref 'EngineVersion' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' MaintenanceWindowStartTime: DayOfWeek: !Ref 'MaintenanceWindowDayOfWeek' TimeOfDay: !Ref 'MaintenanceWindowTimeOfDay' TimeZone: !Ref 'MaintenanceWindowTimeZone' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' Logs: Audit: !Ref 'LogListAudit' General: !Ref 'LogListGeneral' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' EncryptionOptions: KmsKeyId: !Ref 'EncryptionOptionsKmsKeyId' UseAwsOwnedKey: !Ref 'EncryptionOptionsUseAwsOwnedKey' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Broker/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-storagetype Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-id MaintenanceWindowDayOfWeek: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-dayofweek MaintenanceWindowTimeOfDay: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timeofday MaintenanceWindowTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timezone HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' LogListAudit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-audit AllowedValues: - 'true' - 'false' Default: null LogListGeneral: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-general AllowedValues: - 'true' - 'false' Default: null BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' EncryptionOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-kmskeyid Default: null EncryptionOptionsUseAwsOwnedKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-useawsownedkey AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: StorageType: !Ref 'StorageType' EngineVersion: !Ref 'EngineVersion' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' MaintenanceWindowStartTime: DayOfWeek: !Ref 'MaintenanceWindowDayOfWeek' TimeOfDay: !Ref 'MaintenanceWindowTimeOfDay' TimeZone: !Ref 'MaintenanceWindowTimeZone' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' Logs: Audit: !Ref 'LogListAudit' General: !Ref 'LogListGeneral' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' EncryptionOptions: KmsKeyId: !Ref 'EncryptionOptionsKmsKeyId' UseAwsOwnedKey: !Ref 'EncryptionOptionsUseAwsOwnedKey' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Broker/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-storagetype Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-id MaintenanceWindowDayOfWeek: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-dayofweek MaintenanceWindowTimeOfDay: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timeofday MaintenanceWindowTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timezone HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' LogListAudit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-audit AllowedValues: - 'true' - 'false' Default: null LogListGeneral: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-general AllowedValues: - 'true' - 'false' Default: null BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' EncryptionOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-kmskeyid Default: null EncryptionOptionsUseAwsOwnedKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-useawsownedkey AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: StorageType: !Ref 'StorageType' EngineVersion: !Ref 'EngineVersion' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' MaintenanceWindowStartTime: DayOfWeek: !Ref 'MaintenanceWindowDayOfWeek' TimeOfDay: !Ref 'MaintenanceWindowTimeOfDay' TimeZone: !Ref 'MaintenanceWindowTimeZone' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' Logs: Audit: !Ref 'LogListAudit' General: !Ref 'LogListGeneral' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' EncryptionOptions: KmsKeyId: !Ref 'EncryptionOptionsKmsKeyId' UseAwsOwnedKey: !Ref 'EncryptionOptionsUseAwsOwnedKey' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Broker/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-storagetype Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-id MaintenanceWindowDayOfWeek: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-dayofweek MaintenanceWindowTimeOfDay: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timeofday MaintenanceWindowTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timezone HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' LogListAudit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-audit AllowedValues: - 'true' - 'false' Default: null LogListGeneral: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-general AllowedValues: - 'true' - 'false' Default: null BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' EncryptionOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-kmskeyid Default: null EncryptionOptionsUseAwsOwnedKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-useawsownedkey AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: StorageType: !Ref 'StorageType' EngineVersion: !Ref 'EngineVersion' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' MaintenanceWindowStartTime: DayOfWeek: !Ref 'MaintenanceWindowDayOfWeek' TimeOfDay: !Ref 'MaintenanceWindowTimeOfDay' TimeZone: !Ref 'MaintenanceWindowTimeZone' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' Logs: Audit: !Ref 'LogListAudit' General: !Ref 'LogListGeneral' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' EncryptionOptions: KmsKeyId: !Ref 'EncryptionOptionsKmsKeyId' UseAwsOwnedKey: !Ref 'EncryptionOptionsUseAwsOwnedKey' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Broker/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-storagetype Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-id MaintenanceWindowDayOfWeek: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-dayofweek MaintenanceWindowTimeOfDay: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timeofday MaintenanceWindowTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timezone HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' LogListAudit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-audit AllowedValues: - 'true' - 'false' Default: null LogListGeneral: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-general AllowedValues: - 'true' - 'false' Default: null BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' EncryptionOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-kmskeyid Default: null EncryptionOptionsUseAwsOwnedKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-useawsownedkey AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: StorageType: !Ref 'StorageType' EngineVersion: !Ref 'EngineVersion' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' MaintenanceWindowStartTime: DayOfWeek: !Ref 'MaintenanceWindowDayOfWeek' TimeOfDay: !Ref 'MaintenanceWindowTimeOfDay' TimeZone: !Ref 'MaintenanceWindowTimeZone' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' Logs: Audit: !Ref 'LogListAudit' General: !Ref 'LogListGeneral' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' EncryptionOptions: KmsKeyId: !Ref 'EncryptionOptionsKmsKeyId' UseAwsOwnedKey: !Ref 'EncryptionOptionsUseAwsOwnedKey' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Broker/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-storagetype Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-id MaintenanceWindowDayOfWeek: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-dayofweek MaintenanceWindowTimeOfDay: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timeofday MaintenanceWindowTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timezone HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' LogListAudit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-audit AllowedValues: - 'true' - 'false' Default: null LogListGeneral: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-general AllowedValues: - 'true' - 'false' Default: null BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' EncryptionOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-kmskeyid Default: null EncryptionOptionsUseAwsOwnedKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-useawsownedkey AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: StorageType: !Ref 'StorageType' EngineVersion: !Ref 'EngineVersion' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' MaintenanceWindowStartTime: DayOfWeek: !Ref 'MaintenanceWindowDayOfWeek' TimeOfDay: !Ref 'MaintenanceWindowTimeOfDay' TimeZone: !Ref 'MaintenanceWindowTimeZone' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' Logs: Audit: !Ref 'LogListAudit' General: !Ref 'LogListGeneral' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' EncryptionOptions: KmsKeyId: !Ref 'EncryptionOptionsKmsKeyId' UseAwsOwnedKey: !Ref 'EncryptionOptionsUseAwsOwnedKey' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Broker/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-storagetype Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-id MaintenanceWindowDayOfWeek: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-dayofweek MaintenanceWindowTimeOfDay: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timeofday MaintenanceWindowTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timezone HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' LogListAudit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-audit AllowedValues: - 'true' - 'false' Default: null LogListGeneral: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-general AllowedValues: - 'true' - 'false' Default: null BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' EncryptionOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-kmskeyid Default: null EncryptionOptionsUseAwsOwnedKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-useawsownedkey AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: StorageType: !Ref 'StorageType' EngineVersion: !Ref 'EngineVersion' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' MaintenanceWindowStartTime: DayOfWeek: !Ref 'MaintenanceWindowDayOfWeek' TimeOfDay: !Ref 'MaintenanceWindowTimeOfDay' TimeZone: !Ref 'MaintenanceWindowTimeZone' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' Logs: Audit: !Ref 'LogListAudit' General: !Ref 'LogListGeneral' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' EncryptionOptions: KmsKeyId: !Ref 'EncryptionOptionsKmsKeyId' UseAwsOwnedKey: !Ref 'EncryptionOptionsUseAwsOwnedKey' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Broker/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-storagetype Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-id MaintenanceWindowDayOfWeek: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-dayofweek MaintenanceWindowTimeOfDay: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timeofday MaintenanceWindowTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timezone HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' LogListAudit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-audit AllowedValues: - 'true' - 'false' Default: null LogListGeneral: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-general AllowedValues: - 'true' - 'false' Default: null BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' EncryptionOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-kmskeyid Default: null EncryptionOptionsUseAwsOwnedKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-useawsownedkey AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: StorageType: !Ref 'StorageType' EngineVersion: !Ref 'EngineVersion' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' MaintenanceWindowStartTime: DayOfWeek: !Ref 'MaintenanceWindowDayOfWeek' TimeOfDay: !Ref 'MaintenanceWindowTimeOfDay' TimeZone: !Ref 'MaintenanceWindowTimeZone' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' Logs: Audit: !Ref 'LogListAudit' General: !Ref 'LogListGeneral' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' EncryptionOptions: KmsKeyId: !Ref 'EncryptionOptionsKmsKeyId' UseAwsOwnedKey: !Ref 'EncryptionOptionsUseAwsOwnedKey' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Broker/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-storagetype Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-configurationid.html#cfn-amazonmq-broker-configurationid-id MaintenanceWindowDayOfWeek: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-dayofweek MaintenanceWindowTimeOfDay: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timeofday MaintenanceWindowTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-maintenancewindow.html#cfn-amazonmq-broker-maintenancewindow-timezone HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' LogListAudit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-audit AllowedValues: - 'true' - 'false' Default: null LogListGeneral: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-general AllowedValues: - 'true' - 'false' Default: null BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' EncryptionOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-kmskeyid Default: null EncryptionOptionsUseAwsOwnedKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-encryptionoptions.html#cfn-amazonmq-broker-encryptionoptions-useawsownedkey AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: StorageType: !Ref 'StorageType' EngineVersion: !Ref 'EngineVersion' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' MaintenanceWindowStartTime: DayOfWeek: !Ref 'MaintenanceWindowDayOfWeek' TimeOfDay: !Ref 'MaintenanceWindowTimeOfDay' TimeZone: !Ref 'MaintenanceWindowTimeZone' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' Logs: Audit: !Ref 'LogListAudit' General: !Ref 'LogListGeneral' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' EncryptionOptions: KmsKeyId: !Ref 'EncryptionOptionsKmsKeyId' UseAwsOwnedKey: !Ref 'EncryptionOptionsUseAwsOwnedKey' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Configuration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-description Default: null EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' Description: !Ref 'Description' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Configuration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-description Default: null EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' Description: !Ref 'Description' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Configuration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-description Default: null EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' Description: !Ref 'Description' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Configuration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-description Default: null EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' Description: !Ref 'Description' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Configuration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-description Default: null EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' Description: !Ref 'Description' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Configuration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-description Default: null EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' Description: !Ref 'Description' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Configuration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-description Default: null EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' Description: !Ref 'Description' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Configuration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-description Default: null EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' Description: !Ref 'Description' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Configuration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-description Default: null EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' Description: !Ref 'Description' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Configuration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-description Default: null EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' Description: !Ref 'Description' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Configuration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-description Default: null EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' Description: !Ref 'Description' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Configuration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-description Default: null EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' Description: !Ref 'Description' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-Configuration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-description Default: null EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' Description: !Ref 'Description' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-App/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: AutoBranchCreationConfigEnableAutoBranchCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobranchcreation AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigPullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-pullrequestenvironmentname Default: null AutoBranchCreationConfigEnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigEnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobuild AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-buildspec Default: null AutoBranchCreationConfigStage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-stage Default: null AutoBranchCreationConfigBasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null OauthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-oauthtoken Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-description Default: null EnableBranchAutoDeletion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-enablebranchautodeletion AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Repository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-repository Default: null AccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-accesstoken Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-buildspec Default: null BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null IAMServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-iamservicerole Default: null Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: AutoBranchCreationConfig: EnableAutoBranchCreation: !Ref 'AutoBranchCreationConfigEnableAutoBranchCreation' PullRequestEnvironmentName: !Ref 'AutoBranchCreationConfigPullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'AutoBranchCreationConfigEnablePullRequestPreview' EnableAutoBuild: !Ref 'AutoBranchCreationConfigEnableAutoBuild' BuildSpec: !Ref 'AutoBranchCreationConfigBuildSpec' Stage: !Ref 'AutoBranchCreationConfigStage' BasicAuthConfig: Username: !Ref 'AutoBranchCreationConfigBasicAuthConfigUsername' EnableBasicAuth: !Ref 'AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth' Password: !Ref 'AutoBranchCreationConfigBasicAuthConfigPassword' OauthToken: !Ref 'OauthToken' Description: !Ref 'Description' EnableBranchAutoDeletion: !Ref 'EnableBranchAutoDeletion' Name: !Ref 'Name' Repository: !Ref 'Repository' AccessToken: !Ref 'AccessToken' BuildSpec: !Ref 'BuildSpec' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' IAMServiceRole: !Ref 'IAMServiceRole' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-App/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: AutoBranchCreationConfigEnableAutoBranchCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobranchcreation AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigPullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-pullrequestenvironmentname Default: null AutoBranchCreationConfigEnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigEnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobuild AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-buildspec Default: null AutoBranchCreationConfigStage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-stage Default: null AutoBranchCreationConfigBasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null OauthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-oauthtoken Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-description Default: null EnableBranchAutoDeletion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-enablebranchautodeletion AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Repository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-repository Default: null AccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-accesstoken Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-buildspec Default: null BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null IAMServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-iamservicerole Default: null Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: AutoBranchCreationConfig: EnableAutoBranchCreation: !Ref 'AutoBranchCreationConfigEnableAutoBranchCreation' PullRequestEnvironmentName: !Ref 'AutoBranchCreationConfigPullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'AutoBranchCreationConfigEnablePullRequestPreview' EnableAutoBuild: !Ref 'AutoBranchCreationConfigEnableAutoBuild' BuildSpec: !Ref 'AutoBranchCreationConfigBuildSpec' Stage: !Ref 'AutoBranchCreationConfigStage' BasicAuthConfig: Username: !Ref 'AutoBranchCreationConfigBasicAuthConfigUsername' EnableBasicAuth: !Ref 'AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth' Password: !Ref 'AutoBranchCreationConfigBasicAuthConfigPassword' OauthToken: !Ref 'OauthToken' Description: !Ref 'Description' EnableBranchAutoDeletion: !Ref 'EnableBranchAutoDeletion' Name: !Ref 'Name' Repository: !Ref 'Repository' AccessToken: !Ref 'AccessToken' BuildSpec: !Ref 'BuildSpec' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' IAMServiceRole: !Ref 'IAMServiceRole' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-App/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: AutoBranchCreationConfigEnableAutoBranchCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobranchcreation AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigPullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-pullrequestenvironmentname Default: null AutoBranchCreationConfigEnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigEnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobuild AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-buildspec Default: null AutoBranchCreationConfigStage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-stage Default: null AutoBranchCreationConfigBasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null OauthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-oauthtoken Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-description Default: null EnableBranchAutoDeletion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-enablebranchautodeletion AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Repository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-repository Default: null AccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-accesstoken Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-buildspec Default: null BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null IAMServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-iamservicerole Default: null Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: AutoBranchCreationConfig: EnableAutoBranchCreation: !Ref 'AutoBranchCreationConfigEnableAutoBranchCreation' PullRequestEnvironmentName: !Ref 'AutoBranchCreationConfigPullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'AutoBranchCreationConfigEnablePullRequestPreview' EnableAutoBuild: !Ref 'AutoBranchCreationConfigEnableAutoBuild' BuildSpec: !Ref 'AutoBranchCreationConfigBuildSpec' Stage: !Ref 'AutoBranchCreationConfigStage' BasicAuthConfig: Username: !Ref 'AutoBranchCreationConfigBasicAuthConfigUsername' EnableBasicAuth: !Ref 'AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth' Password: !Ref 'AutoBranchCreationConfigBasicAuthConfigPassword' OauthToken: !Ref 'OauthToken' Description: !Ref 'Description' EnableBranchAutoDeletion: !Ref 'EnableBranchAutoDeletion' Name: !Ref 'Name' Repository: !Ref 'Repository' AccessToken: !Ref 'AccessToken' BuildSpec: !Ref 'BuildSpec' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' IAMServiceRole: !Ref 'IAMServiceRole' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-App/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: AutoBranchCreationConfigEnableAutoBranchCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobranchcreation AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigPullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-pullrequestenvironmentname Default: null AutoBranchCreationConfigEnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigEnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobuild AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-buildspec Default: null AutoBranchCreationConfigStage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-stage Default: null AutoBranchCreationConfigBasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null OauthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-oauthtoken Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-description Default: null EnableBranchAutoDeletion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-enablebranchautodeletion AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Repository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-repository Default: null AccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-accesstoken Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-buildspec Default: null BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null IAMServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-iamservicerole Default: null Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: AutoBranchCreationConfig: EnableAutoBranchCreation: !Ref 'AutoBranchCreationConfigEnableAutoBranchCreation' PullRequestEnvironmentName: !Ref 'AutoBranchCreationConfigPullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'AutoBranchCreationConfigEnablePullRequestPreview' EnableAutoBuild: !Ref 'AutoBranchCreationConfigEnableAutoBuild' BuildSpec: !Ref 'AutoBranchCreationConfigBuildSpec' Stage: !Ref 'AutoBranchCreationConfigStage' BasicAuthConfig: Username: !Ref 'AutoBranchCreationConfigBasicAuthConfigUsername' EnableBasicAuth: !Ref 'AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth' Password: !Ref 'AutoBranchCreationConfigBasicAuthConfigPassword' OauthToken: !Ref 'OauthToken' Description: !Ref 'Description' EnableBranchAutoDeletion: !Ref 'EnableBranchAutoDeletion' Name: !Ref 'Name' Repository: !Ref 'Repository' AccessToken: !Ref 'AccessToken' BuildSpec: !Ref 'BuildSpec' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' IAMServiceRole: !Ref 'IAMServiceRole' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-App/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: AutoBranchCreationConfigEnableAutoBranchCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobranchcreation AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigPullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-pullrequestenvironmentname Default: null AutoBranchCreationConfigEnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigEnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobuild AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-buildspec Default: null AutoBranchCreationConfigStage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-stage Default: null AutoBranchCreationConfigBasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null OauthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-oauthtoken Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-description Default: null EnableBranchAutoDeletion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-enablebranchautodeletion AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Repository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-repository Default: null AccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-accesstoken Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-buildspec Default: null BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null IAMServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-iamservicerole Default: null Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: AutoBranchCreationConfig: EnableAutoBranchCreation: !Ref 'AutoBranchCreationConfigEnableAutoBranchCreation' PullRequestEnvironmentName: !Ref 'AutoBranchCreationConfigPullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'AutoBranchCreationConfigEnablePullRequestPreview' EnableAutoBuild: !Ref 'AutoBranchCreationConfigEnableAutoBuild' BuildSpec: !Ref 'AutoBranchCreationConfigBuildSpec' Stage: !Ref 'AutoBranchCreationConfigStage' BasicAuthConfig: Username: !Ref 'AutoBranchCreationConfigBasicAuthConfigUsername' EnableBasicAuth: !Ref 'AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth' Password: !Ref 'AutoBranchCreationConfigBasicAuthConfigPassword' OauthToken: !Ref 'OauthToken' Description: !Ref 'Description' EnableBranchAutoDeletion: !Ref 'EnableBranchAutoDeletion' Name: !Ref 'Name' Repository: !Ref 'Repository' AccessToken: !Ref 'AccessToken' BuildSpec: !Ref 'BuildSpec' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' IAMServiceRole: !Ref 'IAMServiceRole' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-App/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: AutoBranchCreationConfigEnableAutoBranchCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobranchcreation AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigPullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-pullrequestenvironmentname Default: null AutoBranchCreationConfigEnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigEnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobuild AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-buildspec Default: null AutoBranchCreationConfigStage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-stage Default: null AutoBranchCreationConfigBasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null OauthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-oauthtoken Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-description Default: null EnableBranchAutoDeletion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-enablebranchautodeletion AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Repository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-repository Default: null AccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-accesstoken Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-buildspec Default: null BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null IAMServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-iamservicerole Default: null Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: AutoBranchCreationConfig: EnableAutoBranchCreation: !Ref 'AutoBranchCreationConfigEnableAutoBranchCreation' PullRequestEnvironmentName: !Ref 'AutoBranchCreationConfigPullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'AutoBranchCreationConfigEnablePullRequestPreview' EnableAutoBuild: !Ref 'AutoBranchCreationConfigEnableAutoBuild' BuildSpec: !Ref 'AutoBranchCreationConfigBuildSpec' Stage: !Ref 'AutoBranchCreationConfigStage' BasicAuthConfig: Username: !Ref 'AutoBranchCreationConfigBasicAuthConfigUsername' EnableBasicAuth: !Ref 'AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth' Password: !Ref 'AutoBranchCreationConfigBasicAuthConfigPassword' OauthToken: !Ref 'OauthToken' Description: !Ref 'Description' EnableBranchAutoDeletion: !Ref 'EnableBranchAutoDeletion' Name: !Ref 'Name' Repository: !Ref 'Repository' AccessToken: !Ref 'AccessToken' BuildSpec: !Ref 'BuildSpec' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' IAMServiceRole: !Ref 'IAMServiceRole' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-App/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: AutoBranchCreationConfigEnableAutoBranchCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobranchcreation AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigPullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-pullrequestenvironmentname Default: null AutoBranchCreationConfigEnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigEnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobuild AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-buildspec Default: null AutoBranchCreationConfigStage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-stage Default: null AutoBranchCreationConfigBasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null OauthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-oauthtoken Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-description Default: null EnableBranchAutoDeletion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-enablebranchautodeletion AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Repository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-repository Default: null AccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-accesstoken Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-buildspec Default: null BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null IAMServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-iamservicerole Default: null Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: AutoBranchCreationConfig: EnableAutoBranchCreation: !Ref 'AutoBranchCreationConfigEnableAutoBranchCreation' PullRequestEnvironmentName: !Ref 'AutoBranchCreationConfigPullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'AutoBranchCreationConfigEnablePullRequestPreview' EnableAutoBuild: !Ref 'AutoBranchCreationConfigEnableAutoBuild' BuildSpec: !Ref 'AutoBranchCreationConfigBuildSpec' Stage: !Ref 'AutoBranchCreationConfigStage' BasicAuthConfig: Username: !Ref 'AutoBranchCreationConfigBasicAuthConfigUsername' EnableBasicAuth: !Ref 'AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth' Password: !Ref 'AutoBranchCreationConfigBasicAuthConfigPassword' OauthToken: !Ref 'OauthToken' Description: !Ref 'Description' EnableBranchAutoDeletion: !Ref 'EnableBranchAutoDeletion' Name: !Ref 'Name' Repository: !Ref 'Repository' AccessToken: !Ref 'AccessToken' BuildSpec: !Ref 'BuildSpec' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' IAMServiceRole: !Ref 'IAMServiceRole' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-App/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: AutoBranchCreationConfigEnableAutoBranchCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobranchcreation AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigPullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-pullrequestenvironmentname Default: null AutoBranchCreationConfigEnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigEnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobuild AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-buildspec Default: null AutoBranchCreationConfigStage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-stage Default: null AutoBranchCreationConfigBasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null OauthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-oauthtoken Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-description Default: null EnableBranchAutoDeletion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-enablebranchautodeletion AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Repository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-repository Default: null AccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-accesstoken Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-buildspec Default: null BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null IAMServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-iamservicerole Default: null Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: AutoBranchCreationConfig: EnableAutoBranchCreation: !Ref 'AutoBranchCreationConfigEnableAutoBranchCreation' PullRequestEnvironmentName: !Ref 'AutoBranchCreationConfigPullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'AutoBranchCreationConfigEnablePullRequestPreview' EnableAutoBuild: !Ref 'AutoBranchCreationConfigEnableAutoBuild' BuildSpec: !Ref 'AutoBranchCreationConfigBuildSpec' Stage: !Ref 'AutoBranchCreationConfigStage' BasicAuthConfig: Username: !Ref 'AutoBranchCreationConfigBasicAuthConfigUsername' EnableBasicAuth: !Ref 'AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth' Password: !Ref 'AutoBranchCreationConfigBasicAuthConfigPassword' OauthToken: !Ref 'OauthToken' Description: !Ref 'Description' EnableBranchAutoDeletion: !Ref 'EnableBranchAutoDeletion' Name: !Ref 'Name' Repository: !Ref 'Repository' AccessToken: !Ref 'AccessToken' BuildSpec: !Ref 'BuildSpec' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' IAMServiceRole: !Ref 'IAMServiceRole' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-App/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: AutoBranchCreationConfigEnableAutoBranchCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobranchcreation AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigPullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-pullrequestenvironmentname Default: null AutoBranchCreationConfigEnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigEnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobuild AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-buildspec Default: null AutoBranchCreationConfigStage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-stage Default: null AutoBranchCreationConfigBasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null OauthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-oauthtoken Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-description Default: null EnableBranchAutoDeletion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-enablebranchautodeletion AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Repository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-repository Default: null AccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-accesstoken Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-buildspec Default: null BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null IAMServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-iamservicerole Default: null Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: AutoBranchCreationConfig: EnableAutoBranchCreation: !Ref 'AutoBranchCreationConfigEnableAutoBranchCreation' PullRequestEnvironmentName: !Ref 'AutoBranchCreationConfigPullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'AutoBranchCreationConfigEnablePullRequestPreview' EnableAutoBuild: !Ref 'AutoBranchCreationConfigEnableAutoBuild' BuildSpec: !Ref 'AutoBranchCreationConfigBuildSpec' Stage: !Ref 'AutoBranchCreationConfigStage' BasicAuthConfig: Username: !Ref 'AutoBranchCreationConfigBasicAuthConfigUsername' EnableBasicAuth: !Ref 'AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth' Password: !Ref 'AutoBranchCreationConfigBasicAuthConfigPassword' OauthToken: !Ref 'OauthToken' Description: !Ref 'Description' EnableBranchAutoDeletion: !Ref 'EnableBranchAutoDeletion' Name: !Ref 'Name' Repository: !Ref 'Repository' AccessToken: !Ref 'AccessToken' BuildSpec: !Ref 'BuildSpec' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' IAMServiceRole: !Ref 'IAMServiceRole' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-App/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: AutoBranchCreationConfigEnableAutoBranchCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobranchcreation AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigPullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-pullrequestenvironmentname Default: null AutoBranchCreationConfigEnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigEnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobuild AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-buildspec Default: null AutoBranchCreationConfigStage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-stage Default: null AutoBranchCreationConfigBasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null OauthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-oauthtoken Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-description Default: null EnableBranchAutoDeletion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-enablebranchautodeletion AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Repository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-repository Default: null AccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-accesstoken Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-buildspec Default: null BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null IAMServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-iamservicerole Default: null Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: AutoBranchCreationConfig: EnableAutoBranchCreation: !Ref 'AutoBranchCreationConfigEnableAutoBranchCreation' PullRequestEnvironmentName: !Ref 'AutoBranchCreationConfigPullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'AutoBranchCreationConfigEnablePullRequestPreview' EnableAutoBuild: !Ref 'AutoBranchCreationConfigEnableAutoBuild' BuildSpec: !Ref 'AutoBranchCreationConfigBuildSpec' Stage: !Ref 'AutoBranchCreationConfigStage' BasicAuthConfig: Username: !Ref 'AutoBranchCreationConfigBasicAuthConfigUsername' EnableBasicAuth: !Ref 'AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth' Password: !Ref 'AutoBranchCreationConfigBasicAuthConfigPassword' OauthToken: !Ref 'OauthToken' Description: !Ref 'Description' EnableBranchAutoDeletion: !Ref 'EnableBranchAutoDeletion' Name: !Ref 'Name' Repository: !Ref 'Repository' AccessToken: !Ref 'AccessToken' BuildSpec: !Ref 'BuildSpec' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' IAMServiceRole: !Ref 'IAMServiceRole' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-App/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: AutoBranchCreationConfigEnableAutoBranchCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobranchcreation AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigPullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-pullrequestenvironmentname Default: null AutoBranchCreationConfigEnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigEnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-enableautobuild AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-buildspec Default: null AutoBranchCreationConfigStage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-autobranchcreationconfig.html#cfn-amplify-app-autobranchcreationconfig-stage Default: null AutoBranchCreationConfigBasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null AutoBranchCreationConfigBasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null OauthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-oauthtoken Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-description Default: null EnableBranchAutoDeletion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-enablebranchautodeletion AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Repository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-repository Default: null AccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-accesstoken Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-buildspec Default: null BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-username Default: null BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-basicauthconfig.html#cfn-amplify-app-basicauthconfig-password Default: null IAMServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-iamservicerole Default: null Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: AutoBranchCreationConfig: EnableAutoBranchCreation: !Ref 'AutoBranchCreationConfigEnableAutoBranchCreation' PullRequestEnvironmentName: !Ref 'AutoBranchCreationConfigPullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'AutoBranchCreationConfigEnablePullRequestPreview' EnableAutoBuild: !Ref 'AutoBranchCreationConfigEnableAutoBuild' BuildSpec: !Ref 'AutoBranchCreationConfigBuildSpec' Stage: !Ref 'AutoBranchCreationConfigStage' BasicAuthConfig: Username: !Ref 'AutoBranchCreationConfigBasicAuthConfigUsername' EnableBasicAuth: !Ref 'AutoBranchCreationConfigBasicAuthConfigEnableBasicAuth' Password: !Ref 'AutoBranchCreationConfigBasicAuthConfigPassword' OauthToken: !Ref 'OauthToken' Description: !Ref 'Description' EnableBranchAutoDeletion: !Ref 'EnableBranchAutoDeletion' Name: !Ref 'Name' Repository: !Ref 'Repository' AccessToken: !Ref 'AccessToken' BuildSpec: !Ref 'BuildSpec' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' IAMServiceRole: !Ref 'IAMServiceRole' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Branch/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-description Default: null AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid PullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-pullrequestenvironmentname Default: null EnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null EnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enableautobuild AllowedValues: - 'true' - 'false' Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-buildspec Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-stage Default: null BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-username BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-password Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: Description: !Ref 'Description' AppId: !Ref 'AppId' PullRequestEnvironmentName: !Ref 'PullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'EnablePullRequestPreview' EnableAutoBuild: !Ref 'EnableAutoBuild' BuildSpec: !Ref 'BuildSpec' Stage: !Ref 'Stage' BranchName: !Ref 'BranchName' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Branch/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-description Default: null AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid PullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-pullrequestenvironmentname Default: null EnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null EnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enableautobuild AllowedValues: - 'true' - 'false' Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-buildspec Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-stage Default: null BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-username BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-password Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: Description: !Ref 'Description' AppId: !Ref 'AppId' PullRequestEnvironmentName: !Ref 'PullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'EnablePullRequestPreview' EnableAutoBuild: !Ref 'EnableAutoBuild' BuildSpec: !Ref 'BuildSpec' Stage: !Ref 'Stage' BranchName: !Ref 'BranchName' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Branch/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-description Default: null AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid PullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-pullrequestenvironmentname Default: null EnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null EnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enableautobuild AllowedValues: - 'true' - 'false' Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-buildspec Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-stage Default: null BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-username BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-password Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: Description: !Ref 'Description' AppId: !Ref 'AppId' PullRequestEnvironmentName: !Ref 'PullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'EnablePullRequestPreview' EnableAutoBuild: !Ref 'EnableAutoBuild' BuildSpec: !Ref 'BuildSpec' Stage: !Ref 'Stage' BranchName: !Ref 'BranchName' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Branch/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-description Default: null AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid PullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-pullrequestenvironmentname Default: null EnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null EnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enableautobuild AllowedValues: - 'true' - 'false' Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-buildspec Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-stage Default: null BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-username BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-password Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: Description: !Ref 'Description' AppId: !Ref 'AppId' PullRequestEnvironmentName: !Ref 'PullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'EnablePullRequestPreview' EnableAutoBuild: !Ref 'EnableAutoBuild' BuildSpec: !Ref 'BuildSpec' Stage: !Ref 'Stage' BranchName: !Ref 'BranchName' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Branch/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-description Default: null AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid PullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-pullrequestenvironmentname Default: null EnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null EnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enableautobuild AllowedValues: - 'true' - 'false' Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-buildspec Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-stage Default: null BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-username BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-password Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: Description: !Ref 'Description' AppId: !Ref 'AppId' PullRequestEnvironmentName: !Ref 'PullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'EnablePullRequestPreview' EnableAutoBuild: !Ref 'EnableAutoBuild' BuildSpec: !Ref 'BuildSpec' Stage: !Ref 'Stage' BranchName: !Ref 'BranchName' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Branch/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-description Default: null AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid PullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-pullrequestenvironmentname Default: null EnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null EnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enableautobuild AllowedValues: - 'true' - 'false' Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-buildspec Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-stage Default: null BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-username BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-password Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: Description: !Ref 'Description' AppId: !Ref 'AppId' PullRequestEnvironmentName: !Ref 'PullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'EnablePullRequestPreview' EnableAutoBuild: !Ref 'EnableAutoBuild' BuildSpec: !Ref 'BuildSpec' Stage: !Ref 'Stage' BranchName: !Ref 'BranchName' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Branch/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-description Default: null AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid PullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-pullrequestenvironmentname Default: null EnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null EnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enableautobuild AllowedValues: - 'true' - 'false' Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-buildspec Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-stage Default: null BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-username BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-password Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: Description: !Ref 'Description' AppId: !Ref 'AppId' PullRequestEnvironmentName: !Ref 'PullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'EnablePullRequestPreview' EnableAutoBuild: !Ref 'EnableAutoBuild' BuildSpec: !Ref 'BuildSpec' Stage: !Ref 'Stage' BranchName: !Ref 'BranchName' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Branch/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-description Default: null AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid PullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-pullrequestenvironmentname Default: null EnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null EnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enableautobuild AllowedValues: - 'true' - 'false' Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-buildspec Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-stage Default: null BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-username BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-password Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: Description: !Ref 'Description' AppId: !Ref 'AppId' PullRequestEnvironmentName: !Ref 'PullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'EnablePullRequestPreview' EnableAutoBuild: !Ref 'EnableAutoBuild' BuildSpec: !Ref 'BuildSpec' Stage: !Ref 'Stage' BranchName: !Ref 'BranchName' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Branch/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-description Default: null AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid PullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-pullrequestenvironmentname Default: null EnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null EnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enableautobuild AllowedValues: - 'true' - 'false' Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-buildspec Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-stage Default: null BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-username BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-password Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: Description: !Ref 'Description' AppId: !Ref 'AppId' PullRequestEnvironmentName: !Ref 'PullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'EnablePullRequestPreview' EnableAutoBuild: !Ref 'EnableAutoBuild' BuildSpec: !Ref 'BuildSpec' Stage: !Ref 'Stage' BranchName: !Ref 'BranchName' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Branch/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-description Default: null AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid PullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-pullrequestenvironmentname Default: null EnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null EnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enableautobuild AllowedValues: - 'true' - 'false' Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-buildspec Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-stage Default: null BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-username BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-password Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: Description: !Ref 'Description' AppId: !Ref 'AppId' PullRequestEnvironmentName: !Ref 'PullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'EnablePullRequestPreview' EnableAutoBuild: !Ref 'EnableAutoBuild' BuildSpec: !Ref 'BuildSpec' Stage: !Ref 'Stage' BranchName: !Ref 'BranchName' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Branch/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-description Default: null AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid PullRequestEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-pullrequestenvironmentname Default: null EnablePullRequestPreview: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enablepullrequestpreview AllowedValues: - 'true' - 'false' Default: null EnableAutoBuild: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-enableautobuild AllowedValues: - 'true' - 'false' Default: null BuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-buildspec Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-stage Default: null BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname BasicAuthConfigUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-username BasicAuthConfigEnableBasicAuth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-enablebasicauth AllowedValues: - 'true' - 'false' Default: null BasicAuthConfigPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html#cfn-amplify-branch-basicauthconfig-password Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: Description: !Ref 'Description' AppId: !Ref 'AppId' PullRequestEnvironmentName: !Ref 'PullRequestEnvironmentName' EnablePullRequestPreview: !Ref 'EnablePullRequestPreview' EnableAutoBuild: !Ref 'EnableAutoBuild' BuildSpec: !Ref 'BuildSpec' Stage: !Ref 'Stage' BranchName: !Ref 'BranchName' BasicAuthConfig: Username: !Ref 'BasicAuthConfigUsername' EnableBasicAuth: !Ref 'BasicAuthConfigEnableBasicAuth' Password: !Ref 'BasicAuthConfigPassword' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Domain/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid AutoSubDomainIAMRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-autosubdomainiamrole Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname EnableAutoSubDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-enableautosubdomain AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' AutoSubDomainIAMRole: !Ref 'AutoSubDomainIAMRole' DomainName: !Ref 'DomainName' EnableAutoSubDomain: !Ref 'EnableAutoSubDomain' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Domain/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid AutoSubDomainIAMRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-autosubdomainiamrole Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname EnableAutoSubDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-enableautosubdomain AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' AutoSubDomainIAMRole: !Ref 'AutoSubDomainIAMRole' DomainName: !Ref 'DomainName' EnableAutoSubDomain: !Ref 'EnableAutoSubDomain' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Domain/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid AutoSubDomainIAMRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-autosubdomainiamrole Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname EnableAutoSubDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-enableautosubdomain AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' AutoSubDomainIAMRole: !Ref 'AutoSubDomainIAMRole' DomainName: !Ref 'DomainName' EnableAutoSubDomain: !Ref 'EnableAutoSubDomain' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Domain/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid AutoSubDomainIAMRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-autosubdomainiamrole Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname EnableAutoSubDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-enableautosubdomain AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' AutoSubDomainIAMRole: !Ref 'AutoSubDomainIAMRole' DomainName: !Ref 'DomainName' EnableAutoSubDomain: !Ref 'EnableAutoSubDomain' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Domain/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid AutoSubDomainIAMRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-autosubdomainiamrole Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname EnableAutoSubDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-enableautosubdomain AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' AutoSubDomainIAMRole: !Ref 'AutoSubDomainIAMRole' DomainName: !Ref 'DomainName' EnableAutoSubDomain: !Ref 'EnableAutoSubDomain' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Domain/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid AutoSubDomainIAMRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-autosubdomainiamrole Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname EnableAutoSubDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-enableautosubdomain AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' AutoSubDomainIAMRole: !Ref 'AutoSubDomainIAMRole' DomainName: !Ref 'DomainName' EnableAutoSubDomain: !Ref 'EnableAutoSubDomain' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Domain/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid AutoSubDomainIAMRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-autosubdomainiamrole Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname EnableAutoSubDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-enableautosubdomain AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' AutoSubDomainIAMRole: !Ref 'AutoSubDomainIAMRole' DomainName: !Ref 'DomainName' EnableAutoSubDomain: !Ref 'EnableAutoSubDomain' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Domain/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid AutoSubDomainIAMRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-autosubdomainiamrole Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname EnableAutoSubDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-enableautosubdomain AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' AutoSubDomainIAMRole: !Ref 'AutoSubDomainIAMRole' DomainName: !Ref 'DomainName' EnableAutoSubDomain: !Ref 'EnableAutoSubDomain' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Domain/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid AutoSubDomainIAMRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-autosubdomainiamrole Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname EnableAutoSubDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-enableautosubdomain AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' AutoSubDomainIAMRole: !Ref 'AutoSubDomainIAMRole' DomainName: !Ref 'DomainName' EnableAutoSubDomain: !Ref 'EnableAutoSubDomain' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Domain/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid AutoSubDomainIAMRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-autosubdomainiamrole Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname EnableAutoSubDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-enableautosubdomain AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' AutoSubDomainIAMRole: !Ref 'AutoSubDomainIAMRole' DomainName: !Ref 'DomainName' EnableAutoSubDomain: !Ref 'EnableAutoSubDomain' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Amplify-Domain/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid AutoSubDomainIAMRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-autosubdomainiamrole Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname EnableAutoSubDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-enableautosubdomain AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' AutoSubDomainIAMRole: !Ref 'AutoSubDomainIAMRole' DomainName: !Ref 'DomainName' EnableAutoSubDomain: !Ref 'EnableAutoSubDomain' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Account/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Parameters: CloudWatchRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn Default: null Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Properties: CloudWatchRoleArn: !Ref 'CloudWatchRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ApiKey/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Parameters: CustomerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled AllowedValues: - 'true' - 'false' Default: null GenerateDistinctId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-value Default: null Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Properties: CustomerId: !Ref 'CustomerId' Description: !Ref 'Description' Enabled: !Ref 'Enabled' GenerateDistinctId: !Ref 'GenerateDistinctId' Name: !Ref 'Name' Value: !Ref 'Value' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Authorizer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype Default: null AuthorizerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri Default: null IdentitySource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource Default: null IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: AuthType: !Ref 'AuthType' AuthorizerCredentials: !Ref 'AuthorizerCredentials' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' AuthorizerUri: !Ref 'AuthorizerUri' IdentitySource: !Ref 'IdentitySource' IdentityValidationExpression: !Ref 'IdentityValidationExpression' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid Default: null Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage Default: null Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: BasePath: !Ref 'BasePath' DomainName: !Ref 'DomainName' RestApiId: !Ref 'RestApiId' Stage: !Ref 'Stage' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description Default: null Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Deployment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: DeploymentCanarySettingsPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-percenttraffic Default: null DeploymentCanarySettingsUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html#cfn-apigateway-deployment-deploymentcanarysettings-usestagecache AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid StageDescriptionAccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-destinationarn Default: null StageDescriptionAccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html#cfn-apigateway-deployment-accesslogsetting-format Default: null StageDescriptionCacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize Default: null StageDescriptionCacheDataEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted AllowedValues: - 'true' - 'false' Default: null StageDescriptionCacheTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds Default: null StageDescriptionCachingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionCanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-percenttraffic Default: null StageDescriptionCanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html#cfn-apigateway-deployment-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null StageDescriptionClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid Default: null StageDescriptionDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description Default: null StageDescriptionDocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion Default: null StageDescriptionLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel Default: null StageDescriptionMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled AllowedValues: - 'true' - 'false' Default: null StageDescriptionThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit Default: null StageDescriptionThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit Default: null StageDescriptionTracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-tracingenabled AllowedValues: - 'true' - 'false' Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename Default: null Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: DeploymentCanarySettings: PercentTraffic: !Ref 'DeploymentCanarySettingsPercentTraffic' UseStageCache: !Ref 'DeploymentCanarySettingsUseStageCache' Description: !Ref 'Description' RestApiId: !Ref 'RestApiId' StageDescription: AccessLogSetting: DestinationArn: !Ref 'StageDescriptionAccessLogSettingDestinationArn' Format: !Ref 'StageDescriptionAccessLogSettingFormat' CacheClusterEnabled: !Ref 'StageDescriptionCacheClusterEnabled' CacheClusterSize: !Ref 'StageDescriptionCacheClusterSize' CacheDataEncrypted: !Ref 'StageDescriptionCacheDataEncrypted' CacheTtlInSeconds: !Ref 'StageDescriptionCacheTtlInSeconds' CachingEnabled: !Ref 'StageDescriptionCachingEnabled' CanarySetting: PercentTraffic: !Ref 'StageDescriptionCanarySettingPercentTraffic' UseStageCache: !Ref 'StageDescriptionCanarySettingUseStageCache' ClientCertificateId: !Ref 'StageDescriptionClientCertificateId' DataTraceEnabled: !Ref 'StageDescriptionDataTraceEnabled' Description: !Ref 'StageDescriptionDescription' DocumentationVersion: !Ref 'StageDescriptionDocumentationVersion' LoggingLevel: !Ref 'StageDescriptionLoggingLevel' MetricsEnabled: !Ref 'StageDescriptionMetricsEnabled' ThrottlingBurstLimit: !Ref 'StageDescriptionThrottlingBurstLimit' ThrottlingRateLimit: !Ref 'StageDescriptionThrottlingRateLimit' TracingEnabled: !Ref 'StageDescriptionTracingEnabled' StageName: !Ref 'StageName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: LocationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method Default: null LocationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name Default: null LocationPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path Default: null LocationStatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode Default: null LocationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type Default: null Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: Method: !Ref 'LocationMethod' Name: !Ref 'LocationName' Path: !Ref 'LocationPath' StatusCode: !Ref 'LocationStatusCode' Type: !Ref 'LocationType' Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-DomainName/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname RegionalCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn Default: null SecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-securitypolicy Default: null Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: CertificateArn: !Ref 'CertificateArn' DomainName: !Ref 'DomainName' EndpointConfiguration: {} RegionalCertificateArn: !Ref 'RegionalCertificateArn' SecurityPolicy: !Ref 'SecurityPolicy' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid StatusCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode Default: null Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' StatusCode: !Ref 'StatusCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Method/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired AllowedValues: - 'true' - 'false' Default: null AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid Default: null HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod IntegrationCacheNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace Default: null IntegrationConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectionid Default: null IntegrationConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-connectiontype Default: null IntegrationContentHandling: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling Default: null IntegrationCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials Default: null IntegrationIntegrationHttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod Default: null IntegrationPassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior Default: null IntegrationTimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis Default: null IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname Default: null RequestValidatorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: ApiKeyRequired: !Ref 'ApiKeyRequired' AuthorizationType: !Ref 'AuthorizationType' AuthorizerId: !Ref 'AuthorizerId' HttpMethod: !Ref 'HttpMethod' Integration: CacheNamespace: !Ref 'IntegrationCacheNamespace' ConnectionId: !Ref 'IntegrationConnectionId' ConnectionType: !Ref 'IntegrationConnectionType' ContentHandling: !Ref 'IntegrationContentHandling' Credentials: !Ref 'IntegrationCredentials' IntegrationHttpMethod: !Ref 'IntegrationIntegrationHttpMethod' PassthroughBehavior: !Ref 'IntegrationPassthroughBehavior' TimeoutInMillis: !Ref 'IntegrationTimeoutInMillis' Type: !Ref 'IntegrationType' Uri: !Ref 'IntegrationUri' OperationName: !Ref 'OperationName' RequestValidatorId: !Ref 'RequestValidatorId' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Model/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema Default: null Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: ContentType: !Ref 'ContentType' Description: !Ref 'Description' Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' Schema: !Ref 'Schema' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RequestValidator/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid ValidateRequestBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody AllowedValues: - 'true' - 'false' Default: null ValidateRequestParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: Name: !Ref 'Name' RestApiId: !Ref 'RestApiId' ValidateRequestBody: !Ref 'ValidateRequestBody' ValidateRequestParameters: !Ref 'ValidateRequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Resource/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-RestApi/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Parameters: ApiKeySourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-apikeysourcetype Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket Default: null S3LocationETag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key Default: null S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version Default: null CloneFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings AllowedValues: - 'true' - 'false' Default: null MinimumCompressionSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-minimumcompressionsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-policy Default: null Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Properties: ApiKeySourceType: !Ref 'ApiKeySourceType' Body: !Ref 'Body' BodyS3Location: Bucket: !Ref 'S3LocationBucket' ETag: !Ref 'S3LocationETag' Key: !Ref 'S3LocationKey' Version: !Ref 'S3LocationVersion' CloneFrom: !Ref 'CloneFrom' Description: !Ref 'Description' EndpointConfiguration: {} FailOnWarnings: !Ref 'FailOnWarnings' MinimumCompressionSize: !Ref 'MinimumCompressionSize' Name: !Ref 'Name' Policy: !Ref 'Policy' Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-Stage/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: AccessLogSettingDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-destinationarn Default: null AccessLogSettingFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-accesslogsetting.html#cfn-apigateway-stage-accesslogsetting-format Default: null CacheClusterEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled AllowedValues: - 'true' - 'false' Default: null CacheClusterSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize Default: null CanarySettingDeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-deploymentid Default: null CanarySettingPercentTraffic: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-percenttraffic Default: null CanarySettingUseStageCache: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-stage-canarysetting.html#cfn-apigateway-stage-canarysetting-usestagecache AllowedValues: - 'true' - 'false' Default: null ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description Default: null DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion Default: null RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename Default: null TracingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-tracingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: AccessLogSetting: DestinationArn: !Ref 'AccessLogSettingDestinationArn' Format: !Ref 'AccessLogSettingFormat' CacheClusterEnabled: !Ref 'CacheClusterEnabled' CacheClusterSize: !Ref 'CacheClusterSize' CanarySetting: DeploymentId: !Ref 'CanarySettingDeploymentId' PercentTraffic: !Ref 'CanarySettingPercentTraffic' UseStageCache: !Ref 'CanarySettingUseStageCache' ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' StageName: !Ref 'StageName' TracingEnabled: !Ref 'TracingEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlan/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description Default: null QuotaSettingsLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit Default: null QuotaSettingsOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset Default: null QuotaSettingsPeriod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period Default: null ThrottleSettingsBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit Default: null ThrottleSettingsRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit Default: null UsagePlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname Default: null Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Properties: Description: !Ref 'Description' Quota: Limit: !Ref 'QuotaSettingsLimit' Offset: !Ref 'QuotaSettingsOffset' Period: !Ref 'QuotaSettingsPeriod' Throttle: BurstLimit: !Ref 'ThrottleSettingsBurstLimit' RateLimit: !Ref 'ThrottleSettingsRateLimit' UsagePlanName: !Ref 'UsagePlanName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGateway-VpcLink/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Api/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Parameters: RouteSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routeselectionexpression Default: null BodyS3LocationEtag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-etag Default: null BodyS3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-bucket Default: null BodyS3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-version Default: null BodyS3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-bodys3location.html#cfn-apigatewayv2-api-bodys3location-key Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-description Default: null BasePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-basepath Default: null FailOnWarnings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-failonwarnings AllowedValues: - 'true' - 'false' Default: null DisableSchemaValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-disableschemavalidation AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-name Default: null Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-target Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-credentialsarn Default: null CorsAllowCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-allowcredentials AllowedValues: - 'true' - 'false' Default: null CorsMaxAge: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-api-cors.html#cfn-apigatewayv2-api-cors-maxage Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-version Default: null ProtocolType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-protocoltype Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-routekey Default: null Body: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-body Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-tags Default: null ApiKeySelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-apikeyselectionexpression Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Properties: RouteSelectionExpression: !Ref 'RouteSelectionExpression' BodyS3Location: Etag: !Ref 'BodyS3LocationEtag' Bucket: !Ref 'BodyS3LocationBucket' Version: !Ref 'BodyS3LocationVersion' Key: !Ref 'BodyS3LocationKey' Description: !Ref 'Description' BasePath: !Ref 'BasePath' FailOnWarnings: !Ref 'FailOnWarnings' DisableSchemaValidation: !Ref 'DisableSchemaValidation' Name: !Ref 'Name' Target: !Ref 'Target' CredentialsArn: !Ref 'CredentialsArn' CorsConfiguration: AllowCredentials: !Ref 'CorsAllowCredentials' MaxAge: !Ref 'CorsMaxAge' Version: !Ref 'Version' ProtocolType: !Ref 'ProtocolType' RouteKey: !Ref 'RouteKey' Body: !Ref 'Body' Tags: !Ref 'Tags' ApiKeySelectionExpression: !Ref 'ApiKeySelectionExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiMappingKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiMappingKey: !Ref 'ApiMappingKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: IdentityValidationExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-identityvalidationexpression Default: null AuthorizerUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizeruri Default: null AuthorizerCredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizercredentialsarn Default: null AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype JWTConfigurationIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-authorizer-jwtconfiguration.html#cfn-apigatewayv2-authorizer-jwtconfiguration-issuer Default: null AuthorizerResultTtlInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizerresultttlinseconds Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: IdentityValidationExpression: !Ref 'IdentityValidationExpression' AuthorizerUri: !Ref 'AuthorizerUri' AuthorizerCredentialsArn: !Ref 'AuthorizerCredentialsArn' AuthorizerType: !Ref 'AuthorizerType' JwtConfiguration: Issuer: !Ref 'JWTConfigurationIssuer' AuthorizerResultTtlInSeconds: !Ref 'AuthorizerResultTtlInSeconds' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: Description: !Ref 'Description' StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Tags: !Ref 'Tags' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Integration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-description Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-templateselectionexpression Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectiontype Default: null IntegrationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationmethod Default: null PassthroughBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-passthroughbehavior Default: null RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requestparameters Default: null ConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-connectionid Default: null IntegrationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationuri Default: null PayloadFormatVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-payloadformatversion Default: null CredentialsArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn Default: null RequestTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-requesttemplates Default: null TimeoutInMillis: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-timeoutinmillis Default: null TlsConfigServerNameToVerify: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-contenthandlingstrategy Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: Description: !Ref 'Description' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ConnectionType: !Ref 'ConnectionType' IntegrationMethod: !Ref 'IntegrationMethod' PassthroughBehavior: !Ref 'PassthroughBehavior' RequestParameters: !Ref 'RequestParameters' ConnectionId: !Ref 'ConnectionId' IntegrationUri: !Ref 'IntegrationUri' PayloadFormatVersion: !Ref 'PayloadFormatVersion' CredentialsArn: !Ref 'CredentialsArn' RequestTemplates: !Ref 'RequestTemplates' TimeoutInMillis: !Ref 'TimeoutInMillis' TlsConfig: ServerNameToVerify: !Ref 'TlsConfigServerNameToVerify' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: ResponseTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responsetemplates Default: null TemplateSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-templateselectionexpression Default: null ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-responseparameters Default: null ContentHandlingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-contenthandlingstrategy Default: null IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: ResponseTemplates: !Ref 'ResponseTemplates' TemplateSelectionExpression: !Ref 'TemplateSelectionExpression' ResponseParameters: !Ref 'ResponseParameters' ContentHandlingStrategy: !Ref 'ContentHandlingStrategy' IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Model/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-contenttype Default: null Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Description: !Ref 'Description' ContentType: !Ref 'ContentType' Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Route/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: Target: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-target Default: null RouteResponseSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routeresponseselectionexpression Default: null AuthorizerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizerid Default: null RequestModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestmodels Default: null OperationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-operationname Default: null ApiKeyRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apikeyrequired AllowedValues: - 'true' - 'false' Default: null RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey AuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-authorizationtype Default: null ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid RequestParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-requestparameters Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: Target: !Ref 'Target' RouteResponseSelectionExpression: !Ref 'RouteResponseSelectionExpression' AuthorizerId: !Ref 'AuthorizerId' RequestModels: !Ref 'RequestModels' OperationName: !Ref 'OperationName' ApiKeyRequired: !Ref 'ApiKeyRequired' RouteKey: !Ref 'RouteKey' AuthorizationType: !Ref 'AuthorizationType' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' RequestParameters: !Ref 'RequestParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey ResponseParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responseparameters Default: null RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ModelSelectionExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-modelselectionexpression Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid ResponseModels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-responsemodels Default: null Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' ResponseParameters: !Ref 'ResponseParameters' RouteId: !Ref 'RouteId' ModelSelectionExpression: !Ref 'ModelSelectionExpression' ApiId: !Ref 'ApiId' ResponseModels: !Ref 'ResponseModels' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApiGatewayV2-Stage/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: ClientCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid Default: null DeploymentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description Default: null AccessLogSettingsFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-format Default: null AccessLogSettingsDestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html#cfn-apigatewayv2-stage-accesslogsettings-destinationarn Default: null AutoDeploy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy AllowedValues: - 'true' - 'false' Default: null RouteSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings Default: null StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename StageVariables: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid RouteSettingsLoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-logginglevel Default: null RouteSettingsDataTraceEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-datatraceenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingBurstLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingburstlimit Default: null RouteSettingsDetailedMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-detailedmetricsenabled AllowedValues: - 'true' - 'false' Default: null RouteSettingsThrottlingRateLimit: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html#cfn-apigatewayv2-stage-routesettings-throttlingratelimit Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags Default: null Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: ClientCertificateId: !Ref 'ClientCertificateId' DeploymentId: !Ref 'DeploymentId' Description: !Ref 'Description' AccessLogSettings: Format: !Ref 'AccessLogSettingsFormat' DestinationArn: !Ref 'AccessLogSettingsDestinationArn' AutoDeploy: !Ref 'AutoDeploy' RouteSettings: !Ref 'RouteSettings' StageName: !Ref 'StageName' StageVariables: !Ref 'StageVariables' ApiId: !Ref 'ApiId' DefaultRouteSettings: LoggingLevel: !Ref 'RouteSettingsLoggingLevel' DataTraceEnabled: !Ref 'RouteSettingsDataTraceEnabled' ThrottlingBurstLimit: !Ref 'RouteSettingsThrottlingBurstLimit' DetailedMetricsEnabled: !Ref 'RouteSettingsDetailedMetricsEnabled' ThrottlingRateLimit: !Ref 'RouteSettingsThrottlingRateLimit' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-Application/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-name Resources: Resource: Type: AWS::AppConfig::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-Application/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-name Resources: Resource: Type: AWS::AppConfig::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-Application/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-name Resources: Resource: Type: AWS::AppConfig::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-ConfigurationProfile/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html Parameters: LocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-locationuri Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-description Default: null RetrievalRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-retrievalrolearn Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-name Resources: Resource: Type: AWS::AppConfig::ConfigurationProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html Properties: LocationUri: !Ref 'LocationUri' Description: !Ref 'Description' RetrievalRoleArn: !Ref 'RetrievalRoleArn' ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-ConfigurationProfile/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html Parameters: LocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-locationuri Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-description Default: null RetrievalRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-retrievalrolearn Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-name Resources: Resource: Type: AWS::AppConfig::ConfigurationProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html Properties: LocationUri: !Ref 'LocationUri' Description: !Ref 'Description' RetrievalRoleArn: !Ref 'RetrievalRoleArn' ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-ConfigurationProfile/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html Parameters: LocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-locationuri Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-description Default: null RetrievalRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-retrievalrolearn Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-name Resources: Resource: Type: AWS::AppConfig::ConfigurationProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html Properties: LocationUri: !Ref 'LocationUri' Description: !Ref 'Description' RetrievalRoleArn: !Ref 'RetrievalRoleArn' ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-Deployment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html Parameters: DeploymentStrategyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-deploymentstrategyid ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-configurationprofileid EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-environmentid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-description Default: null ConfigurationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-configurationversion ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-applicationid Resources: Resource: Type: AWS::AppConfig::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html Properties: DeploymentStrategyId: !Ref 'DeploymentStrategyId' ConfigurationProfileId: !Ref 'ConfigurationProfileId' EnvironmentId: !Ref 'EnvironmentId' Description: !Ref 'Description' ConfigurationVersion: !Ref 'ConfigurationVersion' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-Deployment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html Parameters: DeploymentStrategyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-deploymentstrategyid ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-configurationprofileid EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-environmentid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-description Default: null ConfigurationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-configurationversion ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-applicationid Resources: Resource: Type: AWS::AppConfig::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html Properties: DeploymentStrategyId: !Ref 'DeploymentStrategyId' ConfigurationProfileId: !Ref 'ConfigurationProfileId' EnvironmentId: !Ref 'EnvironmentId' Description: !Ref 'Description' ConfigurationVersion: !Ref 'ConfigurationVersion' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-Deployment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html Parameters: DeploymentStrategyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-deploymentstrategyid ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-configurationprofileid EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-environmentid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-description Default: null ConfigurationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-configurationversion ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-applicationid Resources: Resource: Type: AWS::AppConfig::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html Properties: DeploymentStrategyId: !Ref 'DeploymentStrategyId' ConfigurationProfileId: !Ref 'ConfigurationProfileId' EnvironmentId: !Ref 'EnvironmentId' Description: !Ref 'Description' ConfigurationVersion: !Ref 'ConfigurationVersion' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-DeploymentStrategy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html Parameters: ReplicateTo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-replicateto GrowthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-growthtype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-description Default: null DeploymentDurationInMinutes: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-deploymentdurationinminutes GrowthFactor: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-growthfactor FinalBakeTimeInMinutes: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-finalbaketimeinminutes Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-name Resources: Resource: Type: AWS::AppConfig::DeploymentStrategy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html Properties: ReplicateTo: !Ref 'ReplicateTo' GrowthType: !Ref 'GrowthType' Description: !Ref 'Description' DeploymentDurationInMinutes: !Ref 'DeploymentDurationInMinutes' GrowthFactor: !Ref 'GrowthFactor' FinalBakeTimeInMinutes: !Ref 'FinalBakeTimeInMinutes' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-DeploymentStrategy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html Parameters: ReplicateTo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-replicateto GrowthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-growthtype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-description Default: null DeploymentDurationInMinutes: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-deploymentdurationinminutes GrowthFactor: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-growthfactor FinalBakeTimeInMinutes: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-finalbaketimeinminutes Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-name Resources: Resource: Type: AWS::AppConfig::DeploymentStrategy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html Properties: ReplicateTo: !Ref 'ReplicateTo' GrowthType: !Ref 'GrowthType' Description: !Ref 'Description' DeploymentDurationInMinutes: !Ref 'DeploymentDurationInMinutes' GrowthFactor: !Ref 'GrowthFactor' FinalBakeTimeInMinutes: !Ref 'FinalBakeTimeInMinutes' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-DeploymentStrategy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html Parameters: ReplicateTo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-replicateto GrowthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-growthtype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-description Default: null DeploymentDurationInMinutes: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-deploymentdurationinminutes GrowthFactor: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-growthfactor FinalBakeTimeInMinutes: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-finalbaketimeinminutes Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-name Resources: Resource: Type: AWS::AppConfig::DeploymentStrategy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html Properties: ReplicateTo: !Ref 'ReplicateTo' GrowthType: !Ref 'GrowthType' Description: !Ref 'Description' DeploymentDurationInMinutes: !Ref 'DeploymentDurationInMinutes' GrowthFactor: !Ref 'GrowthFactor' FinalBakeTimeInMinutes: !Ref 'FinalBakeTimeInMinutes' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-Environment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-description Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-name Resources: Resource: Type: AWS::AppConfig::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html Properties: Description: !Ref 'Description' ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-Environment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-description Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-name Resources: Resource: Type: AWS::AppConfig::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html Properties: Description: !Ref 'Description' ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-Environment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-description Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-name Resources: Resource: Type: AWS::AppConfig::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html Properties: Description: !Ref 'Description' ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description Default: null ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype LatestVersionNumber: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-latestversionnumber Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' Description: !Ref 'Description' ContentType: !Ref 'ContentType' LatestVersionNumber: !Ref 'LatestVersionNumber' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Mesh/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname MeshSpecEgressFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Spec: EgressFilter: Type: !Ref 'MeshSpecEgressFilterType' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Mesh/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname MeshSpecEgressFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Spec: EgressFilter: Type: !Ref 'MeshSpecEgressFilterType' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Mesh/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname MeshSpecEgressFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Spec: EgressFilter: Type: !Ref 'MeshSpecEgressFilterType' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Mesh/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname MeshSpecEgressFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Spec: EgressFilter: Type: !Ref 'MeshSpecEgressFilterType' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Mesh/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname MeshSpecEgressFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Spec: EgressFilter: Type: !Ref 'MeshSpecEgressFilterType' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Mesh/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname MeshSpecEgressFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Spec: EgressFilter: Type: !Ref 'MeshSpecEgressFilterType' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Mesh/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname MeshSpecEgressFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Spec: EgressFilter: Type: !Ref 'MeshSpecEgressFilterType' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Mesh/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname MeshSpecEgressFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Spec: EgressFilter: Type: !Ref 'MeshSpecEgressFilterType' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Mesh/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname MeshSpecEgressFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Spec: EgressFilter: Type: !Ref 'MeshSpecEgressFilterType' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Mesh/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname MeshSpecEgressFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Spec: EgressFilter: Type: !Ref 'MeshSpecEgressFilterType' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Mesh/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname MeshSpecEgressFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Spec: EgressFilter: Type: !Ref 'MeshSpecEgressFilterType' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Mesh/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname MeshSpecEgressFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Spec: EgressFilter: Type: !Ref 'MeshSpecEgressFilterType' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Mesh/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname MeshSpecEgressFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Spec: EgressFilter: Type: !Ref 'MeshSpecEgressFilterType' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Route/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshowner Default: null RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename RouteSpecHttpRouteHttpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httpretrypolicy.html#cfn-appmesh-route-httpretrypolicy-maxretries RouteSpecHttpRouteHttpRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRouteMatchScheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-scheme Default: null RouteSpecHttpRouteHttpRouteMatchPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-prefix RouteSpecHttpRouteHttpRouteMatchMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-method Default: null RouteSpecPriority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-routespec.html#cfn-appmesh-route-routespec-priority Default: null RouteSpecGrpcRouteGrpcTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcretrypolicy.html#cfn-appmesh-route-grpcretrypolicy-maxretries RouteSpecGrpcRouteGrpcRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRouteMatchServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-servicename Default: null RouteSpecGrpcRouteGrpcRouteMatchMethodName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-methodname Default: null RouteSpecTcpRouteTcpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecTcpRouteTcpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' RouteName: !Ref 'RouteName' Spec: HttpRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' Priority: !Ref 'RouteSpecPriority' Http2Route: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' GrpcRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit' Match: ServiceName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchServiceName' MethodName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchMethodName' TcpRoute: Action: {} Timeout: Idle: Value: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationValue' Unit: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationUnit' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Route/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshowner Default: null RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename RouteSpecHttpRouteHttpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httpretrypolicy.html#cfn-appmesh-route-httpretrypolicy-maxretries RouteSpecHttpRouteHttpRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRouteMatchScheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-scheme Default: null RouteSpecHttpRouteHttpRouteMatchPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-prefix RouteSpecHttpRouteHttpRouteMatchMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-method Default: null RouteSpecPriority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-routespec.html#cfn-appmesh-route-routespec-priority Default: null RouteSpecGrpcRouteGrpcTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcretrypolicy.html#cfn-appmesh-route-grpcretrypolicy-maxretries RouteSpecGrpcRouteGrpcRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRouteMatchServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-servicename Default: null RouteSpecGrpcRouteGrpcRouteMatchMethodName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-methodname Default: null RouteSpecTcpRouteTcpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecTcpRouteTcpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' RouteName: !Ref 'RouteName' Spec: HttpRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' Priority: !Ref 'RouteSpecPriority' Http2Route: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' GrpcRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit' Match: ServiceName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchServiceName' MethodName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchMethodName' TcpRoute: Action: {} Timeout: Idle: Value: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationValue' Unit: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationUnit' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Route/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshowner Default: null RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename RouteSpecHttpRouteHttpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httpretrypolicy.html#cfn-appmesh-route-httpretrypolicy-maxretries RouteSpecHttpRouteHttpRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRouteMatchScheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-scheme Default: null RouteSpecHttpRouteHttpRouteMatchPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-prefix RouteSpecHttpRouteHttpRouteMatchMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-method Default: null RouteSpecPriority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-routespec.html#cfn-appmesh-route-routespec-priority Default: null RouteSpecGrpcRouteGrpcTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcretrypolicy.html#cfn-appmesh-route-grpcretrypolicy-maxretries RouteSpecGrpcRouteGrpcRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRouteMatchServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-servicename Default: null RouteSpecGrpcRouteGrpcRouteMatchMethodName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-methodname Default: null RouteSpecTcpRouteTcpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecTcpRouteTcpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' RouteName: !Ref 'RouteName' Spec: HttpRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' Priority: !Ref 'RouteSpecPriority' Http2Route: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' GrpcRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit' Match: ServiceName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchServiceName' MethodName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchMethodName' TcpRoute: Action: {} Timeout: Idle: Value: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationValue' Unit: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationUnit' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Route/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshowner Default: null RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename RouteSpecHttpRouteHttpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httpretrypolicy.html#cfn-appmesh-route-httpretrypolicy-maxretries RouteSpecHttpRouteHttpRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRouteMatchScheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-scheme Default: null RouteSpecHttpRouteHttpRouteMatchPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-prefix RouteSpecHttpRouteHttpRouteMatchMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-method Default: null RouteSpecPriority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-routespec.html#cfn-appmesh-route-routespec-priority Default: null RouteSpecGrpcRouteGrpcTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcretrypolicy.html#cfn-appmesh-route-grpcretrypolicy-maxretries RouteSpecGrpcRouteGrpcRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRouteMatchServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-servicename Default: null RouteSpecGrpcRouteGrpcRouteMatchMethodName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-methodname Default: null RouteSpecTcpRouteTcpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecTcpRouteTcpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' RouteName: !Ref 'RouteName' Spec: HttpRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' Priority: !Ref 'RouteSpecPriority' Http2Route: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' GrpcRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit' Match: ServiceName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchServiceName' MethodName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchMethodName' TcpRoute: Action: {} Timeout: Idle: Value: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationValue' Unit: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationUnit' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Route/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshowner Default: null RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename RouteSpecHttpRouteHttpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httpretrypolicy.html#cfn-appmesh-route-httpretrypolicy-maxretries RouteSpecHttpRouteHttpRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRouteMatchScheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-scheme Default: null RouteSpecHttpRouteHttpRouteMatchPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-prefix RouteSpecHttpRouteHttpRouteMatchMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-method Default: null RouteSpecPriority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-routespec.html#cfn-appmesh-route-routespec-priority Default: null RouteSpecGrpcRouteGrpcTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcretrypolicy.html#cfn-appmesh-route-grpcretrypolicy-maxretries RouteSpecGrpcRouteGrpcRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRouteMatchServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-servicename Default: null RouteSpecGrpcRouteGrpcRouteMatchMethodName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-methodname Default: null RouteSpecTcpRouteTcpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecTcpRouteTcpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' RouteName: !Ref 'RouteName' Spec: HttpRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' Priority: !Ref 'RouteSpecPriority' Http2Route: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' GrpcRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit' Match: ServiceName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchServiceName' MethodName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchMethodName' TcpRoute: Action: {} Timeout: Idle: Value: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationValue' Unit: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationUnit' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Route/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshowner Default: null RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename RouteSpecHttpRouteHttpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httpretrypolicy.html#cfn-appmesh-route-httpretrypolicy-maxretries RouteSpecHttpRouteHttpRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRouteMatchScheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-scheme Default: null RouteSpecHttpRouteHttpRouteMatchPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-prefix RouteSpecHttpRouteHttpRouteMatchMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-method Default: null RouteSpecPriority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-routespec.html#cfn-appmesh-route-routespec-priority Default: null RouteSpecGrpcRouteGrpcTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcretrypolicy.html#cfn-appmesh-route-grpcretrypolicy-maxretries RouteSpecGrpcRouteGrpcRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRouteMatchServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-servicename Default: null RouteSpecGrpcRouteGrpcRouteMatchMethodName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-methodname Default: null RouteSpecTcpRouteTcpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecTcpRouteTcpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' RouteName: !Ref 'RouteName' Spec: HttpRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' Priority: !Ref 'RouteSpecPriority' Http2Route: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' GrpcRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit' Match: ServiceName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchServiceName' MethodName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchMethodName' TcpRoute: Action: {} Timeout: Idle: Value: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationValue' Unit: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationUnit' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Route/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshowner Default: null RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename RouteSpecHttpRouteHttpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httpretrypolicy.html#cfn-appmesh-route-httpretrypolicy-maxretries RouteSpecHttpRouteHttpRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRouteMatchScheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-scheme Default: null RouteSpecHttpRouteHttpRouteMatchPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-prefix RouteSpecHttpRouteHttpRouteMatchMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-method Default: null RouteSpecPriority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-routespec.html#cfn-appmesh-route-routespec-priority Default: null RouteSpecGrpcRouteGrpcTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcretrypolicy.html#cfn-appmesh-route-grpcretrypolicy-maxretries RouteSpecGrpcRouteGrpcRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRouteMatchServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-servicename Default: null RouteSpecGrpcRouteGrpcRouteMatchMethodName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-methodname Default: null RouteSpecTcpRouteTcpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecTcpRouteTcpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' RouteName: !Ref 'RouteName' Spec: HttpRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' Priority: !Ref 'RouteSpecPriority' Http2Route: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' GrpcRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit' Match: ServiceName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchServiceName' MethodName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchMethodName' TcpRoute: Action: {} Timeout: Idle: Value: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationValue' Unit: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationUnit' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Route/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshowner Default: null RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename RouteSpecHttpRouteHttpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httpretrypolicy.html#cfn-appmesh-route-httpretrypolicy-maxretries RouteSpecHttpRouteHttpRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRouteMatchScheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-scheme Default: null RouteSpecHttpRouteHttpRouteMatchPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-prefix RouteSpecHttpRouteHttpRouteMatchMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-method Default: null RouteSpecPriority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-routespec.html#cfn-appmesh-route-routespec-priority Default: null RouteSpecGrpcRouteGrpcTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcretrypolicy.html#cfn-appmesh-route-grpcretrypolicy-maxretries RouteSpecGrpcRouteGrpcRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRouteMatchServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-servicename Default: null RouteSpecGrpcRouteGrpcRouteMatchMethodName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-methodname Default: null RouteSpecTcpRouteTcpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecTcpRouteTcpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' RouteName: !Ref 'RouteName' Spec: HttpRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' Priority: !Ref 'RouteSpecPriority' Http2Route: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' GrpcRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit' Match: ServiceName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchServiceName' MethodName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchMethodName' TcpRoute: Action: {} Timeout: Idle: Value: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationValue' Unit: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationUnit' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Route/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshowner Default: null RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename RouteSpecHttpRouteHttpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httpretrypolicy.html#cfn-appmesh-route-httpretrypolicy-maxretries RouteSpecHttpRouteHttpRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRouteMatchScheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-scheme Default: null RouteSpecHttpRouteHttpRouteMatchPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-prefix RouteSpecHttpRouteHttpRouteMatchMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-method Default: null RouteSpecPriority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-routespec.html#cfn-appmesh-route-routespec-priority Default: null RouteSpecGrpcRouteGrpcTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcretrypolicy.html#cfn-appmesh-route-grpcretrypolicy-maxretries RouteSpecGrpcRouteGrpcRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRouteMatchServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-servicename Default: null RouteSpecGrpcRouteGrpcRouteMatchMethodName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-methodname Default: null RouteSpecTcpRouteTcpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecTcpRouteTcpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' RouteName: !Ref 'RouteName' Spec: HttpRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' Priority: !Ref 'RouteSpecPriority' Http2Route: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' GrpcRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit' Match: ServiceName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchServiceName' MethodName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchMethodName' TcpRoute: Action: {} Timeout: Idle: Value: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationValue' Unit: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationUnit' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Route/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshowner Default: null RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename RouteSpecHttpRouteHttpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httpretrypolicy.html#cfn-appmesh-route-httpretrypolicy-maxretries RouteSpecHttpRouteHttpRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRouteMatchScheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-scheme Default: null RouteSpecHttpRouteHttpRouteMatchPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-prefix RouteSpecHttpRouteHttpRouteMatchMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-method Default: null RouteSpecPriority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-routespec.html#cfn-appmesh-route-routespec-priority Default: null RouteSpecGrpcRouteGrpcTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcretrypolicy.html#cfn-appmesh-route-grpcretrypolicy-maxretries RouteSpecGrpcRouteGrpcRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRouteMatchServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-servicename Default: null RouteSpecGrpcRouteGrpcRouteMatchMethodName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-methodname Default: null RouteSpecTcpRouteTcpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecTcpRouteTcpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' RouteName: !Ref 'RouteName' Spec: HttpRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' Priority: !Ref 'RouteSpecPriority' Http2Route: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' GrpcRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit' Match: ServiceName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchServiceName' MethodName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchMethodName' TcpRoute: Action: {} Timeout: Idle: Value: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationValue' Unit: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationUnit' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Route/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshowner Default: null RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename RouteSpecHttpRouteHttpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httpretrypolicy.html#cfn-appmesh-route-httpretrypolicy-maxretries RouteSpecHttpRouteHttpRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRouteMatchScheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-scheme Default: null RouteSpecHttpRouteHttpRouteMatchPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-prefix RouteSpecHttpRouteHttpRouteMatchMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-method Default: null RouteSpecPriority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-routespec.html#cfn-appmesh-route-routespec-priority Default: null RouteSpecGrpcRouteGrpcTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcretrypolicy.html#cfn-appmesh-route-grpcretrypolicy-maxretries RouteSpecGrpcRouteGrpcRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRouteMatchServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-servicename Default: null RouteSpecGrpcRouteGrpcRouteMatchMethodName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-methodname Default: null RouteSpecTcpRouteTcpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecTcpRouteTcpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' RouteName: !Ref 'RouteName' Spec: HttpRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' Priority: !Ref 'RouteSpecPriority' Http2Route: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' GrpcRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit' Match: ServiceName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchServiceName' MethodName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchMethodName' TcpRoute: Action: {} Timeout: Idle: Value: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationValue' Unit: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationUnit' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Route/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshowner Default: null RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename RouteSpecHttpRouteHttpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httpretrypolicy.html#cfn-appmesh-route-httpretrypolicy-maxretries RouteSpecHttpRouteHttpRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRouteMatchScheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-scheme Default: null RouteSpecHttpRouteHttpRouteMatchPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-prefix RouteSpecHttpRouteHttpRouteMatchMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-method Default: null RouteSpecPriority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-routespec.html#cfn-appmesh-route-routespec-priority Default: null RouteSpecGrpcRouteGrpcTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcretrypolicy.html#cfn-appmesh-route-grpcretrypolicy-maxretries RouteSpecGrpcRouteGrpcRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRouteMatchServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-servicename Default: null RouteSpecGrpcRouteGrpcRouteMatchMethodName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-methodname Default: null RouteSpecTcpRouteTcpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecTcpRouteTcpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' RouteName: !Ref 'RouteName' Spec: HttpRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' Priority: !Ref 'RouteSpecPriority' Http2Route: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' GrpcRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit' Match: ServiceName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchServiceName' MethodName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchMethodName' TcpRoute: Action: {} Timeout: Idle: Value: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationValue' Unit: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationUnit' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-Route/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshowner Default: null RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename RouteSpecHttpRouteHttpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httpretrypolicy.html#cfn-appmesh-route-httpretrypolicy-maxretries RouteSpecHttpRouteHttpRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecHttpRouteHttpRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecHttpRouteHttpRouteMatchScheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-scheme Default: null RouteSpecHttpRouteHttpRouteMatchPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-prefix RouteSpecHttpRouteHttpRouteMatchMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-httproutematch.html#cfn-appmesh-route-httproutematch-method Default: null RouteSpecPriority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-routespec.html#cfn-appmesh-route-routespec-priority Default: null RouteSpecGrpcRouteGrpcTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcretrypolicy.html#cfn-appmesh-route-grpcretrypolicy-maxretries RouteSpecGrpcRouteGrpcRetryPolicyDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit RouteSpecGrpcRouteGrpcRouteMatchServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-servicename Default: null RouteSpecGrpcRouteGrpcRouteMatchMethodName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutematch.html#cfn-appmesh-route-grpcroutematch-methodname Default: null RouteSpecTcpRouteTcpTimeoutDurationValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-value RouteSpecTcpRouteTcpTimeoutDurationUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-duration.html#cfn-appmesh-route-duration-unit Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' RouteName: !Ref 'RouteName' Spec: HttpRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' Priority: !Ref 'RouteSpecPriority' Http2Route: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecHttpRouteHttpRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationValue' Unit: !Ref 'RouteSpecHttpRouteHttpRetryPolicyDurationUnit' Match: Scheme: !Ref 'RouteSpecHttpRouteHttpRouteMatchScheme' Prefix: !Ref 'RouteSpecHttpRouteHttpRouteMatchPrefix' Method: !Ref 'RouteSpecHttpRouteHttpRouteMatchMethod' GrpcRoute: Action: {} Timeout: PerRequest: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' Idle: Value: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcTimeoutDurationUnit' RetryPolicy: MaxRetries: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyMaxRetries' PerRetryTimeout: Value: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationValue' Unit: !Ref 'RouteSpecGrpcRouteGrpcRetryPolicyDurationUnit' Match: ServiceName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchServiceName' MethodName: !Ref 'RouteSpecGrpcRouteGrpcRouteMatchMethodName' TcpRoute: Action: {} Timeout: Idle: Value: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationValue' Unit: !Ref 'RouteSpecTcpRouteTcpTimeoutDurationUnit' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualNode/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshowner Default: null VirtualNodeSpecLoggingAccessLogFileAccessLogPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-fileaccesslog.html#cfn-appmesh-virtualnode-fileaccesslog-path ? VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontextfiletrust.html#cfn-appmesh-virtualnode-tlsvalidationcontextfiletrust-certificatechain VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-clientpolicytls.html#cfn-appmesh-virtualnode-clientpolicytls-enforce AllowedValues: - 'true' - 'false' Default: null VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-dnsservicediscovery.html#cfn-appmesh-virtualnode-dnsservicediscovery-hostname VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-namespacename VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-servicename VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' Spec: Logging: AccessLog: File: Path: !Ref 'VirtualNodeSpecLoggingAccessLogFileAccessLogPath' BackendDefaults: ClientPolicy: TLS: Validation: Trust: ACM: {} File: CertificateChain: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain' Enforce: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce' ServiceDiscovery: DNS: Hostname: !Ref 'VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname' AWSCloudMap: NamespaceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName' ServiceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName' VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualNode/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshowner Default: null VirtualNodeSpecLoggingAccessLogFileAccessLogPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-fileaccesslog.html#cfn-appmesh-virtualnode-fileaccesslog-path ? VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontextfiletrust.html#cfn-appmesh-virtualnode-tlsvalidationcontextfiletrust-certificatechain VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-clientpolicytls.html#cfn-appmesh-virtualnode-clientpolicytls-enforce AllowedValues: - 'true' - 'false' Default: null VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-dnsservicediscovery.html#cfn-appmesh-virtualnode-dnsservicediscovery-hostname VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-namespacename VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-servicename VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' Spec: Logging: AccessLog: File: Path: !Ref 'VirtualNodeSpecLoggingAccessLogFileAccessLogPath' BackendDefaults: ClientPolicy: TLS: Validation: Trust: ACM: {} File: CertificateChain: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain' Enforce: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce' ServiceDiscovery: DNS: Hostname: !Ref 'VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname' AWSCloudMap: NamespaceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName' ServiceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName' VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualNode/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshowner Default: null VirtualNodeSpecLoggingAccessLogFileAccessLogPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-fileaccesslog.html#cfn-appmesh-virtualnode-fileaccesslog-path ? VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontextfiletrust.html#cfn-appmesh-virtualnode-tlsvalidationcontextfiletrust-certificatechain VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-clientpolicytls.html#cfn-appmesh-virtualnode-clientpolicytls-enforce AllowedValues: - 'true' - 'false' Default: null VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-dnsservicediscovery.html#cfn-appmesh-virtualnode-dnsservicediscovery-hostname VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-namespacename VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-servicename VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' Spec: Logging: AccessLog: File: Path: !Ref 'VirtualNodeSpecLoggingAccessLogFileAccessLogPath' BackendDefaults: ClientPolicy: TLS: Validation: Trust: ACM: {} File: CertificateChain: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain' Enforce: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce' ServiceDiscovery: DNS: Hostname: !Ref 'VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname' AWSCloudMap: NamespaceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName' ServiceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName' VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualNode/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshowner Default: null VirtualNodeSpecLoggingAccessLogFileAccessLogPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-fileaccesslog.html#cfn-appmesh-virtualnode-fileaccesslog-path ? VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontextfiletrust.html#cfn-appmesh-virtualnode-tlsvalidationcontextfiletrust-certificatechain VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-clientpolicytls.html#cfn-appmesh-virtualnode-clientpolicytls-enforce AllowedValues: - 'true' - 'false' Default: null VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-dnsservicediscovery.html#cfn-appmesh-virtualnode-dnsservicediscovery-hostname VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-namespacename VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-servicename VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' Spec: Logging: AccessLog: File: Path: !Ref 'VirtualNodeSpecLoggingAccessLogFileAccessLogPath' BackendDefaults: ClientPolicy: TLS: Validation: Trust: ACM: {} File: CertificateChain: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain' Enforce: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce' ServiceDiscovery: DNS: Hostname: !Ref 'VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname' AWSCloudMap: NamespaceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName' ServiceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName' VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualNode/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshowner Default: null VirtualNodeSpecLoggingAccessLogFileAccessLogPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-fileaccesslog.html#cfn-appmesh-virtualnode-fileaccesslog-path ? VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontextfiletrust.html#cfn-appmesh-virtualnode-tlsvalidationcontextfiletrust-certificatechain VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-clientpolicytls.html#cfn-appmesh-virtualnode-clientpolicytls-enforce AllowedValues: - 'true' - 'false' Default: null VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-dnsservicediscovery.html#cfn-appmesh-virtualnode-dnsservicediscovery-hostname VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-namespacename VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-servicename VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' Spec: Logging: AccessLog: File: Path: !Ref 'VirtualNodeSpecLoggingAccessLogFileAccessLogPath' BackendDefaults: ClientPolicy: TLS: Validation: Trust: ACM: {} File: CertificateChain: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain' Enforce: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce' ServiceDiscovery: DNS: Hostname: !Ref 'VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname' AWSCloudMap: NamespaceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName' ServiceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName' VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualNode/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshowner Default: null VirtualNodeSpecLoggingAccessLogFileAccessLogPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-fileaccesslog.html#cfn-appmesh-virtualnode-fileaccesslog-path ? VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontextfiletrust.html#cfn-appmesh-virtualnode-tlsvalidationcontextfiletrust-certificatechain VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-clientpolicytls.html#cfn-appmesh-virtualnode-clientpolicytls-enforce AllowedValues: - 'true' - 'false' Default: null VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-dnsservicediscovery.html#cfn-appmesh-virtualnode-dnsservicediscovery-hostname VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-namespacename VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-servicename VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' Spec: Logging: AccessLog: File: Path: !Ref 'VirtualNodeSpecLoggingAccessLogFileAccessLogPath' BackendDefaults: ClientPolicy: TLS: Validation: Trust: ACM: {} File: CertificateChain: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain' Enforce: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce' ServiceDiscovery: DNS: Hostname: !Ref 'VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname' AWSCloudMap: NamespaceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName' ServiceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName' VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualNode/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshowner Default: null VirtualNodeSpecLoggingAccessLogFileAccessLogPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-fileaccesslog.html#cfn-appmesh-virtualnode-fileaccesslog-path ? VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontextfiletrust.html#cfn-appmesh-virtualnode-tlsvalidationcontextfiletrust-certificatechain VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-clientpolicytls.html#cfn-appmesh-virtualnode-clientpolicytls-enforce AllowedValues: - 'true' - 'false' Default: null VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-dnsservicediscovery.html#cfn-appmesh-virtualnode-dnsservicediscovery-hostname VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-namespacename VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-servicename VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' Spec: Logging: AccessLog: File: Path: !Ref 'VirtualNodeSpecLoggingAccessLogFileAccessLogPath' BackendDefaults: ClientPolicy: TLS: Validation: Trust: ACM: {} File: CertificateChain: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain' Enforce: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce' ServiceDiscovery: DNS: Hostname: !Ref 'VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname' AWSCloudMap: NamespaceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName' ServiceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName' VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualNode/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshowner Default: null VirtualNodeSpecLoggingAccessLogFileAccessLogPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-fileaccesslog.html#cfn-appmesh-virtualnode-fileaccesslog-path ? VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontextfiletrust.html#cfn-appmesh-virtualnode-tlsvalidationcontextfiletrust-certificatechain VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-clientpolicytls.html#cfn-appmesh-virtualnode-clientpolicytls-enforce AllowedValues: - 'true' - 'false' Default: null VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-dnsservicediscovery.html#cfn-appmesh-virtualnode-dnsservicediscovery-hostname VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-namespacename VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-servicename VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' Spec: Logging: AccessLog: File: Path: !Ref 'VirtualNodeSpecLoggingAccessLogFileAccessLogPath' BackendDefaults: ClientPolicy: TLS: Validation: Trust: ACM: {} File: CertificateChain: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain' Enforce: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce' ServiceDiscovery: DNS: Hostname: !Ref 'VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname' AWSCloudMap: NamespaceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName' ServiceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName' VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualNode/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshowner Default: null VirtualNodeSpecLoggingAccessLogFileAccessLogPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-fileaccesslog.html#cfn-appmesh-virtualnode-fileaccesslog-path ? VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontextfiletrust.html#cfn-appmesh-virtualnode-tlsvalidationcontextfiletrust-certificatechain VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-clientpolicytls.html#cfn-appmesh-virtualnode-clientpolicytls-enforce AllowedValues: - 'true' - 'false' Default: null VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-dnsservicediscovery.html#cfn-appmesh-virtualnode-dnsservicediscovery-hostname VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-namespacename VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-servicename VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' Spec: Logging: AccessLog: File: Path: !Ref 'VirtualNodeSpecLoggingAccessLogFileAccessLogPath' BackendDefaults: ClientPolicy: TLS: Validation: Trust: ACM: {} File: CertificateChain: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain' Enforce: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce' ServiceDiscovery: DNS: Hostname: !Ref 'VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname' AWSCloudMap: NamespaceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName' ServiceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName' VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualNode/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshowner Default: null VirtualNodeSpecLoggingAccessLogFileAccessLogPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-fileaccesslog.html#cfn-appmesh-virtualnode-fileaccesslog-path ? VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontextfiletrust.html#cfn-appmesh-virtualnode-tlsvalidationcontextfiletrust-certificatechain VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-clientpolicytls.html#cfn-appmesh-virtualnode-clientpolicytls-enforce AllowedValues: - 'true' - 'false' Default: null VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-dnsservicediscovery.html#cfn-appmesh-virtualnode-dnsservicediscovery-hostname VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-namespacename VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-servicename VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' Spec: Logging: AccessLog: File: Path: !Ref 'VirtualNodeSpecLoggingAccessLogFileAccessLogPath' BackendDefaults: ClientPolicy: TLS: Validation: Trust: ACM: {} File: CertificateChain: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain' Enforce: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce' ServiceDiscovery: DNS: Hostname: !Ref 'VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname' AWSCloudMap: NamespaceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName' ServiceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName' VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualNode/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshowner Default: null VirtualNodeSpecLoggingAccessLogFileAccessLogPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-fileaccesslog.html#cfn-appmesh-virtualnode-fileaccesslog-path ? VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontextfiletrust.html#cfn-appmesh-virtualnode-tlsvalidationcontextfiletrust-certificatechain VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-clientpolicytls.html#cfn-appmesh-virtualnode-clientpolicytls-enforce AllowedValues: - 'true' - 'false' Default: null VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-dnsservicediscovery.html#cfn-appmesh-virtualnode-dnsservicediscovery-hostname VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-namespacename VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-servicename VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' Spec: Logging: AccessLog: File: Path: !Ref 'VirtualNodeSpecLoggingAccessLogFileAccessLogPath' BackendDefaults: ClientPolicy: TLS: Validation: Trust: ACM: {} File: CertificateChain: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain' Enforce: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce' ServiceDiscovery: DNS: Hostname: !Ref 'VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname' AWSCloudMap: NamespaceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName' ServiceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName' VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualNode/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshowner Default: null VirtualNodeSpecLoggingAccessLogFileAccessLogPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-fileaccesslog.html#cfn-appmesh-virtualnode-fileaccesslog-path ? VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontextfiletrust.html#cfn-appmesh-virtualnode-tlsvalidationcontextfiletrust-certificatechain VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-clientpolicytls.html#cfn-appmesh-virtualnode-clientpolicytls-enforce AllowedValues: - 'true' - 'false' Default: null VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-dnsservicediscovery.html#cfn-appmesh-virtualnode-dnsservicediscovery-hostname VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-namespacename VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-servicename VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' Spec: Logging: AccessLog: File: Path: !Ref 'VirtualNodeSpecLoggingAccessLogFileAccessLogPath' BackendDefaults: ClientPolicy: TLS: Validation: Trust: ACM: {} File: CertificateChain: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain' Enforce: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce' ServiceDiscovery: DNS: Hostname: !Ref 'VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname' AWSCloudMap: NamespaceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName' ServiceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName' VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualNode/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshowner Default: null VirtualNodeSpecLoggingAccessLogFileAccessLogPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-fileaccesslog.html#cfn-appmesh-virtualnode-fileaccesslog-path ? VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontextfiletrust.html#cfn-appmesh-virtualnode-tlsvalidationcontextfiletrust-certificatechain VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-clientpolicytls.html#cfn-appmesh-virtualnode-clientpolicytls-enforce AllowedValues: - 'true' - 'false' Default: null VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-dnsservicediscovery.html#cfn-appmesh-virtualnode-dnsservicediscovery-hostname VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-namespacename VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-awscloudmapservicediscovery.html#cfn-appmesh-virtualnode-awscloudmapservicediscovery-servicename VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' Spec: Logging: AccessLog: File: Path: !Ref 'VirtualNodeSpecLoggingAccessLogFileAccessLogPath' BackendDefaults: ClientPolicy: TLS: Validation: Trust: ACM: {} File: CertificateChain: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsTlsValidationContextTlsValidationContextTrustTlsValidationContextFileTrustCertificateChain' Enforce: !Ref 'VirtualNodeSpecBackendDefaultsClientPolicyClientPolicyTlsEnforce' ServiceDiscovery: DNS: Hostname: !Ref 'VirtualNodeSpecServiceDiscoveryDnsServiceDiscoveryHostname' AWSCloudMap: NamespaceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryNamespaceName' ServiceName: !Ref 'VirtualNodeSpecServiceDiscoveryAwsCloudMapServiceDiscoveryServiceName' VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualRouter/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshowner Default: null Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualRouter/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshowner Default: null Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualRouter/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshowner Default: null Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualRouter/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshowner Default: null Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualRouter/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshowner Default: null Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualRouter/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshowner Default: null Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualRouter/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshowner Default: null Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualRouter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshowner Default: null Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualRouter/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshowner Default: null Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualRouter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshowner Default: null Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualRouter/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshowner Default: null Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualRouter/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshowner Default: null Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualRouter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshowner Default: null Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' MeshOwner: !Ref 'MeshOwner' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualService/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshowner Default: null VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualnodeserviceprovider.html#cfn-appmesh-virtualservice-virtualnodeserviceprovider-virtualnodename VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualrouterserviceprovider.html#cfn-appmesh-virtualservice-virtualrouterserviceprovider-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' VirtualServiceName: !Ref 'VirtualServiceName' Spec: Provider: VirtualNode: VirtualNodeName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName' VirtualRouter: VirtualRouterName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualService/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshowner Default: null VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualnodeserviceprovider.html#cfn-appmesh-virtualservice-virtualnodeserviceprovider-virtualnodename VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualrouterserviceprovider.html#cfn-appmesh-virtualservice-virtualrouterserviceprovider-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' VirtualServiceName: !Ref 'VirtualServiceName' Spec: Provider: VirtualNode: VirtualNodeName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName' VirtualRouter: VirtualRouterName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualService/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshowner Default: null VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualnodeserviceprovider.html#cfn-appmesh-virtualservice-virtualnodeserviceprovider-virtualnodename VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualrouterserviceprovider.html#cfn-appmesh-virtualservice-virtualrouterserviceprovider-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' VirtualServiceName: !Ref 'VirtualServiceName' Spec: Provider: VirtualNode: VirtualNodeName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName' VirtualRouter: VirtualRouterName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualService/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshowner Default: null VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualnodeserviceprovider.html#cfn-appmesh-virtualservice-virtualnodeserviceprovider-virtualnodename VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualrouterserviceprovider.html#cfn-appmesh-virtualservice-virtualrouterserviceprovider-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' VirtualServiceName: !Ref 'VirtualServiceName' Spec: Provider: VirtualNode: VirtualNodeName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName' VirtualRouter: VirtualRouterName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualService/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshowner Default: null VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualnodeserviceprovider.html#cfn-appmesh-virtualservice-virtualnodeserviceprovider-virtualnodename VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualrouterserviceprovider.html#cfn-appmesh-virtualservice-virtualrouterserviceprovider-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' VirtualServiceName: !Ref 'VirtualServiceName' Spec: Provider: VirtualNode: VirtualNodeName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName' VirtualRouter: VirtualRouterName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualService/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshowner Default: null VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualnodeserviceprovider.html#cfn-appmesh-virtualservice-virtualnodeserviceprovider-virtualnodename VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualrouterserviceprovider.html#cfn-appmesh-virtualservice-virtualrouterserviceprovider-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' VirtualServiceName: !Ref 'VirtualServiceName' Spec: Provider: VirtualNode: VirtualNodeName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName' VirtualRouter: VirtualRouterName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualService/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshowner Default: null VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualnodeserviceprovider.html#cfn-appmesh-virtualservice-virtualnodeserviceprovider-virtualnodename VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualrouterserviceprovider.html#cfn-appmesh-virtualservice-virtualrouterserviceprovider-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' VirtualServiceName: !Ref 'VirtualServiceName' Spec: Provider: VirtualNode: VirtualNodeName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName' VirtualRouter: VirtualRouterName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualService/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshowner Default: null VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualnodeserviceprovider.html#cfn-appmesh-virtualservice-virtualnodeserviceprovider-virtualnodename VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualrouterserviceprovider.html#cfn-appmesh-virtualservice-virtualrouterserviceprovider-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' VirtualServiceName: !Ref 'VirtualServiceName' Spec: Provider: VirtualNode: VirtualNodeName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName' VirtualRouter: VirtualRouterName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualService/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshowner Default: null VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualnodeserviceprovider.html#cfn-appmesh-virtualservice-virtualnodeserviceprovider-virtualnodename VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualrouterserviceprovider.html#cfn-appmesh-virtualservice-virtualrouterserviceprovider-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' VirtualServiceName: !Ref 'VirtualServiceName' Spec: Provider: VirtualNode: VirtualNodeName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName' VirtualRouter: VirtualRouterName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualService/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshowner Default: null VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualnodeserviceprovider.html#cfn-appmesh-virtualservice-virtualnodeserviceprovider-virtualnodename VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualrouterserviceprovider.html#cfn-appmesh-virtualservice-virtualrouterserviceprovider-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' VirtualServiceName: !Ref 'VirtualServiceName' Spec: Provider: VirtualNode: VirtualNodeName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName' VirtualRouter: VirtualRouterName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualService/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshowner Default: null VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualnodeserviceprovider.html#cfn-appmesh-virtualservice-virtualnodeserviceprovider-virtualnodename VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualrouterserviceprovider.html#cfn-appmesh-virtualservice-virtualrouterserviceprovider-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' VirtualServiceName: !Ref 'VirtualServiceName' Spec: Provider: VirtualNode: VirtualNodeName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName' VirtualRouter: VirtualRouterName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualService/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshowner Default: null VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualnodeserviceprovider.html#cfn-appmesh-virtualservice-virtualnodeserviceprovider-virtualnodename VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualrouterserviceprovider.html#cfn-appmesh-virtualservice-virtualrouterserviceprovider-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' VirtualServiceName: !Ref 'VirtualServiceName' Spec: Provider: VirtualNode: VirtualNodeName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName' VirtualRouter: VirtualRouterName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppMesh-VirtualService/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname MeshOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshowner Default: null VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualnodeserviceprovider.html#cfn-appmesh-virtualservice-virtualnodeserviceprovider-virtualnodename VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualrouterserviceprovider.html#cfn-appmesh-virtualservice-virtualrouterserviceprovider-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' MeshOwner: !Ref 'MeshOwner' VirtualServiceName: !Ref 'VirtualServiceName' Spec: Provider: VirtualNode: VirtualNodeName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualNodeServiceProviderVirtualNodeName' VirtualRouter: VirtualRouterName: !Ref 'VirtualServiceSpecVirtualServiceProviderVirtualRouterServiceProviderVirtualRouterName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-DirectoryConfig/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-DirectoryConfig/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-DirectoryConfig/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-DirectoryConfig/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-DirectoryConfig/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-DirectoryConfig/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-DirectoryConfig/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-DirectoryConfig/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-DirectoryConfig/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Fleet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-description Default: null ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-fleettype Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-directoryname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagename Default: null MaxUserDurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-maxuserdurationinseconds Default: null IdleDisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-idledisconnecttimeoutinseconds Default: null DisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-disconnecttimeoutinseconds Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-displayname Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagearn Default: null Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: Description: !Ref 'Description' ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' VpcConfig: {} FleetType: !Ref 'FleetType' EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' Name: !Ref 'Name' ImageName: !Ref 'ImageName' MaxUserDurationInSeconds: !Ref 'MaxUserDurationInSeconds' IdleDisconnectTimeoutInSeconds: !Ref 'IdleDisconnectTimeoutInSeconds' DisconnectTimeoutInSeconds: !Ref 'DisconnectTimeoutInSeconds' DisplayName: !Ref 'DisplayName' InstanceType: !Ref 'InstanceType' ImageArn: !Ref 'ImageArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Fleet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-description Default: null ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-fleettype Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-directoryname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagename Default: null MaxUserDurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-maxuserdurationinseconds Default: null IdleDisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-idledisconnecttimeoutinseconds Default: null DisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-disconnecttimeoutinseconds Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-displayname Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagearn Default: null Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: Description: !Ref 'Description' ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' VpcConfig: {} FleetType: !Ref 'FleetType' EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' Name: !Ref 'Name' ImageName: !Ref 'ImageName' MaxUserDurationInSeconds: !Ref 'MaxUserDurationInSeconds' IdleDisconnectTimeoutInSeconds: !Ref 'IdleDisconnectTimeoutInSeconds' DisconnectTimeoutInSeconds: !Ref 'DisconnectTimeoutInSeconds' DisplayName: !Ref 'DisplayName' InstanceType: !Ref 'InstanceType' ImageArn: !Ref 'ImageArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Fleet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-description Default: null ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-fleettype Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-directoryname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagename Default: null MaxUserDurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-maxuserdurationinseconds Default: null IdleDisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-idledisconnecttimeoutinseconds Default: null DisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-disconnecttimeoutinseconds Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-displayname Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagearn Default: null Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: Description: !Ref 'Description' ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' VpcConfig: {} FleetType: !Ref 'FleetType' EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' Name: !Ref 'Name' ImageName: !Ref 'ImageName' MaxUserDurationInSeconds: !Ref 'MaxUserDurationInSeconds' IdleDisconnectTimeoutInSeconds: !Ref 'IdleDisconnectTimeoutInSeconds' DisconnectTimeoutInSeconds: !Ref 'DisconnectTimeoutInSeconds' DisplayName: !Ref 'DisplayName' InstanceType: !Ref 'InstanceType' ImageArn: !Ref 'ImageArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Fleet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-description Default: null ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-fleettype Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-directoryname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagename Default: null MaxUserDurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-maxuserdurationinseconds Default: null IdleDisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-idledisconnecttimeoutinseconds Default: null DisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-disconnecttimeoutinseconds Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-displayname Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagearn Default: null Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: Description: !Ref 'Description' ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' VpcConfig: {} FleetType: !Ref 'FleetType' EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' Name: !Ref 'Name' ImageName: !Ref 'ImageName' MaxUserDurationInSeconds: !Ref 'MaxUserDurationInSeconds' IdleDisconnectTimeoutInSeconds: !Ref 'IdleDisconnectTimeoutInSeconds' DisconnectTimeoutInSeconds: !Ref 'DisconnectTimeoutInSeconds' DisplayName: !Ref 'DisplayName' InstanceType: !Ref 'InstanceType' ImageArn: !Ref 'ImageArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Fleet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-description Default: null ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-fleettype Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-directoryname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagename Default: null MaxUserDurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-maxuserdurationinseconds Default: null IdleDisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-idledisconnecttimeoutinseconds Default: null DisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-disconnecttimeoutinseconds Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-displayname Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagearn Default: null Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: Description: !Ref 'Description' ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' VpcConfig: {} FleetType: !Ref 'FleetType' EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' Name: !Ref 'Name' ImageName: !Ref 'ImageName' MaxUserDurationInSeconds: !Ref 'MaxUserDurationInSeconds' IdleDisconnectTimeoutInSeconds: !Ref 'IdleDisconnectTimeoutInSeconds' DisconnectTimeoutInSeconds: !Ref 'DisconnectTimeoutInSeconds' DisplayName: !Ref 'DisplayName' InstanceType: !Ref 'InstanceType' ImageArn: !Ref 'ImageArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Fleet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-description Default: null ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-fleettype Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-directoryname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagename Default: null MaxUserDurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-maxuserdurationinseconds Default: null IdleDisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-idledisconnecttimeoutinseconds Default: null DisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-disconnecttimeoutinseconds Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-displayname Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagearn Default: null Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: Description: !Ref 'Description' ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' VpcConfig: {} FleetType: !Ref 'FleetType' EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' Name: !Ref 'Name' ImageName: !Ref 'ImageName' MaxUserDurationInSeconds: !Ref 'MaxUserDurationInSeconds' IdleDisconnectTimeoutInSeconds: !Ref 'IdleDisconnectTimeoutInSeconds' DisconnectTimeoutInSeconds: !Ref 'DisconnectTimeoutInSeconds' DisplayName: !Ref 'DisplayName' InstanceType: !Ref 'InstanceType' ImageArn: !Ref 'ImageArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Fleet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-description Default: null ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-fleettype Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-directoryname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagename Default: null MaxUserDurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-maxuserdurationinseconds Default: null IdleDisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-idledisconnecttimeoutinseconds Default: null DisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-disconnecttimeoutinseconds Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-displayname Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagearn Default: null Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: Description: !Ref 'Description' ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' VpcConfig: {} FleetType: !Ref 'FleetType' EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' Name: !Ref 'Name' ImageName: !Ref 'ImageName' MaxUserDurationInSeconds: !Ref 'MaxUserDurationInSeconds' IdleDisconnectTimeoutInSeconds: !Ref 'IdleDisconnectTimeoutInSeconds' DisconnectTimeoutInSeconds: !Ref 'DisconnectTimeoutInSeconds' DisplayName: !Ref 'DisplayName' InstanceType: !Ref 'InstanceType' ImageArn: !Ref 'ImageArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Fleet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-description Default: null ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-fleettype Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-directoryname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagename Default: null MaxUserDurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-maxuserdurationinseconds Default: null IdleDisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-idledisconnecttimeoutinseconds Default: null DisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-disconnecttimeoutinseconds Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-displayname Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagearn Default: null Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: Description: !Ref 'Description' ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' VpcConfig: {} FleetType: !Ref 'FleetType' EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' Name: !Ref 'Name' ImageName: !Ref 'ImageName' MaxUserDurationInSeconds: !Ref 'MaxUserDurationInSeconds' IdleDisconnectTimeoutInSeconds: !Ref 'IdleDisconnectTimeoutInSeconds' DisconnectTimeoutInSeconds: !Ref 'DisconnectTimeoutInSeconds' DisplayName: !Ref 'DisplayName' InstanceType: !Ref 'InstanceType' ImageArn: !Ref 'ImageArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Fleet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-description Default: null ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-fleettype Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-directoryname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagename Default: null MaxUserDurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-maxuserdurationinseconds Default: null IdleDisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-idledisconnecttimeoutinseconds Default: null DisconnectTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-disconnecttimeoutinseconds Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-displayname Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagearn Default: null Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: Description: !Ref 'Description' ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' VpcConfig: {} FleetType: !Ref 'FleetType' EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' Name: !Ref 'Name' ImageName: !Ref 'ImageName' MaxUserDurationInSeconds: !Ref 'MaxUserDurationInSeconds' IdleDisconnectTimeoutInSeconds: !Ref 'IdleDisconnectTimeoutInSeconds' DisconnectTimeoutInSeconds: !Ref 'DisconnectTimeoutInSeconds' DisplayName: !Ref 'DisplayName' InstanceType: !Ref 'InstanceType' ImageArn: !Ref 'ImageArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-ImageBuilder/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-description Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-displayname Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-directoryname Default: null AppstreamAgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-appstreamagentversion Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagearn Default: null Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: ImageName: !Ref 'ImageName' Description: !Ref 'Description' VpcConfig: {} EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DisplayName: !Ref 'DisplayName' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' AppstreamAgentVersion: !Ref 'AppstreamAgentVersion' InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' ImageArn: !Ref 'ImageArn' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-ImageBuilder/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-description Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-displayname Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-directoryname Default: null AppstreamAgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-appstreamagentversion Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagearn Default: null Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: ImageName: !Ref 'ImageName' Description: !Ref 'Description' VpcConfig: {} EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DisplayName: !Ref 'DisplayName' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' AppstreamAgentVersion: !Ref 'AppstreamAgentVersion' InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' ImageArn: !Ref 'ImageArn' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-ImageBuilder/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-description Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-displayname Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-directoryname Default: null AppstreamAgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-appstreamagentversion Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagearn Default: null Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: ImageName: !Ref 'ImageName' Description: !Ref 'Description' VpcConfig: {} EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DisplayName: !Ref 'DisplayName' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' AppstreamAgentVersion: !Ref 'AppstreamAgentVersion' InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' ImageArn: !Ref 'ImageArn' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-ImageBuilder/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-description Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-displayname Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-directoryname Default: null AppstreamAgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-appstreamagentversion Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagearn Default: null Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: ImageName: !Ref 'ImageName' Description: !Ref 'Description' VpcConfig: {} EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DisplayName: !Ref 'DisplayName' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' AppstreamAgentVersion: !Ref 'AppstreamAgentVersion' InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' ImageArn: !Ref 'ImageArn' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-ImageBuilder/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-description Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-displayname Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-directoryname Default: null AppstreamAgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-appstreamagentversion Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagearn Default: null Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: ImageName: !Ref 'ImageName' Description: !Ref 'Description' VpcConfig: {} EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DisplayName: !Ref 'DisplayName' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' AppstreamAgentVersion: !Ref 'AppstreamAgentVersion' InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' ImageArn: !Ref 'ImageArn' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-ImageBuilder/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-description Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-displayname Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-directoryname Default: null AppstreamAgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-appstreamagentversion Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagearn Default: null Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: ImageName: !Ref 'ImageName' Description: !Ref 'Description' VpcConfig: {} EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DisplayName: !Ref 'DisplayName' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' AppstreamAgentVersion: !Ref 'AppstreamAgentVersion' InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' ImageArn: !Ref 'ImageArn' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-ImageBuilder/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-description Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-displayname Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-directoryname Default: null AppstreamAgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-appstreamagentversion Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagearn Default: null Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: ImageName: !Ref 'ImageName' Description: !Ref 'Description' VpcConfig: {} EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DisplayName: !Ref 'DisplayName' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' AppstreamAgentVersion: !Ref 'AppstreamAgentVersion' InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' ImageArn: !Ref 'ImageArn' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-ImageBuilder/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-description Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-displayname Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-directoryname Default: null AppstreamAgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-appstreamagentversion Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagearn Default: null Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: ImageName: !Ref 'ImageName' Description: !Ref 'Description' VpcConfig: {} EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DisplayName: !Ref 'DisplayName' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' AppstreamAgentVersion: !Ref 'AppstreamAgentVersion' InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' ImageArn: !Ref 'ImageArn' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-ImageBuilder/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: ImageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-description Default: null EnableDefaultInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-enabledefaultinternetaccess AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-displayname Default: null DomainJoinInfoOrganizationalUnitDistinguishedName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-organizationalunitdistinguishedname Default: null DomainJoinInfoDirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-directoryname Default: null AppstreamAgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-appstreamagentversion Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name ImageArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagearn Default: null Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: ImageName: !Ref 'ImageName' Description: !Ref 'Description' VpcConfig: {} EnableDefaultInternetAccess: !Ref 'EnableDefaultInternetAccess' DisplayName: !Ref 'DisplayName' DomainJoinInfo: OrganizationalUnitDistinguishedName: !Ref 'DomainJoinInfoOrganizationalUnitDistinguishedName' DirectoryName: !Ref 'DomainJoinInfoDirectoryName' AppstreamAgentVersion: !Ref 'AppstreamAgentVersion' InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' ImageArn: !Ref 'ImageArn' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Stack/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-description Default: null DeleteStorageConnectors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-deletestorageconnectors AllowedValues: - 'true' - 'false' Default: null RedirectURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-redirecturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-name Default: null FeedbackURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-feedbackurl Default: null ApplicationSettingsSettingsGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-settingsgroup Default: null ApplicationSettingsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-enabled AllowedValues: - 'true' - 'false' DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-displayname Default: null Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Properties: Description: !Ref 'Description' DeleteStorageConnectors: !Ref 'DeleteStorageConnectors' RedirectURL: !Ref 'RedirectURL' Name: !Ref 'Name' FeedbackURL: !Ref 'FeedbackURL' ApplicationSettings: SettingsGroup: !Ref 'ApplicationSettingsSettingsGroup' Enabled: !Ref 'ApplicationSettingsEnabled' DisplayName: !Ref 'DisplayName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Stack/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-description Default: null DeleteStorageConnectors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-deletestorageconnectors AllowedValues: - 'true' - 'false' Default: null RedirectURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-redirecturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-name Default: null FeedbackURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-feedbackurl Default: null ApplicationSettingsSettingsGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-settingsgroup Default: null ApplicationSettingsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-enabled AllowedValues: - 'true' - 'false' DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-displayname Default: null Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Properties: Description: !Ref 'Description' DeleteStorageConnectors: !Ref 'DeleteStorageConnectors' RedirectURL: !Ref 'RedirectURL' Name: !Ref 'Name' FeedbackURL: !Ref 'FeedbackURL' ApplicationSettings: SettingsGroup: !Ref 'ApplicationSettingsSettingsGroup' Enabled: !Ref 'ApplicationSettingsEnabled' DisplayName: !Ref 'DisplayName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Stack/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-description Default: null DeleteStorageConnectors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-deletestorageconnectors AllowedValues: - 'true' - 'false' Default: null RedirectURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-redirecturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-name Default: null FeedbackURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-feedbackurl Default: null ApplicationSettingsSettingsGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-settingsgroup Default: null ApplicationSettingsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-enabled AllowedValues: - 'true' - 'false' DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-displayname Default: null Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Properties: Description: !Ref 'Description' DeleteStorageConnectors: !Ref 'DeleteStorageConnectors' RedirectURL: !Ref 'RedirectURL' Name: !Ref 'Name' FeedbackURL: !Ref 'FeedbackURL' ApplicationSettings: SettingsGroup: !Ref 'ApplicationSettingsSettingsGroup' Enabled: !Ref 'ApplicationSettingsEnabled' DisplayName: !Ref 'DisplayName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Stack/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-description Default: null DeleteStorageConnectors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-deletestorageconnectors AllowedValues: - 'true' - 'false' Default: null RedirectURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-redirecturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-name Default: null FeedbackURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-feedbackurl Default: null ApplicationSettingsSettingsGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-settingsgroup Default: null ApplicationSettingsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-enabled AllowedValues: - 'true' - 'false' DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-displayname Default: null Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Properties: Description: !Ref 'Description' DeleteStorageConnectors: !Ref 'DeleteStorageConnectors' RedirectURL: !Ref 'RedirectURL' Name: !Ref 'Name' FeedbackURL: !Ref 'FeedbackURL' ApplicationSettings: SettingsGroup: !Ref 'ApplicationSettingsSettingsGroup' Enabled: !Ref 'ApplicationSettingsEnabled' DisplayName: !Ref 'DisplayName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Stack/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-description Default: null DeleteStorageConnectors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-deletestorageconnectors AllowedValues: - 'true' - 'false' Default: null RedirectURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-redirecturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-name Default: null FeedbackURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-feedbackurl Default: null ApplicationSettingsSettingsGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-settingsgroup Default: null ApplicationSettingsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-enabled AllowedValues: - 'true' - 'false' DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-displayname Default: null Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Properties: Description: !Ref 'Description' DeleteStorageConnectors: !Ref 'DeleteStorageConnectors' RedirectURL: !Ref 'RedirectURL' Name: !Ref 'Name' FeedbackURL: !Ref 'FeedbackURL' ApplicationSettings: SettingsGroup: !Ref 'ApplicationSettingsSettingsGroup' Enabled: !Ref 'ApplicationSettingsEnabled' DisplayName: !Ref 'DisplayName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Stack/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-description Default: null DeleteStorageConnectors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-deletestorageconnectors AllowedValues: - 'true' - 'false' Default: null RedirectURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-redirecturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-name Default: null FeedbackURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-feedbackurl Default: null ApplicationSettingsSettingsGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-settingsgroup Default: null ApplicationSettingsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-enabled AllowedValues: - 'true' - 'false' DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-displayname Default: null Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Properties: Description: !Ref 'Description' DeleteStorageConnectors: !Ref 'DeleteStorageConnectors' RedirectURL: !Ref 'RedirectURL' Name: !Ref 'Name' FeedbackURL: !Ref 'FeedbackURL' ApplicationSettings: SettingsGroup: !Ref 'ApplicationSettingsSettingsGroup' Enabled: !Ref 'ApplicationSettingsEnabled' DisplayName: !Ref 'DisplayName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Stack/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-description Default: null DeleteStorageConnectors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-deletestorageconnectors AllowedValues: - 'true' - 'false' Default: null RedirectURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-redirecturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-name Default: null FeedbackURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-feedbackurl Default: null ApplicationSettingsSettingsGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-settingsgroup Default: null ApplicationSettingsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-enabled AllowedValues: - 'true' - 'false' DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-displayname Default: null Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Properties: Description: !Ref 'Description' DeleteStorageConnectors: !Ref 'DeleteStorageConnectors' RedirectURL: !Ref 'RedirectURL' Name: !Ref 'Name' FeedbackURL: !Ref 'FeedbackURL' ApplicationSettings: SettingsGroup: !Ref 'ApplicationSettingsSettingsGroup' Enabled: !Ref 'ApplicationSettingsEnabled' DisplayName: !Ref 'DisplayName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Stack/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-description Default: null DeleteStorageConnectors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-deletestorageconnectors AllowedValues: - 'true' - 'false' Default: null RedirectURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-redirecturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-name Default: null FeedbackURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-feedbackurl Default: null ApplicationSettingsSettingsGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-settingsgroup Default: null ApplicationSettingsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-enabled AllowedValues: - 'true' - 'false' DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-displayname Default: null Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Properties: Description: !Ref 'Description' DeleteStorageConnectors: !Ref 'DeleteStorageConnectors' RedirectURL: !Ref 'RedirectURL' Name: !Ref 'Name' FeedbackURL: !Ref 'FeedbackURL' ApplicationSettings: SettingsGroup: !Ref 'ApplicationSettingsSettingsGroup' Enabled: !Ref 'ApplicationSettingsEnabled' DisplayName: !Ref 'DisplayName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-Stack/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-description Default: null DeleteStorageConnectors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-deletestorageconnectors AllowedValues: - 'true' - 'false' Default: null RedirectURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-redirecturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-name Default: null FeedbackURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-feedbackurl Default: null ApplicationSettingsSettingsGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-settingsgroup Default: null ApplicationSettingsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-enabled AllowedValues: - 'true' - 'false' DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-displayname Default: null Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Properties: Description: !Ref 'Description' DeleteStorageConnectors: !Ref 'DeleteStorageConnectors' RedirectURL: !Ref 'RedirectURL' Name: !Ref 'Name' FeedbackURL: !Ref 'FeedbackURL' ApplicationSettings: SettingsGroup: !Ref 'ApplicationSettingsSettingsGroup' Enabled: !Ref 'ApplicationSettingsEnabled' DisplayName: !Ref 'DisplayName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackUserAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: SendEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-sendemailnotification AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: SendEmailNotification: !Ref 'SendEmailNotification' UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackUserAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: SendEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-sendemailnotification AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: SendEmailNotification: !Ref 'SendEmailNotification' UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackUserAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: SendEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-sendemailnotification AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: SendEmailNotification: !Ref 'SendEmailNotification' UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackUserAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: SendEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-sendemailnotification AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: SendEmailNotification: !Ref 'SendEmailNotification' UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackUserAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: SendEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-sendemailnotification AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: SendEmailNotification: !Ref 'SendEmailNotification' UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackUserAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: SendEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-sendemailnotification AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: SendEmailNotification: !Ref 'SendEmailNotification' UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackUserAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: SendEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-sendemailnotification AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: SendEmailNotification: !Ref 'SendEmailNotification' UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackUserAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: SendEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-sendemailnotification AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: SendEmailNotification: !Ref 'SendEmailNotification' UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-StackUserAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: SendEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-sendemailnotification AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: SendEmailNotification: !Ref 'SendEmailNotification' UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-User/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username FirstName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-firstname Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-messageaction Default: null LastName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-lastname Default: null AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' FirstName: !Ref 'FirstName' MessageAction: !Ref 'MessageAction' LastName: !Ref 'LastName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-User/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username FirstName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-firstname Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-messageaction Default: null LastName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-lastname Default: null AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' FirstName: !Ref 'FirstName' MessageAction: !Ref 'MessageAction' LastName: !Ref 'LastName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-User/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username FirstName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-firstname Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-messageaction Default: null LastName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-lastname Default: null AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' FirstName: !Ref 'FirstName' MessageAction: !Ref 'MessageAction' LastName: !Ref 'LastName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-User/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username FirstName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-firstname Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-messageaction Default: null LastName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-lastname Default: null AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' FirstName: !Ref 'FirstName' MessageAction: !Ref 'MessageAction' LastName: !Ref 'LastName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-User/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username FirstName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-firstname Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-messageaction Default: null LastName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-lastname Default: null AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' FirstName: !Ref 'FirstName' MessageAction: !Ref 'MessageAction' LastName: !Ref 'LastName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-User/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username FirstName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-firstname Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-messageaction Default: null LastName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-lastname Default: null AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' FirstName: !Ref 'FirstName' MessageAction: !Ref 'MessageAction' LastName: !Ref 'LastName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-User/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username FirstName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-firstname Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-messageaction Default: null LastName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-lastname Default: null AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' FirstName: !Ref 'FirstName' MessageAction: !Ref 'MessageAction' LastName: !Ref 'LastName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-User/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username FirstName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-firstname Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-messageaction Default: null LastName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-lastname Default: null AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' FirstName: !Ref 'FirstName' MessageAction: !Ref 'MessageAction' LastName: !Ref 'LastName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppStream-User/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username FirstName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-firstname Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-messageaction Default: null LastName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-lastname Default: null AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' FirstName: !Ref 'FirstName' MessageAction: !Ref 'MessageAction' LastName: !Ref 'LastName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiCache/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiCache/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiCache/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiCache/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiCache/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiCache/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiCache/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiCache/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiCache/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiCache/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiCache/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiKey/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-description Default: null Expires: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-expires Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-apiid Resources: Resource: Type: AWS::AppSync::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Properties: Description: !Ref 'Description' Expires: !Ref 'Expires' ApiId: !Ref 'ApiId' Outputs: ApiKey: Value: GetAtt: - Resource - ApiKey Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiKey/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-description Default: null Expires: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-expires Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-apiid Resources: Resource: Type: AWS::AppSync::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Properties: Description: !Ref 'Description' Expires: !Ref 'Expires' ApiId: !Ref 'ApiId' Outputs: ApiKey: Value: GetAtt: - Resource - ApiKey Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiKey/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-description Default: null Expires: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-expires Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-apiid Resources: Resource: Type: AWS::AppSync::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Properties: Description: !Ref 'Description' Expires: !Ref 'Expires' ApiId: !Ref 'ApiId' Outputs: ApiKey: Value: GetAtt: - Resource - ApiKey Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiKey/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-description Default: null Expires: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-expires Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-apiid Resources: Resource: Type: AWS::AppSync::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Properties: Description: !Ref 'Description' Expires: !Ref 'Expires' ApiId: !Ref 'ApiId' Outputs: ApiKey: Value: GetAtt: - Resource - ApiKey Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiKey/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-description Default: null Expires: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-expires Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-apiid Resources: Resource: Type: AWS::AppSync::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Properties: Description: !Ref 'Description' Expires: !Ref 'Expires' ApiId: !Ref 'ApiId' Outputs: ApiKey: Value: GetAtt: - Resource - ApiKey Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-ApiKey/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-description Default: null Expires: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-expires Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-apiid Resources: Resource: Type: AWS::AppSync::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Properties: Description: !Ref 'Description' Expires: !Ref 'Expires' ApiId: !Ref 'ApiId' Outputs: ApiKey: Value: GetAtt: - Resource - ApiKey Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-DataSource/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-servicerolearn Default: null HttpConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html#cfn-appsync-datasource-httpconfig-endpoint HttpConfigAuthorizationConfigAwsIamConfigSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingregion Default: null HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingservicename Default: null HttpConfigAuthorizationConfigAuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html#cfn-appsync-datasource-authorizationconfig-authorizationtype RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awsregion RelationalDatabaseConfigRdsHttpEndpointConfigSchema: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-schema Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-databasename Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-dbclusteridentifier RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awssecretstorearn RelationalDatabaseConfigRelationalDatabaseSourceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html#cfn-appsync-datasource-relationaldatabaseconfig-relationaldatabasesourcetype LambdaConfigLambdaFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-lambdaconfig.html#cfn-appsync-datasource-lambdaconfig-lambdafunctionarn ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name DynamoDBConfigTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-tablename DynamoDBConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-awsregion DynamoDBConfigVersioned: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-versioned AllowedValues: - 'true' - 'false' Default: null DynamoDBConfigDeltaSyncConfigBaseTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-basetablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablename DynamoDBConfigUseCallerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-usecallercredentials AllowedValues: - 'true' - 'false' Default: null ElasticsearchConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-awsregion ElasticsearchConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-endpoint Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' HttpConfig: Endpoint: !Ref 'HttpConfigEndpoint' AuthorizationConfig: AwsIamConfig: SigningRegion: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningRegion' SigningServiceName: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName' AuthorizationType: !Ref 'HttpConfigAuthorizationConfigAuthorizationType' RelationalDatabaseConfig: RdsHttpEndpointConfig: AwsRegion: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion' Schema: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigSchema' DatabaseName: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName' DbClusterIdentifier: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier' AwsSecretStoreArn: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn' RelationalDatabaseSourceType: !Ref 'RelationalDatabaseConfigRelationalDatabaseSourceType' LambdaConfig: LambdaFunctionArn: !Ref 'LambdaConfigLambdaFunctionArn' ApiId: !Ref 'ApiId' Name: !Ref 'Name' DynamoDBConfig: TableName: !Ref 'DynamoDBConfigTableName' AwsRegion: !Ref 'DynamoDBConfigAwsRegion' Versioned: !Ref 'DynamoDBConfigVersioned' DeltaSyncConfig: BaseTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigBaseTableTTL' DeltaSyncTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL' DeltaSyncTableName: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableName' UseCallerCredentials: !Ref 'DynamoDBConfigUseCallerCredentials' ElasticsearchConfig: AwsRegion: !Ref 'ElasticsearchConfigAwsRegion' Endpoint: !Ref 'ElasticsearchConfigEndpoint' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-DataSource/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-servicerolearn Default: null HttpConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html#cfn-appsync-datasource-httpconfig-endpoint HttpConfigAuthorizationConfigAwsIamConfigSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingregion Default: null HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingservicename Default: null HttpConfigAuthorizationConfigAuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html#cfn-appsync-datasource-authorizationconfig-authorizationtype RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awsregion RelationalDatabaseConfigRdsHttpEndpointConfigSchema: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-schema Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-databasename Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-dbclusteridentifier RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awssecretstorearn RelationalDatabaseConfigRelationalDatabaseSourceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html#cfn-appsync-datasource-relationaldatabaseconfig-relationaldatabasesourcetype LambdaConfigLambdaFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-lambdaconfig.html#cfn-appsync-datasource-lambdaconfig-lambdafunctionarn ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name DynamoDBConfigTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-tablename DynamoDBConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-awsregion DynamoDBConfigVersioned: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-versioned AllowedValues: - 'true' - 'false' Default: null DynamoDBConfigDeltaSyncConfigBaseTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-basetablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablename DynamoDBConfigUseCallerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-usecallercredentials AllowedValues: - 'true' - 'false' Default: null ElasticsearchConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-awsregion ElasticsearchConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-endpoint Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' HttpConfig: Endpoint: !Ref 'HttpConfigEndpoint' AuthorizationConfig: AwsIamConfig: SigningRegion: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningRegion' SigningServiceName: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName' AuthorizationType: !Ref 'HttpConfigAuthorizationConfigAuthorizationType' RelationalDatabaseConfig: RdsHttpEndpointConfig: AwsRegion: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion' Schema: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigSchema' DatabaseName: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName' DbClusterIdentifier: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier' AwsSecretStoreArn: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn' RelationalDatabaseSourceType: !Ref 'RelationalDatabaseConfigRelationalDatabaseSourceType' LambdaConfig: LambdaFunctionArn: !Ref 'LambdaConfigLambdaFunctionArn' ApiId: !Ref 'ApiId' Name: !Ref 'Name' DynamoDBConfig: TableName: !Ref 'DynamoDBConfigTableName' AwsRegion: !Ref 'DynamoDBConfigAwsRegion' Versioned: !Ref 'DynamoDBConfigVersioned' DeltaSyncConfig: BaseTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigBaseTableTTL' DeltaSyncTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL' DeltaSyncTableName: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableName' UseCallerCredentials: !Ref 'DynamoDBConfigUseCallerCredentials' ElasticsearchConfig: AwsRegion: !Ref 'ElasticsearchConfigAwsRegion' Endpoint: !Ref 'ElasticsearchConfigEndpoint' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-DataSource/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-servicerolearn Default: null HttpConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html#cfn-appsync-datasource-httpconfig-endpoint HttpConfigAuthorizationConfigAwsIamConfigSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingregion Default: null HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingservicename Default: null HttpConfigAuthorizationConfigAuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html#cfn-appsync-datasource-authorizationconfig-authorizationtype RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awsregion RelationalDatabaseConfigRdsHttpEndpointConfigSchema: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-schema Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-databasename Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-dbclusteridentifier RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awssecretstorearn RelationalDatabaseConfigRelationalDatabaseSourceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html#cfn-appsync-datasource-relationaldatabaseconfig-relationaldatabasesourcetype LambdaConfigLambdaFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-lambdaconfig.html#cfn-appsync-datasource-lambdaconfig-lambdafunctionarn ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name DynamoDBConfigTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-tablename DynamoDBConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-awsregion DynamoDBConfigVersioned: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-versioned AllowedValues: - 'true' - 'false' Default: null DynamoDBConfigDeltaSyncConfigBaseTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-basetablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablename DynamoDBConfigUseCallerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-usecallercredentials AllowedValues: - 'true' - 'false' Default: null ElasticsearchConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-awsregion ElasticsearchConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-endpoint Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' HttpConfig: Endpoint: !Ref 'HttpConfigEndpoint' AuthorizationConfig: AwsIamConfig: SigningRegion: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningRegion' SigningServiceName: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName' AuthorizationType: !Ref 'HttpConfigAuthorizationConfigAuthorizationType' RelationalDatabaseConfig: RdsHttpEndpointConfig: AwsRegion: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion' Schema: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigSchema' DatabaseName: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName' DbClusterIdentifier: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier' AwsSecretStoreArn: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn' RelationalDatabaseSourceType: !Ref 'RelationalDatabaseConfigRelationalDatabaseSourceType' LambdaConfig: LambdaFunctionArn: !Ref 'LambdaConfigLambdaFunctionArn' ApiId: !Ref 'ApiId' Name: !Ref 'Name' DynamoDBConfig: TableName: !Ref 'DynamoDBConfigTableName' AwsRegion: !Ref 'DynamoDBConfigAwsRegion' Versioned: !Ref 'DynamoDBConfigVersioned' DeltaSyncConfig: BaseTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigBaseTableTTL' DeltaSyncTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL' DeltaSyncTableName: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableName' UseCallerCredentials: !Ref 'DynamoDBConfigUseCallerCredentials' ElasticsearchConfig: AwsRegion: !Ref 'ElasticsearchConfigAwsRegion' Endpoint: !Ref 'ElasticsearchConfigEndpoint' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-DataSource/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-servicerolearn Default: null HttpConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html#cfn-appsync-datasource-httpconfig-endpoint HttpConfigAuthorizationConfigAwsIamConfigSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingregion Default: null HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingservicename Default: null HttpConfigAuthorizationConfigAuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html#cfn-appsync-datasource-authorizationconfig-authorizationtype RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awsregion RelationalDatabaseConfigRdsHttpEndpointConfigSchema: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-schema Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-databasename Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-dbclusteridentifier RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awssecretstorearn RelationalDatabaseConfigRelationalDatabaseSourceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html#cfn-appsync-datasource-relationaldatabaseconfig-relationaldatabasesourcetype LambdaConfigLambdaFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-lambdaconfig.html#cfn-appsync-datasource-lambdaconfig-lambdafunctionarn ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name DynamoDBConfigTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-tablename DynamoDBConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-awsregion DynamoDBConfigVersioned: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-versioned AllowedValues: - 'true' - 'false' Default: null DynamoDBConfigDeltaSyncConfigBaseTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-basetablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablename DynamoDBConfigUseCallerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-usecallercredentials AllowedValues: - 'true' - 'false' Default: null ElasticsearchConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-awsregion ElasticsearchConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-endpoint Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' HttpConfig: Endpoint: !Ref 'HttpConfigEndpoint' AuthorizationConfig: AwsIamConfig: SigningRegion: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningRegion' SigningServiceName: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName' AuthorizationType: !Ref 'HttpConfigAuthorizationConfigAuthorizationType' RelationalDatabaseConfig: RdsHttpEndpointConfig: AwsRegion: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion' Schema: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigSchema' DatabaseName: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName' DbClusterIdentifier: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier' AwsSecretStoreArn: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn' RelationalDatabaseSourceType: !Ref 'RelationalDatabaseConfigRelationalDatabaseSourceType' LambdaConfig: LambdaFunctionArn: !Ref 'LambdaConfigLambdaFunctionArn' ApiId: !Ref 'ApiId' Name: !Ref 'Name' DynamoDBConfig: TableName: !Ref 'DynamoDBConfigTableName' AwsRegion: !Ref 'DynamoDBConfigAwsRegion' Versioned: !Ref 'DynamoDBConfigVersioned' DeltaSyncConfig: BaseTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigBaseTableTTL' DeltaSyncTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL' DeltaSyncTableName: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableName' UseCallerCredentials: !Ref 'DynamoDBConfigUseCallerCredentials' ElasticsearchConfig: AwsRegion: !Ref 'ElasticsearchConfigAwsRegion' Endpoint: !Ref 'ElasticsearchConfigEndpoint' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-DataSource/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-servicerolearn Default: null HttpConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html#cfn-appsync-datasource-httpconfig-endpoint HttpConfigAuthorizationConfigAwsIamConfigSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingregion Default: null HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingservicename Default: null HttpConfigAuthorizationConfigAuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html#cfn-appsync-datasource-authorizationconfig-authorizationtype RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awsregion RelationalDatabaseConfigRdsHttpEndpointConfigSchema: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-schema Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-databasename Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-dbclusteridentifier RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awssecretstorearn RelationalDatabaseConfigRelationalDatabaseSourceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html#cfn-appsync-datasource-relationaldatabaseconfig-relationaldatabasesourcetype LambdaConfigLambdaFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-lambdaconfig.html#cfn-appsync-datasource-lambdaconfig-lambdafunctionarn ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name DynamoDBConfigTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-tablename DynamoDBConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-awsregion DynamoDBConfigVersioned: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-versioned AllowedValues: - 'true' - 'false' Default: null DynamoDBConfigDeltaSyncConfigBaseTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-basetablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablename DynamoDBConfigUseCallerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-usecallercredentials AllowedValues: - 'true' - 'false' Default: null ElasticsearchConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-awsregion ElasticsearchConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-endpoint Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' HttpConfig: Endpoint: !Ref 'HttpConfigEndpoint' AuthorizationConfig: AwsIamConfig: SigningRegion: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningRegion' SigningServiceName: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName' AuthorizationType: !Ref 'HttpConfigAuthorizationConfigAuthorizationType' RelationalDatabaseConfig: RdsHttpEndpointConfig: AwsRegion: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion' Schema: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigSchema' DatabaseName: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName' DbClusterIdentifier: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier' AwsSecretStoreArn: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn' RelationalDatabaseSourceType: !Ref 'RelationalDatabaseConfigRelationalDatabaseSourceType' LambdaConfig: LambdaFunctionArn: !Ref 'LambdaConfigLambdaFunctionArn' ApiId: !Ref 'ApiId' Name: !Ref 'Name' DynamoDBConfig: TableName: !Ref 'DynamoDBConfigTableName' AwsRegion: !Ref 'DynamoDBConfigAwsRegion' Versioned: !Ref 'DynamoDBConfigVersioned' DeltaSyncConfig: BaseTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigBaseTableTTL' DeltaSyncTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL' DeltaSyncTableName: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableName' UseCallerCredentials: !Ref 'DynamoDBConfigUseCallerCredentials' ElasticsearchConfig: AwsRegion: !Ref 'ElasticsearchConfigAwsRegion' Endpoint: !Ref 'ElasticsearchConfigEndpoint' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-DataSource/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-servicerolearn Default: null HttpConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html#cfn-appsync-datasource-httpconfig-endpoint HttpConfigAuthorizationConfigAwsIamConfigSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingregion Default: null HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingservicename Default: null HttpConfigAuthorizationConfigAuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html#cfn-appsync-datasource-authorizationconfig-authorizationtype RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awsregion RelationalDatabaseConfigRdsHttpEndpointConfigSchema: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-schema Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-databasename Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-dbclusteridentifier RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awssecretstorearn RelationalDatabaseConfigRelationalDatabaseSourceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html#cfn-appsync-datasource-relationaldatabaseconfig-relationaldatabasesourcetype LambdaConfigLambdaFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-lambdaconfig.html#cfn-appsync-datasource-lambdaconfig-lambdafunctionarn ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name DynamoDBConfigTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-tablename DynamoDBConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-awsregion DynamoDBConfigVersioned: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-versioned AllowedValues: - 'true' - 'false' Default: null DynamoDBConfigDeltaSyncConfigBaseTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-basetablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablename DynamoDBConfigUseCallerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-usecallercredentials AllowedValues: - 'true' - 'false' Default: null ElasticsearchConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-awsregion ElasticsearchConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-endpoint Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' HttpConfig: Endpoint: !Ref 'HttpConfigEndpoint' AuthorizationConfig: AwsIamConfig: SigningRegion: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningRegion' SigningServiceName: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName' AuthorizationType: !Ref 'HttpConfigAuthorizationConfigAuthorizationType' RelationalDatabaseConfig: RdsHttpEndpointConfig: AwsRegion: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion' Schema: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigSchema' DatabaseName: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName' DbClusterIdentifier: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier' AwsSecretStoreArn: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn' RelationalDatabaseSourceType: !Ref 'RelationalDatabaseConfigRelationalDatabaseSourceType' LambdaConfig: LambdaFunctionArn: !Ref 'LambdaConfigLambdaFunctionArn' ApiId: !Ref 'ApiId' Name: !Ref 'Name' DynamoDBConfig: TableName: !Ref 'DynamoDBConfigTableName' AwsRegion: !Ref 'DynamoDBConfigAwsRegion' Versioned: !Ref 'DynamoDBConfigVersioned' DeltaSyncConfig: BaseTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigBaseTableTTL' DeltaSyncTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL' DeltaSyncTableName: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableName' UseCallerCredentials: !Ref 'DynamoDBConfigUseCallerCredentials' ElasticsearchConfig: AwsRegion: !Ref 'ElasticsearchConfigAwsRegion' Endpoint: !Ref 'ElasticsearchConfigEndpoint' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-DataSource/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-servicerolearn Default: null HttpConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html#cfn-appsync-datasource-httpconfig-endpoint HttpConfigAuthorizationConfigAwsIamConfigSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingregion Default: null HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingservicename Default: null HttpConfigAuthorizationConfigAuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html#cfn-appsync-datasource-authorizationconfig-authorizationtype RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awsregion RelationalDatabaseConfigRdsHttpEndpointConfigSchema: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-schema Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-databasename Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-dbclusteridentifier RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awssecretstorearn RelationalDatabaseConfigRelationalDatabaseSourceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html#cfn-appsync-datasource-relationaldatabaseconfig-relationaldatabasesourcetype LambdaConfigLambdaFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-lambdaconfig.html#cfn-appsync-datasource-lambdaconfig-lambdafunctionarn ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name DynamoDBConfigTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-tablename DynamoDBConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-awsregion DynamoDBConfigVersioned: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-versioned AllowedValues: - 'true' - 'false' Default: null DynamoDBConfigDeltaSyncConfigBaseTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-basetablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablename DynamoDBConfigUseCallerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-usecallercredentials AllowedValues: - 'true' - 'false' Default: null ElasticsearchConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-awsregion ElasticsearchConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-endpoint Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' HttpConfig: Endpoint: !Ref 'HttpConfigEndpoint' AuthorizationConfig: AwsIamConfig: SigningRegion: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningRegion' SigningServiceName: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName' AuthorizationType: !Ref 'HttpConfigAuthorizationConfigAuthorizationType' RelationalDatabaseConfig: RdsHttpEndpointConfig: AwsRegion: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion' Schema: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigSchema' DatabaseName: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName' DbClusterIdentifier: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier' AwsSecretStoreArn: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn' RelationalDatabaseSourceType: !Ref 'RelationalDatabaseConfigRelationalDatabaseSourceType' LambdaConfig: LambdaFunctionArn: !Ref 'LambdaConfigLambdaFunctionArn' ApiId: !Ref 'ApiId' Name: !Ref 'Name' DynamoDBConfig: TableName: !Ref 'DynamoDBConfigTableName' AwsRegion: !Ref 'DynamoDBConfigAwsRegion' Versioned: !Ref 'DynamoDBConfigVersioned' DeltaSyncConfig: BaseTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigBaseTableTTL' DeltaSyncTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL' DeltaSyncTableName: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableName' UseCallerCredentials: !Ref 'DynamoDBConfigUseCallerCredentials' ElasticsearchConfig: AwsRegion: !Ref 'ElasticsearchConfigAwsRegion' Endpoint: !Ref 'ElasticsearchConfigEndpoint' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-DataSource/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-servicerolearn Default: null HttpConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html#cfn-appsync-datasource-httpconfig-endpoint HttpConfigAuthorizationConfigAwsIamConfigSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingregion Default: null HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingservicename Default: null HttpConfigAuthorizationConfigAuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html#cfn-appsync-datasource-authorizationconfig-authorizationtype RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awsregion RelationalDatabaseConfigRdsHttpEndpointConfigSchema: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-schema Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-databasename Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-dbclusteridentifier RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awssecretstorearn RelationalDatabaseConfigRelationalDatabaseSourceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html#cfn-appsync-datasource-relationaldatabaseconfig-relationaldatabasesourcetype LambdaConfigLambdaFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-lambdaconfig.html#cfn-appsync-datasource-lambdaconfig-lambdafunctionarn ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name DynamoDBConfigTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-tablename DynamoDBConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-awsregion DynamoDBConfigVersioned: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-versioned AllowedValues: - 'true' - 'false' Default: null DynamoDBConfigDeltaSyncConfigBaseTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-basetablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablename DynamoDBConfigUseCallerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-usecallercredentials AllowedValues: - 'true' - 'false' Default: null ElasticsearchConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-awsregion ElasticsearchConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-endpoint Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' HttpConfig: Endpoint: !Ref 'HttpConfigEndpoint' AuthorizationConfig: AwsIamConfig: SigningRegion: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningRegion' SigningServiceName: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName' AuthorizationType: !Ref 'HttpConfigAuthorizationConfigAuthorizationType' RelationalDatabaseConfig: RdsHttpEndpointConfig: AwsRegion: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion' Schema: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigSchema' DatabaseName: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName' DbClusterIdentifier: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier' AwsSecretStoreArn: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn' RelationalDatabaseSourceType: !Ref 'RelationalDatabaseConfigRelationalDatabaseSourceType' LambdaConfig: LambdaFunctionArn: !Ref 'LambdaConfigLambdaFunctionArn' ApiId: !Ref 'ApiId' Name: !Ref 'Name' DynamoDBConfig: TableName: !Ref 'DynamoDBConfigTableName' AwsRegion: !Ref 'DynamoDBConfigAwsRegion' Versioned: !Ref 'DynamoDBConfigVersioned' DeltaSyncConfig: BaseTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigBaseTableTTL' DeltaSyncTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL' DeltaSyncTableName: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableName' UseCallerCredentials: !Ref 'DynamoDBConfigUseCallerCredentials' ElasticsearchConfig: AwsRegion: !Ref 'ElasticsearchConfigAwsRegion' Endpoint: !Ref 'ElasticsearchConfigEndpoint' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-DataSource/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-servicerolearn Default: null HttpConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html#cfn-appsync-datasource-httpconfig-endpoint HttpConfigAuthorizationConfigAwsIamConfigSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingregion Default: null HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingservicename Default: null HttpConfigAuthorizationConfigAuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html#cfn-appsync-datasource-authorizationconfig-authorizationtype RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awsregion RelationalDatabaseConfigRdsHttpEndpointConfigSchema: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-schema Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-databasename Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-dbclusteridentifier RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awssecretstorearn RelationalDatabaseConfigRelationalDatabaseSourceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html#cfn-appsync-datasource-relationaldatabaseconfig-relationaldatabasesourcetype LambdaConfigLambdaFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-lambdaconfig.html#cfn-appsync-datasource-lambdaconfig-lambdafunctionarn ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name DynamoDBConfigTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-tablename DynamoDBConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-awsregion DynamoDBConfigVersioned: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-versioned AllowedValues: - 'true' - 'false' Default: null DynamoDBConfigDeltaSyncConfigBaseTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-basetablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablename DynamoDBConfigUseCallerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-usecallercredentials AllowedValues: - 'true' - 'false' Default: null ElasticsearchConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-awsregion ElasticsearchConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-endpoint Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' HttpConfig: Endpoint: !Ref 'HttpConfigEndpoint' AuthorizationConfig: AwsIamConfig: SigningRegion: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningRegion' SigningServiceName: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName' AuthorizationType: !Ref 'HttpConfigAuthorizationConfigAuthorizationType' RelationalDatabaseConfig: RdsHttpEndpointConfig: AwsRegion: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion' Schema: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigSchema' DatabaseName: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName' DbClusterIdentifier: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier' AwsSecretStoreArn: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn' RelationalDatabaseSourceType: !Ref 'RelationalDatabaseConfigRelationalDatabaseSourceType' LambdaConfig: LambdaFunctionArn: !Ref 'LambdaConfigLambdaFunctionArn' ApiId: !Ref 'ApiId' Name: !Ref 'Name' DynamoDBConfig: TableName: !Ref 'DynamoDBConfigTableName' AwsRegion: !Ref 'DynamoDBConfigAwsRegion' Versioned: !Ref 'DynamoDBConfigVersioned' DeltaSyncConfig: BaseTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigBaseTableTTL' DeltaSyncTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL' DeltaSyncTableName: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableName' UseCallerCredentials: !Ref 'DynamoDBConfigUseCallerCredentials' ElasticsearchConfig: AwsRegion: !Ref 'ElasticsearchConfigAwsRegion' Endpoint: !Ref 'ElasticsearchConfigEndpoint' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-DataSource/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-servicerolearn Default: null HttpConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html#cfn-appsync-datasource-httpconfig-endpoint HttpConfigAuthorizationConfigAwsIamConfigSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingregion Default: null HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingservicename Default: null HttpConfigAuthorizationConfigAuthorizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html#cfn-appsync-datasource-authorizationconfig-authorizationtype RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awsregion RelationalDatabaseConfigRdsHttpEndpointConfigSchema: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-schema Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-databasename Default: null RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-dbclusteridentifier RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awssecretstorearn RelationalDatabaseConfigRelationalDatabaseSourceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html#cfn-appsync-datasource-relationaldatabaseconfig-relationaldatabasesourcetype LambdaConfigLambdaFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-lambdaconfig.html#cfn-appsync-datasource-lambdaconfig-lambdafunctionarn ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name DynamoDBConfigTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-tablename DynamoDBConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-awsregion DynamoDBConfigVersioned: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-versioned AllowedValues: - 'true' - 'false' Default: null DynamoDBConfigDeltaSyncConfigBaseTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-basetablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablettl DynamoDBConfigDeltaSyncConfigDeltaSyncTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablename DynamoDBConfigUseCallerCredentials: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html#cfn-appsync-datasource-dynamodbconfig-usecallercredentials AllowedValues: - 'true' - 'false' Default: null ElasticsearchConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-awsregion ElasticsearchConfigEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-elasticsearchconfig.html#cfn-appsync-datasource-elasticsearchconfig-endpoint Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' HttpConfig: Endpoint: !Ref 'HttpConfigEndpoint' AuthorizationConfig: AwsIamConfig: SigningRegion: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningRegion' SigningServiceName: !Ref 'HttpConfigAuthorizationConfigAwsIamConfigSigningServiceName' AuthorizationType: !Ref 'HttpConfigAuthorizationConfigAuthorizationType' RelationalDatabaseConfig: RdsHttpEndpointConfig: AwsRegion: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsRegion' Schema: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigSchema' DatabaseName: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDatabaseName' DbClusterIdentifier: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigDbClusterIdentifier' AwsSecretStoreArn: !Ref 'RelationalDatabaseConfigRdsHttpEndpointConfigAwsSecretStoreArn' RelationalDatabaseSourceType: !Ref 'RelationalDatabaseConfigRelationalDatabaseSourceType' LambdaConfig: LambdaFunctionArn: !Ref 'LambdaConfigLambdaFunctionArn' ApiId: !Ref 'ApiId' Name: !Ref 'Name' DynamoDBConfig: TableName: !Ref 'DynamoDBConfigTableName' AwsRegion: !Ref 'DynamoDBConfigAwsRegion' Versioned: !Ref 'DynamoDBConfigVersioned' DeltaSyncConfig: BaseTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigBaseTableTTL' DeltaSyncTableTTL: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableTTL' DeltaSyncTableName: !Ref 'DynamoDBConfigDeltaSyncConfigDeltaSyncTableName' UseCallerCredentials: !Ref 'DynamoDBConfigUseCallerCredentials' ElasticsearchConfig: AwsRegion: !Ref 'ElasticsearchConfigAwsRegion' Endpoint: !Ref 'ElasticsearchConfigEndpoint' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplates3location Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-description Default: null DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplate Default: null FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' Description: !Ref 'Description' DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' FunctionVersion: !Ref 'FunctionVersion' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplates3location Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-description Default: null DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplate Default: null FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' Description: !Ref 'Description' DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' FunctionVersion: !Ref 'FunctionVersion' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplates3location Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-description Default: null DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplate Default: null FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' Description: !Ref 'Description' DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' FunctionVersion: !Ref 'FunctionVersion' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplates3location Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-description Default: null DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplate Default: null FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' Description: !Ref 'Description' DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' FunctionVersion: !Ref 'FunctionVersion' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplates3location Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-description Default: null DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplate Default: null FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' Description: !Ref 'Description' DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' FunctionVersion: !Ref 'FunctionVersion' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplates3location Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-description Default: null DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplate Default: null FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' Description: !Ref 'Description' DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' FunctionVersion: !Ref 'FunctionVersion' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplates3location Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-description Default: null DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplate Default: null FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' Description: !Ref 'Description' DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' FunctionVersion: !Ref 'FunctionVersion' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplates3location Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-description Default: null DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplate Default: null FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' Description: !Ref 'Description' DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' FunctionVersion: !Ref 'FunctionVersion' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplates3location Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-description Default: null DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplate Default: null FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' Description: !Ref 'Description' DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' FunctionVersion: !Ref 'FunctionVersion' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplates3location Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-description Default: null DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-responsemappingtemplate Default: null FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' Description: !Ref 'Description' DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' FunctionVersion: !Ref 'FunctionVersion' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLApi/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: OpenIDConnectConfigIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-issuer Default: null OpenIDConnectConfigClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-clientid Default: null OpenIDConnectConfigAuthTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-authttl Default: null OpenIDConnectConfigIatTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-iatttl Default: null XrayEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-xrayenabled AllowedValues: - 'true' - 'false' Default: null UserPoolConfigAppIdClientRegex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-appidclientregex Default: null UserPoolConfigUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-userpoolid Default: null UserPoolConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-awsregion Default: null UserPoolConfigDefaultAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-defaultaction Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype LogConfigCloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-cloudwatchlogsrolearn Default: null LogConfigExcludeVerboseContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-excludeverbosecontent AllowedValues: - 'true' - 'false' Default: null LogConfigFieldLogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-fieldloglevel Default: null Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: OpenIDConnectConfig: Issuer: !Ref 'OpenIDConnectConfigIssuer' ClientId: !Ref 'OpenIDConnectConfigClientId' AuthTTL: !Ref 'OpenIDConnectConfigAuthTTL' IatTTL: !Ref 'OpenIDConnectConfigIatTTL' XrayEnabled: !Ref 'XrayEnabled' UserPoolConfig: AppIdClientRegex: !Ref 'UserPoolConfigAppIdClientRegex' UserPoolId: !Ref 'UserPoolConfigUserPoolId' AwsRegion: !Ref 'UserPoolConfigAwsRegion' DefaultAction: !Ref 'UserPoolConfigDefaultAction' Tags: {} Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' LogConfig: CloudWatchLogsRoleArn: !Ref 'LogConfigCloudWatchLogsRoleArn' ExcludeVerboseContent: !Ref 'LogConfigExcludeVerboseContent' FieldLogLevel: !Ref 'LogConfigFieldLogLevel' AdditionalAuthenticationProviders: {} Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLApi/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: OpenIDConnectConfigIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-issuer Default: null OpenIDConnectConfigClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-clientid Default: null OpenIDConnectConfigAuthTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-authttl Default: null OpenIDConnectConfigIatTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-iatttl Default: null XrayEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-xrayenabled AllowedValues: - 'true' - 'false' Default: null UserPoolConfigAppIdClientRegex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-appidclientregex Default: null UserPoolConfigUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-userpoolid Default: null UserPoolConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-awsregion Default: null UserPoolConfigDefaultAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-defaultaction Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype LogConfigCloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-cloudwatchlogsrolearn Default: null LogConfigExcludeVerboseContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-excludeverbosecontent AllowedValues: - 'true' - 'false' Default: null LogConfigFieldLogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-fieldloglevel Default: null Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: OpenIDConnectConfig: Issuer: !Ref 'OpenIDConnectConfigIssuer' ClientId: !Ref 'OpenIDConnectConfigClientId' AuthTTL: !Ref 'OpenIDConnectConfigAuthTTL' IatTTL: !Ref 'OpenIDConnectConfigIatTTL' XrayEnabled: !Ref 'XrayEnabled' UserPoolConfig: AppIdClientRegex: !Ref 'UserPoolConfigAppIdClientRegex' UserPoolId: !Ref 'UserPoolConfigUserPoolId' AwsRegion: !Ref 'UserPoolConfigAwsRegion' DefaultAction: !Ref 'UserPoolConfigDefaultAction' Tags: {} Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' LogConfig: CloudWatchLogsRoleArn: !Ref 'LogConfigCloudWatchLogsRoleArn' ExcludeVerboseContent: !Ref 'LogConfigExcludeVerboseContent' FieldLogLevel: !Ref 'LogConfigFieldLogLevel' AdditionalAuthenticationProviders: {} Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLApi/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: OpenIDConnectConfigIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-issuer Default: null OpenIDConnectConfigClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-clientid Default: null OpenIDConnectConfigAuthTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-authttl Default: null OpenIDConnectConfigIatTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-iatttl Default: null XrayEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-xrayenabled AllowedValues: - 'true' - 'false' Default: null UserPoolConfigAppIdClientRegex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-appidclientregex Default: null UserPoolConfigUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-userpoolid Default: null UserPoolConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-awsregion Default: null UserPoolConfigDefaultAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-defaultaction Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype LogConfigCloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-cloudwatchlogsrolearn Default: null LogConfigExcludeVerboseContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-excludeverbosecontent AllowedValues: - 'true' - 'false' Default: null LogConfigFieldLogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-fieldloglevel Default: null Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: OpenIDConnectConfig: Issuer: !Ref 'OpenIDConnectConfigIssuer' ClientId: !Ref 'OpenIDConnectConfigClientId' AuthTTL: !Ref 'OpenIDConnectConfigAuthTTL' IatTTL: !Ref 'OpenIDConnectConfigIatTTL' XrayEnabled: !Ref 'XrayEnabled' UserPoolConfig: AppIdClientRegex: !Ref 'UserPoolConfigAppIdClientRegex' UserPoolId: !Ref 'UserPoolConfigUserPoolId' AwsRegion: !Ref 'UserPoolConfigAwsRegion' DefaultAction: !Ref 'UserPoolConfigDefaultAction' Tags: {} Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' LogConfig: CloudWatchLogsRoleArn: !Ref 'LogConfigCloudWatchLogsRoleArn' ExcludeVerboseContent: !Ref 'LogConfigExcludeVerboseContent' FieldLogLevel: !Ref 'LogConfigFieldLogLevel' AdditionalAuthenticationProviders: {} Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLApi/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: OpenIDConnectConfigIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-issuer Default: null OpenIDConnectConfigClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-clientid Default: null OpenIDConnectConfigAuthTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-authttl Default: null OpenIDConnectConfigIatTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-iatttl Default: null XrayEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-xrayenabled AllowedValues: - 'true' - 'false' Default: null UserPoolConfigAppIdClientRegex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-appidclientregex Default: null UserPoolConfigUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-userpoolid Default: null UserPoolConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-awsregion Default: null UserPoolConfigDefaultAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-defaultaction Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype LogConfigCloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-cloudwatchlogsrolearn Default: null LogConfigExcludeVerboseContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-excludeverbosecontent AllowedValues: - 'true' - 'false' Default: null LogConfigFieldLogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-fieldloglevel Default: null Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: OpenIDConnectConfig: Issuer: !Ref 'OpenIDConnectConfigIssuer' ClientId: !Ref 'OpenIDConnectConfigClientId' AuthTTL: !Ref 'OpenIDConnectConfigAuthTTL' IatTTL: !Ref 'OpenIDConnectConfigIatTTL' XrayEnabled: !Ref 'XrayEnabled' UserPoolConfig: AppIdClientRegex: !Ref 'UserPoolConfigAppIdClientRegex' UserPoolId: !Ref 'UserPoolConfigUserPoolId' AwsRegion: !Ref 'UserPoolConfigAwsRegion' DefaultAction: !Ref 'UserPoolConfigDefaultAction' Tags: {} Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' LogConfig: CloudWatchLogsRoleArn: !Ref 'LogConfigCloudWatchLogsRoleArn' ExcludeVerboseContent: !Ref 'LogConfigExcludeVerboseContent' FieldLogLevel: !Ref 'LogConfigFieldLogLevel' AdditionalAuthenticationProviders: {} Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLApi/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: OpenIDConnectConfigIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-issuer Default: null OpenIDConnectConfigClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-clientid Default: null OpenIDConnectConfigAuthTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-authttl Default: null OpenIDConnectConfigIatTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-iatttl Default: null XrayEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-xrayenabled AllowedValues: - 'true' - 'false' Default: null UserPoolConfigAppIdClientRegex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-appidclientregex Default: null UserPoolConfigUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-userpoolid Default: null UserPoolConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-awsregion Default: null UserPoolConfigDefaultAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-defaultaction Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype LogConfigCloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-cloudwatchlogsrolearn Default: null LogConfigExcludeVerboseContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-excludeverbosecontent AllowedValues: - 'true' - 'false' Default: null LogConfigFieldLogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-fieldloglevel Default: null Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: OpenIDConnectConfig: Issuer: !Ref 'OpenIDConnectConfigIssuer' ClientId: !Ref 'OpenIDConnectConfigClientId' AuthTTL: !Ref 'OpenIDConnectConfigAuthTTL' IatTTL: !Ref 'OpenIDConnectConfigIatTTL' XrayEnabled: !Ref 'XrayEnabled' UserPoolConfig: AppIdClientRegex: !Ref 'UserPoolConfigAppIdClientRegex' UserPoolId: !Ref 'UserPoolConfigUserPoolId' AwsRegion: !Ref 'UserPoolConfigAwsRegion' DefaultAction: !Ref 'UserPoolConfigDefaultAction' Tags: {} Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' LogConfig: CloudWatchLogsRoleArn: !Ref 'LogConfigCloudWatchLogsRoleArn' ExcludeVerboseContent: !Ref 'LogConfigExcludeVerboseContent' FieldLogLevel: !Ref 'LogConfigFieldLogLevel' AdditionalAuthenticationProviders: {} Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLApi/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: OpenIDConnectConfigIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-issuer Default: null OpenIDConnectConfigClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-clientid Default: null OpenIDConnectConfigAuthTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-authttl Default: null OpenIDConnectConfigIatTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-iatttl Default: null XrayEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-xrayenabled AllowedValues: - 'true' - 'false' Default: null UserPoolConfigAppIdClientRegex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-appidclientregex Default: null UserPoolConfigUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-userpoolid Default: null UserPoolConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-awsregion Default: null UserPoolConfigDefaultAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-defaultaction Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype LogConfigCloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-cloudwatchlogsrolearn Default: null LogConfigExcludeVerboseContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-excludeverbosecontent AllowedValues: - 'true' - 'false' Default: null LogConfigFieldLogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-fieldloglevel Default: null Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: OpenIDConnectConfig: Issuer: !Ref 'OpenIDConnectConfigIssuer' ClientId: !Ref 'OpenIDConnectConfigClientId' AuthTTL: !Ref 'OpenIDConnectConfigAuthTTL' IatTTL: !Ref 'OpenIDConnectConfigIatTTL' XrayEnabled: !Ref 'XrayEnabled' UserPoolConfig: AppIdClientRegex: !Ref 'UserPoolConfigAppIdClientRegex' UserPoolId: !Ref 'UserPoolConfigUserPoolId' AwsRegion: !Ref 'UserPoolConfigAwsRegion' DefaultAction: !Ref 'UserPoolConfigDefaultAction' Tags: {} Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' LogConfig: CloudWatchLogsRoleArn: !Ref 'LogConfigCloudWatchLogsRoleArn' ExcludeVerboseContent: !Ref 'LogConfigExcludeVerboseContent' FieldLogLevel: !Ref 'LogConfigFieldLogLevel' AdditionalAuthenticationProviders: {} Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLApi/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: OpenIDConnectConfigIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-issuer Default: null OpenIDConnectConfigClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-clientid Default: null OpenIDConnectConfigAuthTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-authttl Default: null OpenIDConnectConfigIatTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-iatttl Default: null XrayEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-xrayenabled AllowedValues: - 'true' - 'false' Default: null UserPoolConfigAppIdClientRegex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-appidclientregex Default: null UserPoolConfigUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-userpoolid Default: null UserPoolConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-awsregion Default: null UserPoolConfigDefaultAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-defaultaction Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype LogConfigCloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-cloudwatchlogsrolearn Default: null LogConfigExcludeVerboseContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-excludeverbosecontent AllowedValues: - 'true' - 'false' Default: null LogConfigFieldLogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-fieldloglevel Default: null Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: OpenIDConnectConfig: Issuer: !Ref 'OpenIDConnectConfigIssuer' ClientId: !Ref 'OpenIDConnectConfigClientId' AuthTTL: !Ref 'OpenIDConnectConfigAuthTTL' IatTTL: !Ref 'OpenIDConnectConfigIatTTL' XrayEnabled: !Ref 'XrayEnabled' UserPoolConfig: AppIdClientRegex: !Ref 'UserPoolConfigAppIdClientRegex' UserPoolId: !Ref 'UserPoolConfigUserPoolId' AwsRegion: !Ref 'UserPoolConfigAwsRegion' DefaultAction: !Ref 'UserPoolConfigDefaultAction' Tags: {} Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' LogConfig: CloudWatchLogsRoleArn: !Ref 'LogConfigCloudWatchLogsRoleArn' ExcludeVerboseContent: !Ref 'LogConfigExcludeVerboseContent' FieldLogLevel: !Ref 'LogConfigFieldLogLevel' AdditionalAuthenticationProviders: {} Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLApi/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: OpenIDConnectConfigIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-issuer Default: null OpenIDConnectConfigClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-clientid Default: null OpenIDConnectConfigAuthTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-authttl Default: null OpenIDConnectConfigIatTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-iatttl Default: null XrayEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-xrayenabled AllowedValues: - 'true' - 'false' Default: null UserPoolConfigAppIdClientRegex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-appidclientregex Default: null UserPoolConfigUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-userpoolid Default: null UserPoolConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-awsregion Default: null UserPoolConfigDefaultAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-defaultaction Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype LogConfigCloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-cloudwatchlogsrolearn Default: null LogConfigExcludeVerboseContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-excludeverbosecontent AllowedValues: - 'true' - 'false' Default: null LogConfigFieldLogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-fieldloglevel Default: null Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: OpenIDConnectConfig: Issuer: !Ref 'OpenIDConnectConfigIssuer' ClientId: !Ref 'OpenIDConnectConfigClientId' AuthTTL: !Ref 'OpenIDConnectConfigAuthTTL' IatTTL: !Ref 'OpenIDConnectConfigIatTTL' XrayEnabled: !Ref 'XrayEnabled' UserPoolConfig: AppIdClientRegex: !Ref 'UserPoolConfigAppIdClientRegex' UserPoolId: !Ref 'UserPoolConfigUserPoolId' AwsRegion: !Ref 'UserPoolConfigAwsRegion' DefaultAction: !Ref 'UserPoolConfigDefaultAction' Tags: {} Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' LogConfig: CloudWatchLogsRoleArn: !Ref 'LogConfigCloudWatchLogsRoleArn' ExcludeVerboseContent: !Ref 'LogConfigExcludeVerboseContent' FieldLogLevel: !Ref 'LogConfigFieldLogLevel' AdditionalAuthenticationProviders: {} Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLApi/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: OpenIDConnectConfigIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-issuer Default: null OpenIDConnectConfigClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-clientid Default: null OpenIDConnectConfigAuthTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-authttl Default: null OpenIDConnectConfigIatTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-iatttl Default: null XrayEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-xrayenabled AllowedValues: - 'true' - 'false' Default: null UserPoolConfigAppIdClientRegex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-appidclientregex Default: null UserPoolConfigUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-userpoolid Default: null UserPoolConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-awsregion Default: null UserPoolConfigDefaultAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-defaultaction Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype LogConfigCloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-cloudwatchlogsrolearn Default: null LogConfigExcludeVerboseContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-excludeverbosecontent AllowedValues: - 'true' - 'false' Default: null LogConfigFieldLogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-fieldloglevel Default: null Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: OpenIDConnectConfig: Issuer: !Ref 'OpenIDConnectConfigIssuer' ClientId: !Ref 'OpenIDConnectConfigClientId' AuthTTL: !Ref 'OpenIDConnectConfigAuthTTL' IatTTL: !Ref 'OpenIDConnectConfigIatTTL' XrayEnabled: !Ref 'XrayEnabled' UserPoolConfig: AppIdClientRegex: !Ref 'UserPoolConfigAppIdClientRegex' UserPoolId: !Ref 'UserPoolConfigUserPoolId' AwsRegion: !Ref 'UserPoolConfigAwsRegion' DefaultAction: !Ref 'UserPoolConfigDefaultAction' Tags: {} Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' LogConfig: CloudWatchLogsRoleArn: !Ref 'LogConfigCloudWatchLogsRoleArn' ExcludeVerboseContent: !Ref 'LogConfigExcludeVerboseContent' FieldLogLevel: !Ref 'LogConfigFieldLogLevel' AdditionalAuthenticationProviders: {} Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLApi/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: OpenIDConnectConfigIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-issuer Default: null OpenIDConnectConfigClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-clientid Default: null OpenIDConnectConfigAuthTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-authttl Default: null OpenIDConnectConfigIatTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-iatttl Default: null XrayEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-xrayenabled AllowedValues: - 'true' - 'false' Default: null UserPoolConfigAppIdClientRegex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-appidclientregex Default: null UserPoolConfigUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-userpoolid Default: null UserPoolConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-awsregion Default: null UserPoolConfigDefaultAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-defaultaction Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype LogConfigCloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-cloudwatchlogsrolearn Default: null LogConfigExcludeVerboseContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-excludeverbosecontent AllowedValues: - 'true' - 'false' Default: null LogConfigFieldLogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-fieldloglevel Default: null Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: OpenIDConnectConfig: Issuer: !Ref 'OpenIDConnectConfigIssuer' ClientId: !Ref 'OpenIDConnectConfigClientId' AuthTTL: !Ref 'OpenIDConnectConfigAuthTTL' IatTTL: !Ref 'OpenIDConnectConfigIatTTL' XrayEnabled: !Ref 'XrayEnabled' UserPoolConfig: AppIdClientRegex: !Ref 'UserPoolConfigAppIdClientRegex' UserPoolId: !Ref 'UserPoolConfigUserPoolId' AwsRegion: !Ref 'UserPoolConfigAwsRegion' DefaultAction: !Ref 'UserPoolConfigDefaultAction' Tags: {} Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' LogConfig: CloudWatchLogsRoleArn: !Ref 'LogConfigCloudWatchLogsRoleArn' ExcludeVerboseContent: !Ref 'LogConfigExcludeVerboseContent' FieldLogLevel: !Ref 'LogConfigFieldLogLevel' AdditionalAuthenticationProviders: {} Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLApi/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: OpenIDConnectConfigIssuer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-issuer Default: null OpenIDConnectConfigClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-clientid Default: null OpenIDConnectConfigAuthTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-authttl Default: null OpenIDConnectConfigIatTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html#cfn-appsync-graphqlapi-openidconnectconfig-iatttl Default: null XrayEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-xrayenabled AllowedValues: - 'true' - 'false' Default: null UserPoolConfigAppIdClientRegex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-appidclientregex Default: null UserPoolConfigUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-userpoolid Default: null UserPoolConfigAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-awsregion Default: null UserPoolConfigDefaultAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html#cfn-appsync-graphqlapi-userpoolconfig-defaultaction Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype LogConfigCloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-cloudwatchlogsrolearn Default: null LogConfigExcludeVerboseContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-excludeverbosecontent AllowedValues: - 'true' - 'false' Default: null LogConfigFieldLogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html#cfn-appsync-graphqlapi-logconfig-fieldloglevel Default: null Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: OpenIDConnectConfig: Issuer: !Ref 'OpenIDConnectConfigIssuer' ClientId: !Ref 'OpenIDConnectConfigClientId' AuthTTL: !Ref 'OpenIDConnectConfigAuthTTL' IatTTL: !Ref 'OpenIDConnectConfigIatTTL' XrayEnabled: !Ref 'XrayEnabled' UserPoolConfig: AppIdClientRegex: !Ref 'UserPoolConfigAppIdClientRegex' UserPoolId: !Ref 'UserPoolConfigUserPoolId' AwsRegion: !Ref 'UserPoolConfigAwsRegion' DefaultAction: !Ref 'UserPoolConfigDefaultAction' Tags: {} Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' LogConfig: CloudWatchLogsRoleArn: !Ref 'LogConfigCloudWatchLogsRoleArn' ExcludeVerboseContent: !Ref 'LogConfigExcludeVerboseContent' FieldLogLevel: !Ref 'LogConfigFieldLogLevel' AdditionalAuthenticationProviders: {} Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLSchema/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Parameters: Definition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definition Default: null DefinitionS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definitions3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid Resources: Resource: Type: AWS::AppSync::GraphQLSchema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Properties: Definition: !Ref 'Definition' DefinitionS3Location: !Ref 'DefinitionS3Location' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLSchema/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Parameters: Definition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definition Default: null DefinitionS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definitions3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid Resources: Resource: Type: AWS::AppSync::GraphQLSchema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Properties: Definition: !Ref 'Definition' DefinitionS3Location: !Ref 'DefinitionS3Location' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLSchema/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Parameters: Definition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definition Default: null DefinitionS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definitions3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid Resources: Resource: Type: AWS::AppSync::GraphQLSchema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Properties: Definition: !Ref 'Definition' DefinitionS3Location: !Ref 'DefinitionS3Location' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLSchema/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Parameters: Definition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definition Default: null DefinitionS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definitions3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid Resources: Resource: Type: AWS::AppSync::GraphQLSchema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Properties: Definition: !Ref 'Definition' DefinitionS3Location: !Ref 'DefinitionS3Location' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLSchema/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Parameters: Definition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definition Default: null DefinitionS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definitions3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid Resources: Resource: Type: AWS::AppSync::GraphQLSchema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Properties: Definition: !Ref 'Definition' DefinitionS3Location: !Ref 'DefinitionS3Location' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLSchema/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Parameters: Definition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definition Default: null DefinitionS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definitions3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid Resources: Resource: Type: AWS::AppSync::GraphQLSchema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Properties: Definition: !Ref 'Definition' DefinitionS3Location: !Ref 'DefinitionS3Location' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-GraphQLSchema/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Parameters: Definition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definition Default: null DefinitionS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definitions3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid Resources: Resource: Type: AWS::AppSync::GraphQLSchema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Properties: Definition: !Ref 'Definition' DefinitionS3Location: !Ref 'DefinitionS3Location' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-Resolver/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplates3location Default: null TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-datasourcename Default: null RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplate Default: null Kind: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-kind Default: null CachingConfigTtl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-cachingconfig.html#cfn-appsync-resolver-cachingconfig-ttl Default: null SyncConfigConflictHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflicthandler Default: null SyncConfigConflictDetection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflictdetection SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-lambdaconflicthandlerconfig.html#cfn-appsync-resolver-lambdaconflicthandlerconfig-lambdaconflicthandlerarn Default: null RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' TypeName: !Ref 'TypeName' PipelineConfig: {} DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' Kind: !Ref 'Kind' CachingConfig: Ttl: !Ref 'CachingConfigTtl' SyncConfig: ConflictHandler: !Ref 'SyncConfigConflictHandler' ConflictDetection: !Ref 'SyncConfigConflictDetection' LambdaConflictHandlerConfig: LambdaConflictHandlerArn: !Ref 'SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-Resolver/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplates3location Default: null TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-datasourcename Default: null RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplate Default: null Kind: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-kind Default: null CachingConfigTtl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-cachingconfig.html#cfn-appsync-resolver-cachingconfig-ttl Default: null SyncConfigConflictHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflicthandler Default: null SyncConfigConflictDetection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflictdetection SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-lambdaconflicthandlerconfig.html#cfn-appsync-resolver-lambdaconflicthandlerconfig-lambdaconflicthandlerarn Default: null RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' TypeName: !Ref 'TypeName' PipelineConfig: {} DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' Kind: !Ref 'Kind' CachingConfig: Ttl: !Ref 'CachingConfigTtl' SyncConfig: ConflictHandler: !Ref 'SyncConfigConflictHandler' ConflictDetection: !Ref 'SyncConfigConflictDetection' LambdaConflictHandlerConfig: LambdaConflictHandlerArn: !Ref 'SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-Resolver/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplates3location Default: null TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-datasourcename Default: null RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplate Default: null Kind: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-kind Default: null CachingConfigTtl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-cachingconfig.html#cfn-appsync-resolver-cachingconfig-ttl Default: null SyncConfigConflictHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflicthandler Default: null SyncConfigConflictDetection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflictdetection SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-lambdaconflicthandlerconfig.html#cfn-appsync-resolver-lambdaconflicthandlerconfig-lambdaconflicthandlerarn Default: null RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' TypeName: !Ref 'TypeName' PipelineConfig: {} DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' Kind: !Ref 'Kind' CachingConfig: Ttl: !Ref 'CachingConfigTtl' SyncConfig: ConflictHandler: !Ref 'SyncConfigConflictHandler' ConflictDetection: !Ref 'SyncConfigConflictDetection' LambdaConflictHandlerConfig: LambdaConflictHandlerArn: !Ref 'SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-Resolver/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplates3location Default: null TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-datasourcename Default: null RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplate Default: null Kind: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-kind Default: null CachingConfigTtl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-cachingconfig.html#cfn-appsync-resolver-cachingconfig-ttl Default: null SyncConfigConflictHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflicthandler Default: null SyncConfigConflictDetection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflictdetection SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-lambdaconflicthandlerconfig.html#cfn-appsync-resolver-lambdaconflicthandlerconfig-lambdaconflicthandlerarn Default: null RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' TypeName: !Ref 'TypeName' PipelineConfig: {} DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' Kind: !Ref 'Kind' CachingConfig: Ttl: !Ref 'CachingConfigTtl' SyncConfig: ConflictHandler: !Ref 'SyncConfigConflictHandler' ConflictDetection: !Ref 'SyncConfigConflictDetection' LambdaConflictHandlerConfig: LambdaConflictHandlerArn: !Ref 'SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-Resolver/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplates3location Default: null TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-datasourcename Default: null RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplate Default: null Kind: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-kind Default: null CachingConfigTtl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-cachingconfig.html#cfn-appsync-resolver-cachingconfig-ttl Default: null SyncConfigConflictHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflicthandler Default: null SyncConfigConflictDetection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflictdetection SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-lambdaconflicthandlerconfig.html#cfn-appsync-resolver-lambdaconflicthandlerconfig-lambdaconflicthandlerarn Default: null RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' TypeName: !Ref 'TypeName' PipelineConfig: {} DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' Kind: !Ref 'Kind' CachingConfig: Ttl: !Ref 'CachingConfigTtl' SyncConfig: ConflictHandler: !Ref 'SyncConfigConflictHandler' ConflictDetection: !Ref 'SyncConfigConflictDetection' LambdaConflictHandlerConfig: LambdaConflictHandlerArn: !Ref 'SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-Resolver/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplates3location Default: null TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-datasourcename Default: null RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplate Default: null Kind: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-kind Default: null CachingConfigTtl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-cachingconfig.html#cfn-appsync-resolver-cachingconfig-ttl Default: null SyncConfigConflictHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflicthandler Default: null SyncConfigConflictDetection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflictdetection SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-lambdaconflicthandlerconfig.html#cfn-appsync-resolver-lambdaconflicthandlerconfig-lambdaconflicthandlerarn Default: null RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' TypeName: !Ref 'TypeName' PipelineConfig: {} DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' Kind: !Ref 'Kind' CachingConfig: Ttl: !Ref 'CachingConfigTtl' SyncConfig: ConflictHandler: !Ref 'SyncConfigConflictHandler' ConflictDetection: !Ref 'SyncConfigConflictDetection' LambdaConflictHandlerConfig: LambdaConflictHandlerArn: !Ref 'SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-Resolver/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplates3location Default: null TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-datasourcename Default: null RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplate Default: null Kind: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-kind Default: null CachingConfigTtl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-cachingconfig.html#cfn-appsync-resolver-cachingconfig-ttl Default: null SyncConfigConflictHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflicthandler Default: null SyncConfigConflictDetection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflictdetection SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-lambdaconflicthandlerconfig.html#cfn-appsync-resolver-lambdaconflicthandlerconfig-lambdaconflicthandlerarn Default: null RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' TypeName: !Ref 'TypeName' PipelineConfig: {} DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' Kind: !Ref 'Kind' CachingConfig: Ttl: !Ref 'CachingConfigTtl' SyncConfig: ConflictHandler: !Ref 'SyncConfigConflictHandler' ConflictDetection: !Ref 'SyncConfigConflictDetection' LambdaConflictHandlerConfig: LambdaConflictHandlerArn: !Ref 'SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-Resolver/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplates3location Default: null TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-datasourcename Default: null RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplate Default: null Kind: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-kind Default: null CachingConfigTtl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-cachingconfig.html#cfn-appsync-resolver-cachingconfig-ttl Default: null SyncConfigConflictHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflicthandler Default: null SyncConfigConflictDetection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflictdetection SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-lambdaconflicthandlerconfig.html#cfn-appsync-resolver-lambdaconflicthandlerconfig-lambdaconflicthandlerarn Default: null RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' TypeName: !Ref 'TypeName' PipelineConfig: {} DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' Kind: !Ref 'Kind' CachingConfig: Ttl: !Ref 'CachingConfigTtl' SyncConfig: ConflictHandler: !Ref 'SyncConfigConflictHandler' ConflictDetection: !Ref 'SyncConfigConflictDetection' LambdaConflictHandlerConfig: LambdaConflictHandlerArn: !Ref 'SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-Resolver/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplates3location Default: null TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-datasourcename Default: null RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplate Default: null Kind: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-kind Default: null CachingConfigTtl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-cachingconfig.html#cfn-appsync-resolver-cachingconfig-ttl Default: null SyncConfigConflictHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflicthandler Default: null SyncConfigConflictDetection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflictdetection SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-lambdaconflicthandlerconfig.html#cfn-appsync-resolver-lambdaconflicthandlerconfig-lambdaconflicthandlerarn Default: null RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' TypeName: !Ref 'TypeName' PipelineConfig: {} DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' Kind: !Ref 'Kind' CachingConfig: Ttl: !Ref 'CachingConfigTtl' SyncConfig: ConflictHandler: !Ref 'SyncConfigConflictHandler' ConflictDetection: !Ref 'SyncConfigConflictDetection' LambdaConflictHandlerConfig: LambdaConflictHandlerArn: !Ref 'SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AppSync-Resolver/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: ResponseMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplates3location Default: null TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-datasourcename Default: null RequestMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplate Default: null ResponseMappingTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-responsemappingtemplate Default: null Kind: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-kind Default: null CachingConfigTtl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-cachingconfig.html#cfn-appsync-resolver-cachingconfig-ttl Default: null SyncConfigConflictHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflicthandler Default: null SyncConfigConflictDetection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-conflictdetection SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-lambdaconflicthandlerconfig.html#cfn-appsync-resolver-lambdaconflicthandlerconfig-lambdaconflicthandlerarn Default: null RequestMappingTemplateS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplates3location Default: null ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: ResponseMappingTemplateS3Location: !Ref 'ResponseMappingTemplateS3Location' TypeName: !Ref 'TypeName' PipelineConfig: {} DataSourceName: !Ref 'DataSourceName' RequestMappingTemplate: !Ref 'RequestMappingTemplate' ResponseMappingTemplate: !Ref 'ResponseMappingTemplate' Kind: !Ref 'Kind' CachingConfig: Ttl: !Ref 'CachingConfigTtl' SyncConfig: ConflictHandler: !Ref 'SyncConfigConflictHandler' ConflictDetection: !Ref 'SyncConfigConflictDetection' LambdaConflictHandlerConfig: LambdaConflictHandlerArn: !Ref 'SyncConfigLambdaConflictHandlerConfigLambdaConflictHandlerArn' RequestMappingTemplateS3Location: !Ref 'RequestMappingTemplateS3Location' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace SuspendedStateDynamicScalingInSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalinginsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateDynamicScalingOutSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-dynamicscalingoutsuspended AllowedValues: - 'true' - 'false' Default: null SuspendedStateScheduledScalingSuspended: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html#cfn-applicationautoscaling-scalabletarget-suspendedstate-scheduledscalingsuspended AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' SuspendedState: DynamicScalingInSuspended: !Ref 'SuspendedStateDynamicScalingInSuspended' DynamicScalingOutSuspended: !Ref 'SuspendedStateDynamicScalingOutSuspended' ScheduledScalingSuspended: !Ref 'SuspendedStateScheduledScalingSuspended' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid Default: null ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension Default: null ScalingTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid Default: null ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace Default: null StepScalingPolicyConfigurationAdjustmentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype Default: null StepScalingPolicyConfigurationCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown Default: null StepScalingPolicyConfigurationMetricAggregationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype Default: null StepScalingPolicyConfigurationMinAdjustmentMagnitude: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude Default: null TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingScalingPolicyConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingScalingPolicyConfigurationScaleInCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown Default: null TargetTrackingScalingPolicyConfigurationScaleOutCooldown: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown Default: null TargetTrackingScalingPolicyConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ResourceId: !Ref 'ResourceId' ScalableDimension: !Ref 'ScalableDimension' ScalingTargetId: !Ref 'ScalingTargetId' ServiceNamespace: !Ref 'ServiceNamespace' StepScalingPolicyConfiguration: AdjustmentType: !Ref 'StepScalingPolicyConfigurationAdjustmentType' Cooldown: !Ref 'StepScalingPolicyConfigurationCooldown' MetricAggregationType: !Ref 'StepScalingPolicyConfigurationMetricAggregationType' MinAdjustmentMagnitude: !Ref 'StepScalingPolicyConfigurationMinAdjustmentMagnitude' TargetTrackingScalingPolicyConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingScalingPolicyConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationResourceLabel' ScaleInCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleInCooldown' ScaleOutCooldown: !Ref 'TargetTrackingScalingPolicyConfigurationScaleOutCooldown' TargetValue: !Ref 'TargetTrackingScalingPolicyConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-DataCatalog/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-NamedQuery/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-name Default: null Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-description Default: null QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Name: !Ref 'Name' Database: !Ref 'Database' Description: !Ref 'Description' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-NamedQuery/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-name Default: null Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-description Default: null QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Name: !Ref 'Name' Database: !Ref 'Database' Description: !Ref 'Description' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-NamedQuery/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-name Default: null Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-description Default: null QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Name: !Ref 'Name' Database: !Ref 'Database' Description: !Ref 'Description' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-NamedQuery/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-name Default: null Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-description Default: null QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Name: !Ref 'Name' Database: !Ref 'Database' Description: !Ref 'Description' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-NamedQuery/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-name Default: null Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-description Default: null QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Name: !Ref 'Name' Database: !Ref 'Database' Description: !Ref 'Description' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-NamedQuery/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-name Default: null Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-description Default: null QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Name: !Ref 'Name' Database: !Ref 'Database' Description: !Ref 'Description' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-NamedQuery/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-name Default: null Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-description Default: null QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Name: !Ref 'Name' Database: !Ref 'Database' Description: !Ref 'Description' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-NamedQuery/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-name Default: null Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-description Default: null QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Name: !Ref 'Name' Database: !Ref 'Database' Description: !Ref 'Description' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-NamedQuery/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-name Default: null Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-description Default: null QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Name: !Ref 'Name' Database: !Ref 'Database' Description: !Ref 'Description' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-NamedQuery/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-name Default: null Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-description Default: null QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Name: !Ref 'Name' Database: !Ref 'Database' Description: !Ref 'Description' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-NamedQuery/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-name Default: null Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-description Default: null QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Name: !Ref 'Name' Database: !Ref 'Database' Description: !Ref 'Description' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-NamedQuery/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-name Default: null Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-description Default: null QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Name: !Ref 'Name' Database: !Ref 'Database' Description: !Ref 'Description' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Athena-WorkGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-description Default: null WorkGroupConfigurationBytesScannedCutoffPerQuery: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-bytesscannedcutoffperquery Default: null WorkGroupConfigurationEnforceWorkGroupConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationPublishCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationRequesterPaysEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationResultConfigurationOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html#cfn-athena-workgroup-resultconfiguration-outputlocation Default: null WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-bytesscannedcutoffperquery Default: null WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-enforceworkgroupconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRequesterPaysEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-requesterpaysenabled AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-encryptionoption WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionconfiguration.html#cfn-athena-workgroup-encryptionconfiguration-kmskey Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-outputlocation Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeencryptionconfiguration AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfigurationupdates.html#cfn-athena-workgroup-resultconfigurationupdates-removeoutputlocation AllowedValues: - 'true' - 'false' Default: null WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-removebytesscannedcutoffperquery AllowedValues: - 'true' - 'false' Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-state Default: null RecursiveDeleteOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-recursivedeleteoption AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Tags: {} WorkGroupConfiguration: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationRequesterPaysEnabled' ResultConfiguration: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationResultConfigurationEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationResultConfigurationOutputLocation' WorkGroupConfigurationUpdates: BytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesBytesScannedCutoffPerQuery' EnforceWorkGroupConfiguration: !Ref 'WorkGroupConfigurationUpdatesEnforceWorkGroupConfiguration' PublishCloudWatchMetricsEnabled: !Ref 'WorkGroupConfigurationUpdatesPublishCloudWatchMetricsEnabled' RequesterPaysEnabled: !Ref 'WorkGroupConfigurationUpdatesRequesterPaysEnabled' ResultConfigurationUpdates: EncryptionConfiguration: EncryptionOption: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationEncryptionOption' KmsKey: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesEncryptionConfigurationKmsKey' OutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesOutputLocation' RemoveEncryptionConfiguration: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveEncryptionConfiguration' RemoveOutputLocation: !Ref 'WorkGroupConfigurationUpdatesResultConfigurationUpdatesRemoveOutputLocation' RemoveBytesScannedCutoffPerQuery: !Ref 'WorkGroupConfigurationUpdatesRemoveBytesScannedCutoffPerQuery' State: !Ref 'State' RecursiveDeleteOption: !Ref 'RecursiveDeleteOption' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-autoscalinggroupname Default: null Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown Default: null DesiredCapacity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity Default: null HealthCheckGracePeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod Default: null HealthCheckType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version MaxInstanceLifetime: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxinstancelifetime Default: null MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandbasecapacity Default: null MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-ondemandpercentageabovebasecapacity Default: null MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotallocationstrategy Default: null MixedInstancesPolicyInstancesDistributionSpotInstancePools: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotinstancepools Default: null MixedInstancesPolicyInstancesDistributionSpotMaxPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-as-mixedinstancespolicy-instancesdistribution.html#cfn-autoscaling-autoscalinggroup-instancesdistribution-spotmaxprice Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplateid Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-launchtemplatename Default: null MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html#cfn-autoscaling-autoscalinggroup-launchtemplatespecification-version NewInstancesProtectedFromScaleIn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-newinstancesprotectedfromscalein AllowedValues: - 'true' - 'false' Default: null PlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup Default: null ServiceLinkedRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-servicelinkedrolearn Default: null Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' DesiredCapacity: !Ref 'DesiredCapacity' HealthCheckGracePeriod: !Ref 'HealthCheckGracePeriod' HealthCheckType: !Ref 'HealthCheckType' InstanceId: !Ref 'InstanceId' LaunchConfigurationName: !Ref 'LaunchConfigurationName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' MaxInstanceLifetime: !Ref 'MaxInstanceLifetime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' MixedInstancesPolicy: InstancesDistribution: OnDemandAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandAllocationStrategy' OnDemandBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandBaseCapacity' OnDemandPercentageAboveBaseCapacity: !Ref 'MixedInstancesPolicyInstancesDistributionOnDemandPercentageAboveBaseCapacity' SpotAllocationStrategy: !Ref 'MixedInstancesPolicyInstancesDistributionSpotAllocationStrategy' SpotInstancePools: !Ref 'MixedInstancesPolicyInstancesDistributionSpotInstancePools' SpotMaxPrice: !Ref 'MixedInstancesPolicyInstancesDistributionSpotMaxPrice' LaunchTemplate: LaunchTemplateSpecification: LaunchTemplateId: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'MixedInstancesPolicyLaunchTemplateLaunchTemplateSpecificationVersion' NewInstancesProtectedFromScaleIn: !Ref 'NewInstancesProtectedFromScaleIn' PlacementGroup: !Ref 'PlacementGroup' ServiceLinkedRoleARN: !Ref 'ServiceLinkedRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip AllowedValues: - 'true' - 'false' Default: null ClassicLinkVPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized AllowedValues: - 'true' - 'false' Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid Default: null InstanceMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname Default: null LaunchConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-autoscaling-launchconfig-launchconfigurationname Default: null PlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy Default: null RamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid Default: null SpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata Default: null Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' ClassicLinkVPCId: !Ref 'ClassicLinkVPCId' EbsOptimized: !Ref 'EbsOptimized' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceId: !Ref 'InstanceId' InstanceMonitoring: !Ref 'InstanceMonitoring' InstanceType: !Ref 'InstanceType' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchConfigurationName: !Ref 'LaunchConfigurationName' PlacementTenancy: !Ref 'PlacementTenancy' RamDiskId: !Ref 'RamDiskId' SpotPrice: !Ref 'SpotPrice' UserData: !Ref 'UserData' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname DefaultResult: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult Default: null HeartbeatTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout Default: null LifecycleHookName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname Default: null LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition NotificationMetadata: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata Default: null NotificationTargetARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn Default: null Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DefaultResult: !Ref 'DefaultResult' HeartbeatTimeout: !Ref 'HeartbeatTimeout' LifecycleHookName: !Ref 'LifecycleHookName' LifecycleTransition: !Ref 'LifecycleTransition' NotificationMetadata: !Ref 'NotificationMetadata' NotificationTargetARN: !Ref 'NotificationTargetARN' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AdjustmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype Default: null AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Cooldown: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown Default: null EstimatedInstanceWarmup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup Default: null MetricAggregationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype Default: null MinAdjustmentMagnitude: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude Default: null PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype Default: null ScalingAdjustment: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment Default: null TargetTrackingConfigurationCustomizedMetricSpecificationMetricName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname TargetTrackingConfigurationCustomizedMetricSpecificationNamespace: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace TargetTrackingConfigurationCustomizedMetricSpecificationStatistic: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic TargetTrackingConfigurationCustomizedMetricSpecificationUnit: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit Default: null TargetTrackingConfigurationDisableScaleIn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein AllowedValues: - 'true' - 'false' Default: null TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel Default: null TargetTrackingConfigurationTargetValue: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AdjustmentType: !Ref 'AdjustmentType' AutoScalingGroupName: !Ref 'AutoScalingGroupName' Cooldown: !Ref 'Cooldown' EstimatedInstanceWarmup: !Ref 'EstimatedInstanceWarmup' MetricAggregationType: !Ref 'MetricAggregationType' MinAdjustmentMagnitude: !Ref 'MinAdjustmentMagnitude' PolicyType: !Ref 'PolicyType' ScalingAdjustment: !Ref 'ScalingAdjustment' TargetTrackingConfiguration: CustomizedMetricSpecification: MetricName: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationMetricName' Namespace: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationNamespace' Statistic: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationStatistic' Unit: !Ref 'TargetTrackingConfigurationCustomizedMetricSpecificationUnit' DisableScaleIn: !Ref 'TargetTrackingConfigurationDisableScaleIn' PredefinedMetricSpecification: PredefinedMetricType: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationPredefinedMetricType' ResourceLabel: !Ref 'TargetTrackingConfigurationPredefinedMetricSpecificationResourceLabel' TargetValue: !Ref 'TargetTrackingConfigurationTargetValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname DesiredCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity Default: null EndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize Default: null Recurrence: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence Default: null StartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime Default: null Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' DesiredCapacity: !Ref 'DesiredCapacity' EndTime: !Ref 'EndTime' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Recurrence: !Ref 'Recurrence' StartTime: !Ref 'StartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Parameters: ApplicationSourceCloudFormationStackARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-applicationsource.html#cfn-autoscalingplans-scalingplan-applicationsource-cloudformationstackarn Default: null Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: CloudFormationStackARN: !Ref 'ApplicationSourceCloudFormationStackARN' Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupPlan/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname BackupPlanTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html#cfn-backup-backupplan-backupplantags Default: null Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' BackupPlanTags: !Ref 'BackupPlanTags' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupPlan/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname BackupPlanTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html#cfn-backup-backupplan-backupplantags Default: null Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' BackupPlanTags: !Ref 'BackupPlanTags' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupPlan/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname BackupPlanTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html#cfn-backup-backupplan-backupplantags Default: null Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' BackupPlanTags: !Ref 'BackupPlanTags' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupPlan/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname BackupPlanTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html#cfn-backup-backupplan-backupplantags Default: null Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' BackupPlanTags: !Ref 'BackupPlanTags' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupPlan/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname BackupPlanTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html#cfn-backup-backupplan-backupplantags Default: null Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' BackupPlanTags: !Ref 'BackupPlanTags' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupPlan/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname BackupPlanTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html#cfn-backup-backupplan-backupplantags Default: null Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' BackupPlanTags: !Ref 'BackupPlanTags' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupPlan/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname BackupPlanTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html#cfn-backup-backupplan-backupplantags Default: null Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' BackupPlanTags: !Ref 'BackupPlanTags' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupPlan/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname BackupPlanTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html#cfn-backup-backupplan-backupplantags Default: null Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' BackupPlanTags: !Ref 'BackupPlanTags' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupPlan/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname BackupPlanTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html#cfn-backup-backupplan-backupplantags Default: null Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' BackupPlanTags: !Ref 'BackupPlanTags' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupPlan/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname BackupPlanTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html#cfn-backup-backupplan-backupplantags Default: null Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' BackupPlanTags: !Ref 'BackupPlanTags' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupPlan/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname BackupPlanTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html#cfn-backup-backupplan-backupplantags Default: null Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' BackupPlanTags: !Ref 'BackupPlanTags' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupPlan/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname BackupPlanTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html#cfn-backup-backupplan-backupplantags Default: null Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' BackupPlanTags: !Ref 'BackupPlanTags' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupSelection/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupSelection/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupSelection/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupSelection/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupSelection/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupSelection/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupSelection/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupSelection/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupSelection/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupSelection/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupSelection/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupSelection/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupVault/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaulttags Default: null BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname EncryptionKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-encryptionkeyarn Default: null NotificationObjectTypeSNSTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html#cfn-backup-backupvault-notificationobjecttype-snstopicarn AccessPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-accesspolicy Default: null Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultTags: !Ref 'BackupVaultTags' BackupVaultName: !Ref 'BackupVaultName' EncryptionKeyArn: !Ref 'EncryptionKeyArn' Notifications: SNSTopicArn: !Ref 'NotificationObjectTypeSNSTopicArn' AccessPolicy: !Ref 'AccessPolicy' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupVault/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaulttags Default: null BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname EncryptionKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-encryptionkeyarn Default: null NotificationObjectTypeSNSTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html#cfn-backup-backupvault-notificationobjecttype-snstopicarn AccessPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-accesspolicy Default: null Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultTags: !Ref 'BackupVaultTags' BackupVaultName: !Ref 'BackupVaultName' EncryptionKeyArn: !Ref 'EncryptionKeyArn' Notifications: SNSTopicArn: !Ref 'NotificationObjectTypeSNSTopicArn' AccessPolicy: !Ref 'AccessPolicy' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupVault/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaulttags Default: null BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname EncryptionKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-encryptionkeyarn Default: null NotificationObjectTypeSNSTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html#cfn-backup-backupvault-notificationobjecttype-snstopicarn AccessPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-accesspolicy Default: null Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultTags: !Ref 'BackupVaultTags' BackupVaultName: !Ref 'BackupVaultName' EncryptionKeyArn: !Ref 'EncryptionKeyArn' Notifications: SNSTopicArn: !Ref 'NotificationObjectTypeSNSTopicArn' AccessPolicy: !Ref 'AccessPolicy' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupVault/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaulttags Default: null BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname EncryptionKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-encryptionkeyarn Default: null NotificationObjectTypeSNSTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html#cfn-backup-backupvault-notificationobjecttype-snstopicarn AccessPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-accesspolicy Default: null Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultTags: !Ref 'BackupVaultTags' BackupVaultName: !Ref 'BackupVaultName' EncryptionKeyArn: !Ref 'EncryptionKeyArn' Notifications: SNSTopicArn: !Ref 'NotificationObjectTypeSNSTopicArn' AccessPolicy: !Ref 'AccessPolicy' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupVault/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaulttags Default: null BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname EncryptionKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-encryptionkeyarn Default: null NotificationObjectTypeSNSTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html#cfn-backup-backupvault-notificationobjecttype-snstopicarn AccessPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-accesspolicy Default: null Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultTags: !Ref 'BackupVaultTags' BackupVaultName: !Ref 'BackupVaultName' EncryptionKeyArn: !Ref 'EncryptionKeyArn' Notifications: SNSTopicArn: !Ref 'NotificationObjectTypeSNSTopicArn' AccessPolicy: !Ref 'AccessPolicy' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupVault/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaulttags Default: null BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname EncryptionKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-encryptionkeyarn Default: null NotificationObjectTypeSNSTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html#cfn-backup-backupvault-notificationobjecttype-snstopicarn AccessPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-accesspolicy Default: null Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultTags: !Ref 'BackupVaultTags' BackupVaultName: !Ref 'BackupVaultName' EncryptionKeyArn: !Ref 'EncryptionKeyArn' Notifications: SNSTopicArn: !Ref 'NotificationObjectTypeSNSTopicArn' AccessPolicy: !Ref 'AccessPolicy' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupVault/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaulttags Default: null BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname EncryptionKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-encryptionkeyarn Default: null NotificationObjectTypeSNSTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html#cfn-backup-backupvault-notificationobjecttype-snstopicarn AccessPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-accesspolicy Default: null Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultTags: !Ref 'BackupVaultTags' BackupVaultName: !Ref 'BackupVaultName' EncryptionKeyArn: !Ref 'EncryptionKeyArn' Notifications: SNSTopicArn: !Ref 'NotificationObjectTypeSNSTopicArn' AccessPolicy: !Ref 'AccessPolicy' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupVault/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaulttags Default: null BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname EncryptionKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-encryptionkeyarn Default: null NotificationObjectTypeSNSTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html#cfn-backup-backupvault-notificationobjecttype-snstopicarn AccessPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-accesspolicy Default: null Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultTags: !Ref 'BackupVaultTags' BackupVaultName: !Ref 'BackupVaultName' EncryptionKeyArn: !Ref 'EncryptionKeyArn' Notifications: SNSTopicArn: !Ref 'NotificationObjectTypeSNSTopicArn' AccessPolicy: !Ref 'AccessPolicy' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupVault/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaulttags Default: null BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname EncryptionKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-encryptionkeyarn Default: null NotificationObjectTypeSNSTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html#cfn-backup-backupvault-notificationobjecttype-snstopicarn AccessPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-accesspolicy Default: null Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultTags: !Ref 'BackupVaultTags' BackupVaultName: !Ref 'BackupVaultName' EncryptionKeyArn: !Ref 'EncryptionKeyArn' Notifications: SNSTopicArn: !Ref 'NotificationObjectTypeSNSTopicArn' AccessPolicy: !Ref 'AccessPolicy' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupVault/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaulttags Default: null BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname EncryptionKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-encryptionkeyarn Default: null NotificationObjectTypeSNSTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html#cfn-backup-backupvault-notificationobjecttype-snstopicarn AccessPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-accesspolicy Default: null Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultTags: !Ref 'BackupVaultTags' BackupVaultName: !Ref 'BackupVaultName' EncryptionKeyArn: !Ref 'EncryptionKeyArn' Notifications: SNSTopicArn: !Ref 'NotificationObjectTypeSNSTopicArn' AccessPolicy: !Ref 'AccessPolicy' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupVault/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaulttags Default: null BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname EncryptionKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-encryptionkeyarn Default: null NotificationObjectTypeSNSTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html#cfn-backup-backupvault-notificationobjecttype-snstopicarn AccessPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-accesspolicy Default: null Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultTags: !Ref 'BackupVaultTags' BackupVaultName: !Ref 'BackupVaultName' EncryptionKeyArn: !Ref 'EncryptionKeyArn' Notifications: SNSTopicArn: !Ref 'NotificationObjectTypeSNSTopicArn' AccessPolicy: !Ref 'AccessPolicy' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Backup-BackupVault/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaulttags Default: null BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname EncryptionKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-encryptionkeyarn Default: null NotificationObjectTypeSNSTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html#cfn-backup-backupvault-notificationobjecttype-snstopicarn AccessPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-accesspolicy Default: null Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultTags: !Ref 'BackupVaultTags' BackupVaultName: !Ref 'BackupVaultName' EncryptionKeyArn: !Ref 'EncryptionKeyArn' Notifications: SNSTopicArn: !Ref 'NotificationObjectTypeSNSTopicArn' AccessPolicy: !Ref 'AccessPolicy' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-ComputeEnvironment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole ComputeEnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname Default: null ComputeResourcesSpotIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole Default: null ComputeResourcesMaxvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus ComputeResourcesBidPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage Default: null ComputeResourcesType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type ComputeResourcesAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-allocationstrategy Default: null ComputeResourcesMinvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplatename Default: null ComputeResourcesLaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version Default: null ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-launchtemplateid Default: null ComputeResourcesImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid Default: null ComputeResourcesInstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole ComputeResourcesEc2KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair Default: null ComputeResourcesPlacementGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-placementgroup Default: null ComputeResourcesTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags Default: null ComputeResourcesDesiredvCpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state Default: null Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ComputeEnvironmentName: !Ref 'ComputeEnvironmentName' ComputeResources: SpotIamFleetRole: !Ref 'ComputeResourcesSpotIamFleetRole' MaxvCpus: !Ref 'ComputeResourcesMaxvCpus' BidPercentage: !Ref 'ComputeResourcesBidPercentage' Type: !Ref 'ComputeResourcesType' AllocationStrategy: !Ref 'ComputeResourcesAllocationStrategy' MinvCpus: !Ref 'ComputeResourcesMinvCpus' LaunchTemplate: LaunchTemplateName: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'ComputeResourcesLaunchTemplateSpecificationVersion' LaunchTemplateId: !Ref 'ComputeResourcesLaunchTemplateSpecificationLaunchTemplateId' ImageId: !Ref 'ComputeResourcesImageId' InstanceRole: !Ref 'ComputeResourcesInstanceRole' Ec2KeyPair: !Ref 'ComputeResourcesEc2KeyPair' PlacementGroup: !Ref 'ComputeResourcesPlacementGroup' Tags: !Ref 'ComputeResourcesTags' DesiredvCpus: !Ref 'ComputeResourcesDesiredvCpus' State: !Ref 'State' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters Default: null NodePropertiesMainNode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-mainnode NodePropertiesNumNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-nodeproperties.html#cfn-batch-jobdefinition-nodeproperties-numnodes TimeoutAttemptDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html#cfn-batch-jobdefinition-timeout-attemptdurationseconds Default: null ContainerPropertiesUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user Default: null ContainerPropertiesMemory: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory Default: null ContainerPropertiesPrivileged: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesJobRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn Default: null ContainerPropertiesReadonlyRootFilesystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem AllowedValues: - 'true' - 'false' Default: null ContainerPropertiesVcpus: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus Default: null ContainerPropertiesImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image ContainerPropertiesInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-instancetype Default: null JobDefinitionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname Default: null RetryStrategyAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts Default: null Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' Parameters: !Ref 'Parameters' NodeProperties: MainNode: !Ref 'NodePropertiesMainNode' NumNodes: !Ref 'NodePropertiesNumNodes' Timeout: AttemptDurationSeconds: !Ref 'TimeoutAttemptDurationSeconds' ContainerProperties: User: !Ref 'ContainerPropertiesUser' Memory: !Ref 'ContainerPropertiesMemory' Privileged: !Ref 'ContainerPropertiesPrivileged' LinuxParameters: {} JobRoleArn: !Ref 'ContainerPropertiesJobRoleArn' ReadonlyRootFilesystem: !Ref 'ContainerPropertiesReadonlyRootFilesystem' Vcpus: !Ref 'ContainerPropertiesVcpus' Image: !Ref 'ContainerPropertiesImage' InstanceType: !Ref 'ContainerPropertiesInstanceType' JobDefinitionName: !Ref 'JobDefinitionName' RetryStrategy: Attempts: !Ref 'RetryStrategyAttempts' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobQueue/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-state Default: null JobQueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobqueuename Default: null Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' State: !Ref 'State' JobQueueName: !Ref 'JobQueueName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobQueue/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-state Default: null JobQueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobqueuename Default: null Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' State: !Ref 'State' JobQueueName: !Ref 'JobQueueName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobQueue/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-state Default: null JobQueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobqueuename Default: null Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' State: !Ref 'State' JobQueueName: !Ref 'JobQueueName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobQueue/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-state Default: null JobQueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobqueuename Default: null Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' State: !Ref 'State' JobQueueName: !Ref 'JobQueueName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobQueue/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-state Default: null JobQueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobqueuename Default: null Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' State: !Ref 'State' JobQueueName: !Ref 'JobQueueName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobQueue/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-state Default: null JobQueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobqueuename Default: null Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' State: !Ref 'State' JobQueueName: !Ref 'JobQueueName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobQueue/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-state Default: null JobQueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobqueuename Default: null Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' State: !Ref 'State' JobQueueName: !Ref 'JobQueueName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobQueue/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-state Default: null JobQueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobqueuename Default: null Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' State: !Ref 'State' JobQueueName: !Ref 'JobQueueName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Batch-JobQueue/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-state Default: null JobQueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobqueuename Default: null Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' State: !Ref 'State' JobQueueName: !Ref 'JobQueueName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Budgets-Budget/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataSpendAmount: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-amount BudgetDataSpendUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-unit BudgetDataTimePeriodStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-start Default: null BudgetDataTimePeriodEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-end Default: null BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataPlannedBudgetLimits: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-plannedbudgetlimits Default: null BudgetDataCostFilters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-costfilters Default: null BudgetDataBudgetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgetname Default: null BudgetDataCostTypesIncludeSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesupport AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeOtherSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeothersubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeTax: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includetax AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseBlended: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useblended AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeUpfront: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeupfront AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeDiscount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includediscount AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeCredit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includecredit AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRecurring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerecurring AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseAmortized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useamortized AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRefund: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerefund AllowedValues: - 'true' - 'false' Default: null BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: BudgetLimit: Amount: !Ref 'BudgetDataSpendAmount' Unit: !Ref 'BudgetDataSpendUnit' TimePeriod: Start: !Ref 'BudgetDataTimePeriodStart' End: !Ref 'BudgetDataTimePeriodEnd' TimeUnit: !Ref 'BudgetDataTimeUnit' PlannedBudgetLimits: !Ref 'BudgetDataPlannedBudgetLimits' CostFilters: !Ref 'BudgetDataCostFilters' BudgetName: !Ref 'BudgetDataBudgetName' CostTypes: IncludeSupport: !Ref 'BudgetDataCostTypesIncludeSupport' IncludeOtherSubscription: !Ref 'BudgetDataCostTypesIncludeOtherSubscription' IncludeTax: !Ref 'BudgetDataCostTypesIncludeTax' IncludeSubscription: !Ref 'BudgetDataCostTypesIncludeSubscription' UseBlended: !Ref 'BudgetDataCostTypesUseBlended' IncludeUpfront: !Ref 'BudgetDataCostTypesIncludeUpfront' IncludeDiscount: !Ref 'BudgetDataCostTypesIncludeDiscount' IncludeCredit: !Ref 'BudgetDataCostTypesIncludeCredit' IncludeRecurring: !Ref 'BudgetDataCostTypesIncludeRecurring' UseAmortized: !Ref 'BudgetDataCostTypesUseAmortized' IncludeRefund: !Ref 'BudgetDataCostTypesIncludeRefund' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Budgets-Budget/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataSpendAmount: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-amount BudgetDataSpendUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-unit BudgetDataTimePeriodStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-start Default: null BudgetDataTimePeriodEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-end Default: null BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataPlannedBudgetLimits: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-plannedbudgetlimits Default: null BudgetDataCostFilters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-costfilters Default: null BudgetDataBudgetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgetname Default: null BudgetDataCostTypesIncludeSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesupport AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeOtherSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeothersubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeTax: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includetax AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseBlended: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useblended AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeUpfront: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeupfront AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeDiscount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includediscount AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeCredit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includecredit AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRecurring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerecurring AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseAmortized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useamortized AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRefund: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerefund AllowedValues: - 'true' - 'false' Default: null BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: BudgetLimit: Amount: !Ref 'BudgetDataSpendAmount' Unit: !Ref 'BudgetDataSpendUnit' TimePeriod: Start: !Ref 'BudgetDataTimePeriodStart' End: !Ref 'BudgetDataTimePeriodEnd' TimeUnit: !Ref 'BudgetDataTimeUnit' PlannedBudgetLimits: !Ref 'BudgetDataPlannedBudgetLimits' CostFilters: !Ref 'BudgetDataCostFilters' BudgetName: !Ref 'BudgetDataBudgetName' CostTypes: IncludeSupport: !Ref 'BudgetDataCostTypesIncludeSupport' IncludeOtherSubscription: !Ref 'BudgetDataCostTypesIncludeOtherSubscription' IncludeTax: !Ref 'BudgetDataCostTypesIncludeTax' IncludeSubscription: !Ref 'BudgetDataCostTypesIncludeSubscription' UseBlended: !Ref 'BudgetDataCostTypesUseBlended' IncludeUpfront: !Ref 'BudgetDataCostTypesIncludeUpfront' IncludeDiscount: !Ref 'BudgetDataCostTypesIncludeDiscount' IncludeCredit: !Ref 'BudgetDataCostTypesIncludeCredit' IncludeRecurring: !Ref 'BudgetDataCostTypesIncludeRecurring' UseAmortized: !Ref 'BudgetDataCostTypesUseAmortized' IncludeRefund: !Ref 'BudgetDataCostTypesIncludeRefund' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Budgets-Budget/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataSpendAmount: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-amount BudgetDataSpendUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-unit BudgetDataTimePeriodStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-start Default: null BudgetDataTimePeriodEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-end Default: null BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataPlannedBudgetLimits: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-plannedbudgetlimits Default: null BudgetDataCostFilters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-costfilters Default: null BudgetDataBudgetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgetname Default: null BudgetDataCostTypesIncludeSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesupport AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeOtherSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeothersubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeTax: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includetax AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseBlended: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useblended AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeUpfront: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeupfront AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeDiscount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includediscount AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeCredit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includecredit AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRecurring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerecurring AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseAmortized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useamortized AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRefund: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerefund AllowedValues: - 'true' - 'false' Default: null BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: BudgetLimit: Amount: !Ref 'BudgetDataSpendAmount' Unit: !Ref 'BudgetDataSpendUnit' TimePeriod: Start: !Ref 'BudgetDataTimePeriodStart' End: !Ref 'BudgetDataTimePeriodEnd' TimeUnit: !Ref 'BudgetDataTimeUnit' PlannedBudgetLimits: !Ref 'BudgetDataPlannedBudgetLimits' CostFilters: !Ref 'BudgetDataCostFilters' BudgetName: !Ref 'BudgetDataBudgetName' CostTypes: IncludeSupport: !Ref 'BudgetDataCostTypesIncludeSupport' IncludeOtherSubscription: !Ref 'BudgetDataCostTypesIncludeOtherSubscription' IncludeTax: !Ref 'BudgetDataCostTypesIncludeTax' IncludeSubscription: !Ref 'BudgetDataCostTypesIncludeSubscription' UseBlended: !Ref 'BudgetDataCostTypesUseBlended' IncludeUpfront: !Ref 'BudgetDataCostTypesIncludeUpfront' IncludeDiscount: !Ref 'BudgetDataCostTypesIncludeDiscount' IncludeCredit: !Ref 'BudgetDataCostTypesIncludeCredit' IncludeRecurring: !Ref 'BudgetDataCostTypesIncludeRecurring' UseAmortized: !Ref 'BudgetDataCostTypesUseAmortized' IncludeRefund: !Ref 'BudgetDataCostTypesIncludeRefund' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Budgets-Budget/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataSpendAmount: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-amount BudgetDataSpendUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-unit BudgetDataTimePeriodStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-start Default: null BudgetDataTimePeriodEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-end Default: null BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataPlannedBudgetLimits: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-plannedbudgetlimits Default: null BudgetDataCostFilters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-costfilters Default: null BudgetDataBudgetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgetname Default: null BudgetDataCostTypesIncludeSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesupport AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeOtherSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeothersubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeTax: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includetax AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseBlended: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useblended AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeUpfront: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeupfront AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeDiscount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includediscount AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeCredit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includecredit AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRecurring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerecurring AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseAmortized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useamortized AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRefund: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerefund AllowedValues: - 'true' - 'false' Default: null BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: BudgetLimit: Amount: !Ref 'BudgetDataSpendAmount' Unit: !Ref 'BudgetDataSpendUnit' TimePeriod: Start: !Ref 'BudgetDataTimePeriodStart' End: !Ref 'BudgetDataTimePeriodEnd' TimeUnit: !Ref 'BudgetDataTimeUnit' PlannedBudgetLimits: !Ref 'BudgetDataPlannedBudgetLimits' CostFilters: !Ref 'BudgetDataCostFilters' BudgetName: !Ref 'BudgetDataBudgetName' CostTypes: IncludeSupport: !Ref 'BudgetDataCostTypesIncludeSupport' IncludeOtherSubscription: !Ref 'BudgetDataCostTypesIncludeOtherSubscription' IncludeTax: !Ref 'BudgetDataCostTypesIncludeTax' IncludeSubscription: !Ref 'BudgetDataCostTypesIncludeSubscription' UseBlended: !Ref 'BudgetDataCostTypesUseBlended' IncludeUpfront: !Ref 'BudgetDataCostTypesIncludeUpfront' IncludeDiscount: !Ref 'BudgetDataCostTypesIncludeDiscount' IncludeCredit: !Ref 'BudgetDataCostTypesIncludeCredit' IncludeRecurring: !Ref 'BudgetDataCostTypesIncludeRecurring' UseAmortized: !Ref 'BudgetDataCostTypesUseAmortized' IncludeRefund: !Ref 'BudgetDataCostTypesIncludeRefund' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Budgets-Budget/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataSpendAmount: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-amount BudgetDataSpendUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-unit BudgetDataTimePeriodStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-start Default: null BudgetDataTimePeriodEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-end Default: null BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataPlannedBudgetLimits: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-plannedbudgetlimits Default: null BudgetDataCostFilters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-costfilters Default: null BudgetDataBudgetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgetname Default: null BudgetDataCostTypesIncludeSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesupport AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeOtherSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeothersubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeTax: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includetax AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseBlended: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useblended AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeUpfront: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeupfront AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeDiscount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includediscount AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeCredit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includecredit AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRecurring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerecurring AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseAmortized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useamortized AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRefund: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerefund AllowedValues: - 'true' - 'false' Default: null BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: BudgetLimit: Amount: !Ref 'BudgetDataSpendAmount' Unit: !Ref 'BudgetDataSpendUnit' TimePeriod: Start: !Ref 'BudgetDataTimePeriodStart' End: !Ref 'BudgetDataTimePeriodEnd' TimeUnit: !Ref 'BudgetDataTimeUnit' PlannedBudgetLimits: !Ref 'BudgetDataPlannedBudgetLimits' CostFilters: !Ref 'BudgetDataCostFilters' BudgetName: !Ref 'BudgetDataBudgetName' CostTypes: IncludeSupport: !Ref 'BudgetDataCostTypesIncludeSupport' IncludeOtherSubscription: !Ref 'BudgetDataCostTypesIncludeOtherSubscription' IncludeTax: !Ref 'BudgetDataCostTypesIncludeTax' IncludeSubscription: !Ref 'BudgetDataCostTypesIncludeSubscription' UseBlended: !Ref 'BudgetDataCostTypesUseBlended' IncludeUpfront: !Ref 'BudgetDataCostTypesIncludeUpfront' IncludeDiscount: !Ref 'BudgetDataCostTypesIncludeDiscount' IncludeCredit: !Ref 'BudgetDataCostTypesIncludeCredit' IncludeRecurring: !Ref 'BudgetDataCostTypesIncludeRecurring' UseAmortized: !Ref 'BudgetDataCostTypesUseAmortized' IncludeRefund: !Ref 'BudgetDataCostTypesIncludeRefund' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Budgets-Budget/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataSpendAmount: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-amount BudgetDataSpendUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-unit BudgetDataTimePeriodStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-start Default: null BudgetDataTimePeriodEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-end Default: null BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataPlannedBudgetLimits: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-plannedbudgetlimits Default: null BudgetDataCostFilters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-costfilters Default: null BudgetDataBudgetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgetname Default: null BudgetDataCostTypesIncludeSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesupport AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeOtherSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeothersubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeTax: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includetax AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseBlended: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useblended AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeUpfront: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeupfront AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeDiscount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includediscount AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeCredit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includecredit AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRecurring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerecurring AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseAmortized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useamortized AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRefund: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerefund AllowedValues: - 'true' - 'false' Default: null BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: BudgetLimit: Amount: !Ref 'BudgetDataSpendAmount' Unit: !Ref 'BudgetDataSpendUnit' TimePeriod: Start: !Ref 'BudgetDataTimePeriodStart' End: !Ref 'BudgetDataTimePeriodEnd' TimeUnit: !Ref 'BudgetDataTimeUnit' PlannedBudgetLimits: !Ref 'BudgetDataPlannedBudgetLimits' CostFilters: !Ref 'BudgetDataCostFilters' BudgetName: !Ref 'BudgetDataBudgetName' CostTypes: IncludeSupport: !Ref 'BudgetDataCostTypesIncludeSupport' IncludeOtherSubscription: !Ref 'BudgetDataCostTypesIncludeOtherSubscription' IncludeTax: !Ref 'BudgetDataCostTypesIncludeTax' IncludeSubscription: !Ref 'BudgetDataCostTypesIncludeSubscription' UseBlended: !Ref 'BudgetDataCostTypesUseBlended' IncludeUpfront: !Ref 'BudgetDataCostTypesIncludeUpfront' IncludeDiscount: !Ref 'BudgetDataCostTypesIncludeDiscount' IncludeCredit: !Ref 'BudgetDataCostTypesIncludeCredit' IncludeRecurring: !Ref 'BudgetDataCostTypesIncludeRecurring' UseAmortized: !Ref 'BudgetDataCostTypesUseAmortized' IncludeRefund: !Ref 'BudgetDataCostTypesIncludeRefund' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Budgets-Budget/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataSpendAmount: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-amount BudgetDataSpendUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-unit BudgetDataTimePeriodStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-start Default: null BudgetDataTimePeriodEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-end Default: null BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataPlannedBudgetLimits: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-plannedbudgetlimits Default: null BudgetDataCostFilters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-costfilters Default: null BudgetDataBudgetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgetname Default: null BudgetDataCostTypesIncludeSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesupport AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeOtherSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeothersubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeTax: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includetax AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseBlended: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useblended AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeUpfront: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeupfront AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeDiscount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includediscount AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeCredit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includecredit AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRecurring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerecurring AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseAmortized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useamortized AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRefund: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerefund AllowedValues: - 'true' - 'false' Default: null BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: BudgetLimit: Amount: !Ref 'BudgetDataSpendAmount' Unit: !Ref 'BudgetDataSpendUnit' TimePeriod: Start: !Ref 'BudgetDataTimePeriodStart' End: !Ref 'BudgetDataTimePeriodEnd' TimeUnit: !Ref 'BudgetDataTimeUnit' PlannedBudgetLimits: !Ref 'BudgetDataPlannedBudgetLimits' CostFilters: !Ref 'BudgetDataCostFilters' BudgetName: !Ref 'BudgetDataBudgetName' CostTypes: IncludeSupport: !Ref 'BudgetDataCostTypesIncludeSupport' IncludeOtherSubscription: !Ref 'BudgetDataCostTypesIncludeOtherSubscription' IncludeTax: !Ref 'BudgetDataCostTypesIncludeTax' IncludeSubscription: !Ref 'BudgetDataCostTypesIncludeSubscription' UseBlended: !Ref 'BudgetDataCostTypesUseBlended' IncludeUpfront: !Ref 'BudgetDataCostTypesIncludeUpfront' IncludeDiscount: !Ref 'BudgetDataCostTypesIncludeDiscount' IncludeCredit: !Ref 'BudgetDataCostTypesIncludeCredit' IncludeRecurring: !Ref 'BudgetDataCostTypesIncludeRecurring' UseAmortized: !Ref 'BudgetDataCostTypesUseAmortized' IncludeRefund: !Ref 'BudgetDataCostTypesIncludeRefund' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Budgets-Budget/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataSpendAmount: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-amount BudgetDataSpendUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-unit BudgetDataTimePeriodStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-start Default: null BudgetDataTimePeriodEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-end Default: null BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataPlannedBudgetLimits: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-plannedbudgetlimits Default: null BudgetDataCostFilters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-costfilters Default: null BudgetDataBudgetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgetname Default: null BudgetDataCostTypesIncludeSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesupport AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeOtherSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeothersubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeTax: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includetax AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseBlended: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useblended AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeUpfront: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeupfront AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeDiscount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includediscount AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeCredit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includecredit AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRecurring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerecurring AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseAmortized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useamortized AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRefund: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerefund AllowedValues: - 'true' - 'false' Default: null BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: BudgetLimit: Amount: !Ref 'BudgetDataSpendAmount' Unit: !Ref 'BudgetDataSpendUnit' TimePeriod: Start: !Ref 'BudgetDataTimePeriodStart' End: !Ref 'BudgetDataTimePeriodEnd' TimeUnit: !Ref 'BudgetDataTimeUnit' PlannedBudgetLimits: !Ref 'BudgetDataPlannedBudgetLimits' CostFilters: !Ref 'BudgetDataCostFilters' BudgetName: !Ref 'BudgetDataBudgetName' CostTypes: IncludeSupport: !Ref 'BudgetDataCostTypesIncludeSupport' IncludeOtherSubscription: !Ref 'BudgetDataCostTypesIncludeOtherSubscription' IncludeTax: !Ref 'BudgetDataCostTypesIncludeTax' IncludeSubscription: !Ref 'BudgetDataCostTypesIncludeSubscription' UseBlended: !Ref 'BudgetDataCostTypesUseBlended' IncludeUpfront: !Ref 'BudgetDataCostTypesIncludeUpfront' IncludeDiscount: !Ref 'BudgetDataCostTypesIncludeDiscount' IncludeCredit: !Ref 'BudgetDataCostTypesIncludeCredit' IncludeRecurring: !Ref 'BudgetDataCostTypesIncludeRecurring' UseAmortized: !Ref 'BudgetDataCostTypesUseAmortized' IncludeRefund: !Ref 'BudgetDataCostTypesIncludeRefund' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Budgets-Budget/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataSpendAmount: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-amount BudgetDataSpendUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-unit BudgetDataTimePeriodStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-start Default: null BudgetDataTimePeriodEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-end Default: null BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataPlannedBudgetLimits: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-plannedbudgetlimits Default: null BudgetDataCostFilters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-costfilters Default: null BudgetDataBudgetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgetname Default: null BudgetDataCostTypesIncludeSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesupport AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeOtherSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeothersubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeTax: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includetax AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseBlended: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useblended AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeUpfront: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeupfront AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeDiscount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includediscount AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeCredit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includecredit AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRecurring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerecurring AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseAmortized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useamortized AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRefund: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerefund AllowedValues: - 'true' - 'false' Default: null BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: BudgetLimit: Amount: !Ref 'BudgetDataSpendAmount' Unit: !Ref 'BudgetDataSpendUnit' TimePeriod: Start: !Ref 'BudgetDataTimePeriodStart' End: !Ref 'BudgetDataTimePeriodEnd' TimeUnit: !Ref 'BudgetDataTimeUnit' PlannedBudgetLimits: !Ref 'BudgetDataPlannedBudgetLimits' CostFilters: !Ref 'BudgetDataCostFilters' BudgetName: !Ref 'BudgetDataBudgetName' CostTypes: IncludeSupport: !Ref 'BudgetDataCostTypesIncludeSupport' IncludeOtherSubscription: !Ref 'BudgetDataCostTypesIncludeOtherSubscription' IncludeTax: !Ref 'BudgetDataCostTypesIncludeTax' IncludeSubscription: !Ref 'BudgetDataCostTypesIncludeSubscription' UseBlended: !Ref 'BudgetDataCostTypesUseBlended' IncludeUpfront: !Ref 'BudgetDataCostTypesIncludeUpfront' IncludeDiscount: !Ref 'BudgetDataCostTypesIncludeDiscount' IncludeCredit: !Ref 'BudgetDataCostTypesIncludeCredit' IncludeRecurring: !Ref 'BudgetDataCostTypesIncludeRecurring' UseAmortized: !Ref 'BudgetDataCostTypesUseAmortized' IncludeRefund: !Ref 'BudgetDataCostTypesIncludeRefund' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Budgets-Budget/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataSpendAmount: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-amount BudgetDataSpendUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-unit BudgetDataTimePeriodStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-start Default: null BudgetDataTimePeriodEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-end Default: null BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataPlannedBudgetLimits: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-plannedbudgetlimits Default: null BudgetDataCostFilters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-costfilters Default: null BudgetDataBudgetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgetname Default: null BudgetDataCostTypesIncludeSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesupport AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeOtherSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeothersubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeTax: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includetax AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseBlended: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useblended AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeUpfront: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeupfront AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeDiscount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includediscount AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeCredit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includecredit AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRecurring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerecurring AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseAmortized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useamortized AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRefund: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerefund AllowedValues: - 'true' - 'false' Default: null BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: BudgetLimit: Amount: !Ref 'BudgetDataSpendAmount' Unit: !Ref 'BudgetDataSpendUnit' TimePeriod: Start: !Ref 'BudgetDataTimePeriodStart' End: !Ref 'BudgetDataTimePeriodEnd' TimeUnit: !Ref 'BudgetDataTimeUnit' PlannedBudgetLimits: !Ref 'BudgetDataPlannedBudgetLimits' CostFilters: !Ref 'BudgetDataCostFilters' BudgetName: !Ref 'BudgetDataBudgetName' CostTypes: IncludeSupport: !Ref 'BudgetDataCostTypesIncludeSupport' IncludeOtherSubscription: !Ref 'BudgetDataCostTypesIncludeOtherSubscription' IncludeTax: !Ref 'BudgetDataCostTypesIncludeTax' IncludeSubscription: !Ref 'BudgetDataCostTypesIncludeSubscription' UseBlended: !Ref 'BudgetDataCostTypesUseBlended' IncludeUpfront: !Ref 'BudgetDataCostTypesIncludeUpfront' IncludeDiscount: !Ref 'BudgetDataCostTypesIncludeDiscount' IncludeCredit: !Ref 'BudgetDataCostTypesIncludeCredit' IncludeRecurring: !Ref 'BudgetDataCostTypesIncludeRecurring' UseAmortized: !Ref 'BudgetDataCostTypesUseAmortized' IncludeRefund: !Ref 'BudgetDataCostTypesIncludeRefund' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Budgets-Budget/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataSpendAmount: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-amount BudgetDataSpendUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-unit BudgetDataTimePeriodStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-start Default: null BudgetDataTimePeriodEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-end Default: null BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataPlannedBudgetLimits: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-plannedbudgetlimits Default: null BudgetDataCostFilters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-costfilters Default: null BudgetDataBudgetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgetname Default: null BudgetDataCostTypesIncludeSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesupport AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeOtherSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeothersubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeTax: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includetax AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseBlended: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useblended AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeUpfront: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeupfront AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeDiscount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includediscount AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeCredit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includecredit AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRecurring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerecurring AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseAmortized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useamortized AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRefund: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerefund AllowedValues: - 'true' - 'false' Default: null BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: BudgetLimit: Amount: !Ref 'BudgetDataSpendAmount' Unit: !Ref 'BudgetDataSpendUnit' TimePeriod: Start: !Ref 'BudgetDataTimePeriodStart' End: !Ref 'BudgetDataTimePeriodEnd' TimeUnit: !Ref 'BudgetDataTimeUnit' PlannedBudgetLimits: !Ref 'BudgetDataPlannedBudgetLimits' CostFilters: !Ref 'BudgetDataCostFilters' BudgetName: !Ref 'BudgetDataBudgetName' CostTypes: IncludeSupport: !Ref 'BudgetDataCostTypesIncludeSupport' IncludeOtherSubscription: !Ref 'BudgetDataCostTypesIncludeOtherSubscription' IncludeTax: !Ref 'BudgetDataCostTypesIncludeTax' IncludeSubscription: !Ref 'BudgetDataCostTypesIncludeSubscription' UseBlended: !Ref 'BudgetDataCostTypesUseBlended' IncludeUpfront: !Ref 'BudgetDataCostTypesIncludeUpfront' IncludeDiscount: !Ref 'BudgetDataCostTypesIncludeDiscount' IncludeCredit: !Ref 'BudgetDataCostTypesIncludeCredit' IncludeRecurring: !Ref 'BudgetDataCostTypesIncludeRecurring' UseAmortized: !Ref 'BudgetDataCostTypesUseAmortized' IncludeRefund: !Ref 'BudgetDataCostTypesIncludeRefund' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Budgets-Budget/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataSpendAmount: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-amount BudgetDataSpendUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-unit BudgetDataTimePeriodStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-start Default: null BudgetDataTimePeriodEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-end Default: null BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataPlannedBudgetLimits: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-plannedbudgetlimits Default: null BudgetDataCostFilters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-costfilters Default: null BudgetDataBudgetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgetname Default: null BudgetDataCostTypesIncludeSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesupport AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeOtherSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeothersubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeTax: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includetax AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseBlended: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useblended AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeUpfront: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeupfront AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeDiscount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includediscount AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeCredit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includecredit AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRecurring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerecurring AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseAmortized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useamortized AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRefund: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerefund AllowedValues: - 'true' - 'false' Default: null BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: BudgetLimit: Amount: !Ref 'BudgetDataSpendAmount' Unit: !Ref 'BudgetDataSpendUnit' TimePeriod: Start: !Ref 'BudgetDataTimePeriodStart' End: !Ref 'BudgetDataTimePeriodEnd' TimeUnit: !Ref 'BudgetDataTimeUnit' PlannedBudgetLimits: !Ref 'BudgetDataPlannedBudgetLimits' CostFilters: !Ref 'BudgetDataCostFilters' BudgetName: !Ref 'BudgetDataBudgetName' CostTypes: IncludeSupport: !Ref 'BudgetDataCostTypesIncludeSupport' IncludeOtherSubscription: !Ref 'BudgetDataCostTypesIncludeOtherSubscription' IncludeTax: !Ref 'BudgetDataCostTypesIncludeTax' IncludeSubscription: !Ref 'BudgetDataCostTypesIncludeSubscription' UseBlended: !Ref 'BudgetDataCostTypesUseBlended' IncludeUpfront: !Ref 'BudgetDataCostTypesIncludeUpfront' IncludeDiscount: !Ref 'BudgetDataCostTypesIncludeDiscount' IncludeCredit: !Ref 'BudgetDataCostTypesIncludeCredit' IncludeRecurring: !Ref 'BudgetDataCostTypesIncludeRecurring' UseAmortized: !Ref 'BudgetDataCostTypesUseAmortized' IncludeRefund: !Ref 'BudgetDataCostTypesIncludeRefund' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Budgets-Budget/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataSpendAmount: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-amount BudgetDataSpendUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-unit BudgetDataTimePeriodStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-start Default: null BudgetDataTimePeriodEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-end Default: null BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataPlannedBudgetLimits: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-plannedbudgetlimits Default: null BudgetDataCostFilters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-costfilters Default: null BudgetDataBudgetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgetname Default: null BudgetDataCostTypesIncludeSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesupport AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeOtherSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeothersubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeTax: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includetax AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseBlended: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useblended AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeUpfront: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeupfront AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeDiscount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includediscount AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeCredit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includecredit AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRecurring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerecurring AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseAmortized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useamortized AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRefund: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerefund AllowedValues: - 'true' - 'false' Default: null BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: BudgetLimit: Amount: !Ref 'BudgetDataSpendAmount' Unit: !Ref 'BudgetDataSpendUnit' TimePeriod: Start: !Ref 'BudgetDataTimePeriodStart' End: !Ref 'BudgetDataTimePeriodEnd' TimeUnit: !Ref 'BudgetDataTimeUnit' PlannedBudgetLimits: !Ref 'BudgetDataPlannedBudgetLimits' CostFilters: !Ref 'BudgetDataCostFilters' BudgetName: !Ref 'BudgetDataBudgetName' CostTypes: IncludeSupport: !Ref 'BudgetDataCostTypesIncludeSupport' IncludeOtherSubscription: !Ref 'BudgetDataCostTypesIncludeOtherSubscription' IncludeTax: !Ref 'BudgetDataCostTypesIncludeTax' IncludeSubscription: !Ref 'BudgetDataCostTypesIncludeSubscription' UseBlended: !Ref 'BudgetDataCostTypesUseBlended' IncludeUpfront: !Ref 'BudgetDataCostTypesIncludeUpfront' IncludeDiscount: !Ref 'BudgetDataCostTypesIncludeDiscount' IncludeCredit: !Ref 'BudgetDataCostTypesIncludeCredit' IncludeRecurring: !Ref 'BudgetDataCostTypesIncludeRecurring' UseAmortized: !Ref 'BudgetDataCostTypesUseAmortized' IncludeRefund: !Ref 'BudgetDataCostTypesIncludeRefund' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Budgets-Budget/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataSpendAmount: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-amount BudgetDataSpendUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html#cfn-budgets-budget-spend-unit BudgetDataTimePeriodStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-start Default: null BudgetDataTimePeriodEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html#cfn-budgets-budget-timeperiod-end Default: null BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataPlannedBudgetLimits: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-plannedbudgetlimits Default: null BudgetDataCostFilters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-costfilters Default: null BudgetDataBudgetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgetname Default: null BudgetDataCostTypesIncludeSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesupport AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeOtherSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeothersubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeTax: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includetax AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeSubscription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includesubscription AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseBlended: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useblended AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeUpfront: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includeupfront AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeDiscount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includediscount AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeCredit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includecredit AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRecurring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerecurring AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesUseAmortized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-useamortized AllowedValues: - 'true' - 'false' Default: null BudgetDataCostTypesIncludeRefund: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html#cfn-budgets-budget-costtypes-includerefund AllowedValues: - 'true' - 'false' Default: null BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: BudgetLimit: Amount: !Ref 'BudgetDataSpendAmount' Unit: !Ref 'BudgetDataSpendUnit' TimePeriod: Start: !Ref 'BudgetDataTimePeriodStart' End: !Ref 'BudgetDataTimePeriodEnd' TimeUnit: !Ref 'BudgetDataTimeUnit' PlannedBudgetLimits: !Ref 'BudgetDataPlannedBudgetLimits' CostFilters: !Ref 'BudgetDataCostFilters' BudgetName: !Ref 'BudgetDataBudgetName' CostTypes: IncludeSupport: !Ref 'BudgetDataCostTypesIncludeSupport' IncludeOtherSubscription: !Ref 'BudgetDataCostTypesIncludeOtherSubscription' IncludeTax: !Ref 'BudgetDataCostTypesIncludeTax' IncludeSubscription: !Ref 'BudgetDataCostTypesIncludeSubscription' UseBlended: !Ref 'BudgetDataCostTypesUseBlended' IncludeUpfront: !Ref 'BudgetDataCostTypesIncludeUpfront' IncludeDiscount: !Ref 'BudgetDataCostTypesIncludeDiscount' IncludeCredit: !Ref 'BudgetDataCostTypesIncludeCredit' IncludeRecurring: !Ref 'BudgetDataCostTypesIncludeRecurring' UseAmortized: !Ref 'BudgetDataCostTypesUseAmortized' IncludeRefund: !Ref 'BudgetDataCostTypesIncludeRefund' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CE-CostCategory/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html#cfn-ce-costcategory-name RuleVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html#cfn-ce-costcategory-ruleversion Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html#cfn-ce-costcategory-rules Resources: Resource: Type: AWS::CE::CostCategory Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html Properties: Name: !Ref 'Name' RuleVersion: !Ref 'RuleVersion' Rules: !Ref 'Rules' Outputs: Arn: Value: GetAtt: - Resource - Arn EffectiveStart: Value: GetAtt: - Resource - EffectiveStart ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Keyspace/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename Default: null Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cassandra-Table/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-tablename Default: null BillingModeMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-billingmode.html#cfn-cassandra-table-billingmode-mode BillingModeProvisionedThroughputReadCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits BillingModeProvisionedThroughputWriteCapacityUnits: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' TableName: !Ref 'TableName' BillingMode: Mode: !Ref 'BillingModeMode' ProvisionedThroughput: ReadCapacityUnits: !Ref 'BillingModeProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'BillingModeProvisionedThroughputWriteCapacityUnits' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CertificateManager-Certificate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn Default: null CertificateTransparencyLoggingPreference: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname ValidationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod Default: null Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateTransparencyLoggingPreference: !Ref 'CertificateTransparencyLoggingPreference' DomainName: !Ref 'DomainName' ValidationMethod: !Ref 'ValidationMethod' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn LoggingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-logginglevel Default: null Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' LoggingLevel: !Ref 'LoggingLevel' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cloud9-EnvironmentEC2/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Parameters: OwnerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-ownerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-description Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-connectiontype Default: null AutomaticStopTimeMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-automaticstoptimeminutes Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-subnetid Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-name Default: null Resources: Resource: Type: AWS::Cloud9::EnvironmentEC2 Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Properties: OwnerArn: !Ref 'OwnerArn' Description: !Ref 'Description' ConnectionType: !Ref 'ConnectionType' AutomaticStopTimeMinutes: !Ref 'AutomaticStopTimeMinutes' SubnetId: !Ref 'SubnetId' InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cloud9-EnvironmentEC2/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Parameters: OwnerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-ownerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-description Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-connectiontype Default: null AutomaticStopTimeMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-automaticstoptimeminutes Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-subnetid Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-name Default: null Resources: Resource: Type: AWS::Cloud9::EnvironmentEC2 Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Properties: OwnerArn: !Ref 'OwnerArn' Description: !Ref 'Description' ConnectionType: !Ref 'ConnectionType' AutomaticStopTimeMinutes: !Ref 'AutomaticStopTimeMinutes' SubnetId: !Ref 'SubnetId' InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cloud9-EnvironmentEC2/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Parameters: OwnerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-ownerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-description Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-connectiontype Default: null AutomaticStopTimeMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-automaticstoptimeminutes Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-subnetid Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-name Default: null Resources: Resource: Type: AWS::Cloud9::EnvironmentEC2 Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Properties: OwnerArn: !Ref 'OwnerArn' Description: !Ref 'Description' ConnectionType: !Ref 'ConnectionType' AutomaticStopTimeMinutes: !Ref 'AutomaticStopTimeMinutes' SubnetId: !Ref 'SubnetId' InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cloud9-EnvironmentEC2/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Parameters: OwnerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-ownerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-description Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-connectiontype Default: null AutomaticStopTimeMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-automaticstoptimeminutes Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-subnetid Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-name Default: null Resources: Resource: Type: AWS::Cloud9::EnvironmentEC2 Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Properties: OwnerArn: !Ref 'OwnerArn' Description: !Ref 'Description' ConnectionType: !Ref 'ConnectionType' AutomaticStopTimeMinutes: !Ref 'AutomaticStopTimeMinutes' SubnetId: !Ref 'SubnetId' InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cloud9-EnvironmentEC2/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Parameters: OwnerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-ownerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-description Default: null ConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-connectiontype Default: null AutomaticStopTimeMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-automaticstoptimeminutes Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-subnetid Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-name Default: null Resources: Resource: Type: AWS::Cloud9::EnvironmentEC2 Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Properties: OwnerArn: !Ref 'OwnerArn' Description: !Ref 'Description' ConnectionType: !Ref 'ConnectionType' AutomaticStopTimeMinutes: !Ref 'AutomaticStopTimeMinutes' SubnetId: !Ref 'SubnetId' InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-CustomResource/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Macro/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname Default: null LogRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-logrolearn Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' LogGroupName: !Ref 'LogGroupName' LogRoleARN: !Ref 'LogRoleARN' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-Stack/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes Default: null Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' TimeoutInMinutes: !Ref 'TimeoutInMinutes' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitCondition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Parameters: Count: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count Default: null Handle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle Default: null Timeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout Default: null Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Properties: Count: !Ref 'Count' Handle: !Ref 'Handle' Timeout: !Ref 'Timeout' Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-Distribution/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigLoggingIncludeCookies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-includecookies AllowedValues: - 'true' - 'false' Default: null DistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-bucket DistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html#cfn-cloudfront-distribution-logging-prefix Default: null DistributionConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment Default: null DistributionConfigDefaultRootObject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject Default: null DistributionConfigViewerCertificateIamCertificateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid Default: null DistributionConfigViewerCertificateSslSupportMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod Default: null DistributionConfigViewerCertificateMinimumProtocolVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion Default: null DistributionConfigViewerCertificateCloudFrontDefaultCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate AllowedValues: - 'true' - 'false' Default: null DistributionConfigViewerCertificateAcmCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn Default: null DistributionConfigPriceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass Default: null DistributionConfigDefaultCacheBehaviorCompress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorTargetOriginId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy DistributionConfigDefaultCacheBehaviorDefaultTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl Default: null DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-fieldlevelencryptionid Default: null DistributionConfigDefaultCacheBehaviorSmoothStreaming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming AllowedValues: - 'true' - 'false' Default: null DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring AllowedValues: - 'true' - 'false' DistributionConfigDefaultCacheBehaviorMinTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl Default: null DistributionConfigDefaultCacheBehaviorMaxTTL: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl Default: null DistributionConfigOriginGroupsQuantity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroups.html#cfn-cloudfront-distribution-origingroups-quantity DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' DistributionConfigIPV6Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled AllowedValues: - 'true' - 'false' Default: null DistributionConfigWebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid Default: null DistributionConfigHttpVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion Default: null DistributionConfigRestrictionsGeoRestrictionRestrictionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Logging: IncludeCookies: !Ref 'DistributionConfigLoggingIncludeCookies' Bucket: !Ref 'DistributionConfigLoggingBucket' Prefix: !Ref 'DistributionConfigLoggingPrefix' Comment: !Ref 'DistributionConfigComment' DefaultRootObject: !Ref 'DistributionConfigDefaultRootObject' ViewerCertificate: IamCertificateId: !Ref 'DistributionConfigViewerCertificateIamCertificateId' SslSupportMethod: !Ref 'DistributionConfigViewerCertificateSslSupportMethod' MinimumProtocolVersion: !Ref 'DistributionConfigViewerCertificateMinimumProtocolVersion' CloudFrontDefaultCertificate: !Ref 'DistributionConfigViewerCertificateCloudFrontDefaultCertificate' AcmCertificateArn: !Ref 'DistributionConfigViewerCertificateAcmCertificateArn' PriceClass: !Ref 'DistributionConfigPriceClass' DefaultCacheBehavior: Compress: !Ref 'DistributionConfigDefaultCacheBehaviorCompress' TargetOriginId: !Ref 'DistributionConfigDefaultCacheBehaviorTargetOriginId' ViewerProtocolPolicy: !Ref 'DistributionConfigDefaultCacheBehaviorViewerProtocolPolicy' DefaultTTL: !Ref 'DistributionConfigDefaultCacheBehaviorDefaultTTL' FieldLevelEncryptionId: !Ref 'DistributionConfigDefaultCacheBehaviorFieldLevelEncryptionId' SmoothStreaming: !Ref 'DistributionConfigDefaultCacheBehaviorSmoothStreaming' ForwardedValues: Cookies: Forward: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesCookiesForward' QueryString: !Ref 'DistributionConfigDefaultCacheBehaviorForwardedValuesQueryString' MinTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMinTTL' MaxTTL: !Ref 'DistributionConfigDefaultCacheBehaviorMaxTTL' OriginGroups: Quantity: !Ref 'DistributionConfigOriginGroupsQuantity' Enabled: !Ref 'DistributionConfigEnabled' IPV6Enabled: !Ref 'DistributionConfigIPV6Enabled' WebACLId: !Ref 'DistributionConfigWebACLId' HttpVersion: !Ref 'DistributionConfigHttpVersion' Restrictions: GeoRestriction: RestrictionType: !Ref 'DistributionConfigRestrictionsGeoRestrictionRestrictionType' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigLoggingBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket StreamingDistributionConfigLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigLoggingPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigPriceClass: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass Default: null StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Logging: Bucket: !Ref 'StreamingDistributionConfigLoggingBucket' Enabled: !Ref 'StreamingDistributionConfigLoggingEnabled' Prefix: !Ref 'StreamingDistributionConfigLoggingPrefix' Comment: !Ref 'StreamingDistributionConfigComment' PriceClass: !Ref 'StreamingDistributionConfigPriceClass' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudTrail-Trail/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: CloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsloggrouparn Default: null CloudWatchLogsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-cloudwatchlogsrolearn Default: null EnableLogFileValidation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation AllowedValues: - 'true' - 'false' Default: null IncludeGlobalServiceEvents: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-includeglobalserviceevents AllowedValues: - 'true' - 'false' Default: null IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' IsMultiRegionTrail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-ismultiregiontrail AllowedValues: - 'true' - 'false' Default: null KMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-kmskeyid Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3keyprefix Default: null SnsTopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-snstopicname Default: null TrailName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-trailname Default: null Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: CloudWatchLogsLogGroupArn: !Ref 'CloudWatchLogsLogGroupArn' CloudWatchLogsRoleArn: !Ref 'CloudWatchLogsRoleArn' EnableLogFileValidation: !Ref 'EnableLogFileValidation' IncludeGlobalServiceEvents: !Ref 'IncludeGlobalServiceEvents' IsLogging: !Ref 'IsLogging' IsMultiRegionTrail: !Ref 'IsMultiRegionTrail' KMSKeyId: !Ref 'KMSKeyId' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicName: !Ref 'SnsTopicName' TrailName: !Ref 'TrailName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Alarm/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled AllowedValues: - 'true' - 'false' Default: null AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription Default: null AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname Default: null ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator DatapointsToAlarm: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarm-datapointstoalarm Default: null EvaluateLowSampleCountPercentile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile Default: null EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods ExtendedStatistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic Default: null MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace Default: null Period: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period Default: null Statistic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic Default: null Threshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold Default: null ThresholdMetricId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dynamic-threshold Default: null TreatMissingData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata Default: null Unit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit Default: null Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ActionsEnabled: !Ref 'ActionsEnabled' AlarmDescription: !Ref 'AlarmDescription' AlarmName: !Ref 'AlarmName' ComparisonOperator: !Ref 'ComparisonOperator' DatapointsToAlarm: !Ref 'DatapointsToAlarm' EvaluateLowSampleCountPercentile: !Ref 'EvaluateLowSampleCountPercentile' EvaluationPeriods: !Ref 'EvaluationPeriods' ExtendedStatistic: !Ref 'ExtendedStatistic' MetricName: !Ref 'MetricName' Namespace: !Ref 'Namespace' Period: !Ref 'Period' Statistic: !Ref 'Statistic' Threshold: !Ref 'Threshold' ThresholdMetricId: !Ref 'ThresholdMetricId' TreatMissingData: !Ref 'TreatMissingData' Unit: !Ref 'Unit' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat ConfigurationMetricTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-configuration.html#cfn-cloudwatch-anomalydetector-configuration-metrictimezone Default: null Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Configuration: MetricTimeZone: !Ref 'ConfigurationMetricTimeZone' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule AlarmDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription Default: null ActionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' AlarmDescription: !Ref 'AlarmDescription' ActionsEnabled: !Ref 'ActionsEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-Dashboard/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname Default: null DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardName: !Ref 'DashboardName' DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CloudWatch-InsightRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Tags: {} Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-Project/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description Default: null VpcConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid Default: null EncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey Default: null SourceVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion Default: null ProjectTriggersWebhook: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html#cfn-codebuild-project-projecttriggers-webhook AllowedValues: - 'true' - 'false' Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type SourceReportBuildStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-reportbuildstatus AllowedValues: - 'true' - 'false' Default: null SourceSourceAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type SourceSourceAuthResource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource Default: null SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-sourceidentifier Default: null SourceBuildSpec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec Default: null SourceGitCloneDepth: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth Default: null SourceBuildStatusConfigContext: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-context Default: null SourceBuildStatusConfigTargetUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-buildstatusconfig.html#cfn-codebuild-project-buildstatusconfig-targeturl Default: null SourceGitSubmodulesConfigFetchSubmodules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-gitsubmodulesconfig.html#cfn-codebuild-project-gitsubmodulesconfig-fetchsubmodules AllowedValues: - 'true' - 'false' SourceInsecureSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl AllowedValues: - 'true' - 'false' Default: null SourceLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name Default: null ArtifactsPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path Default: null ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ArtifactsArtifactIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-artifactidentifier Default: null ArtifactsOverrideArtifactName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-overrideartifactname AllowedValues: - 'true' - 'false' Default: null ArtifactsPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging Default: null ArtifactsEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ArtifactsLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location Default: null ArtifactsName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name Default: null ArtifactsNamespaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype Default: null BadgeEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled AllowedValues: - 'true' - 'false' Default: null LogsConfigCloudWatchLogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-status LogsConfigCloudWatchLogsConfigGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-groupname Default: null LogsConfigCloudWatchLogsConfigStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-cloudwatchlogsconfig.html#cfn-codebuild-project-cloudwatchlogsconfig-streamname Default: null LogsConfigS3LogsConfigStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-status LogsConfigS3LogsConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null LogsConfigS3LogsConfigLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-s3logsconfig.html#cfn-codebuild-project-s3logsconfig-location Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole QueuedTimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes Default: null EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentPrivilegedMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode AllowedValues: - 'true' - 'false' Default: null EnvironmentImagePullCredentialsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-imagepullcredentialstype Default: null EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentRegistryCredentialCredential: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credential EnvironmentRegistryCredentialCredentialProvider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html#cfn-codebuild-project-registrycredential-credentialprovider EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype EnvironmentCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-certificate Default: null TimeoutInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes Default: null ProjectCacheType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type ProjectCacheLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location Default: null Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Description: !Ref 'Description' VpcConfig: VpcId: !Ref 'VpcConfigVpcId' EncryptionKey: !Ref 'EncryptionKey' SourceVersion: !Ref 'SourceVersion' Triggers: Webhook: !Ref 'ProjectTriggersWebhook' Source: Type: !Ref 'SourceType' ReportBuildStatus: !Ref 'SourceReportBuildStatus' Auth: Type: !Ref 'SourceSourceAuthType' Resource: !Ref 'SourceSourceAuthResource' SourceIdentifier: !Ref 'SourceSourceIdentifier' BuildSpec: !Ref 'SourceBuildSpec' GitCloneDepth: !Ref 'SourceGitCloneDepth' BuildStatusConfig: Context: !Ref 'SourceBuildStatusConfigContext' TargetUrl: !Ref 'SourceBuildStatusConfigTargetUrl' GitSubmodulesConfig: FetchSubmodules: !Ref 'SourceGitSubmodulesConfigFetchSubmodules' InsecureSsl: !Ref 'SourceInsecureSsl' Location: !Ref 'SourceLocation' Name: !Ref 'Name' Artifacts: Path: !Ref 'ArtifactsPath' Type: !Ref 'ArtifactsType' ArtifactIdentifier: !Ref 'ArtifactsArtifactIdentifier' OverrideArtifactName: !Ref 'ArtifactsOverrideArtifactName' Packaging: !Ref 'ArtifactsPackaging' EncryptionDisabled: !Ref 'ArtifactsEncryptionDisabled' Location: !Ref 'ArtifactsLocation' Name: !Ref 'ArtifactsName' NamespaceType: !Ref 'ArtifactsNamespaceType' BadgeEnabled: !Ref 'BadgeEnabled' LogsConfig: CloudWatchLogs: Status: !Ref 'LogsConfigCloudWatchLogsConfigStatus' GroupName: !Ref 'LogsConfigCloudWatchLogsConfigGroupName' StreamName: !Ref 'LogsConfigCloudWatchLogsConfigStreamName' S3Logs: Status: !Ref 'LogsConfigS3LogsConfigStatus' EncryptionDisabled: !Ref 'LogsConfigS3LogsConfigEncryptionDisabled' Location: !Ref 'LogsConfigS3LogsConfigLocation' ServiceRole: !Ref 'ServiceRole' QueuedTimeoutInMinutes: !Ref 'QueuedTimeoutInMinutes' Environment: Type: !Ref 'EnvironmentType' PrivilegedMode: !Ref 'EnvironmentPrivilegedMode' ImagePullCredentialsType: !Ref 'EnvironmentImagePullCredentialsType' Image: !Ref 'EnvironmentImage' RegistryCredential: Credential: !Ref 'EnvironmentRegistryCredentialCredential' CredentialProvider: !Ref 'EnvironmentRegistryCredentialCredentialProvider' ComputeType: !Ref 'EnvironmentComputeType' Certificate: !Ref 'EnvironmentCertificate' TimeoutInMinutes: !Ref 'TimeoutInMinutes' Cache: Type: !Ref 'ProjectCacheType' Location: !Ref 'ProjectCacheLocation' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-ReportGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigS3ReportExportConfigPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-path Default: null ReportExportConfigS3ReportExportConfigBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-bucket ReportExportConfigS3ReportExportConfigPackaging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-packaging Default: null ReportExportConfigS3ReportExportConfigEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptionkey Default: null ReportExportConfigS3ReportExportConfigEncryptionDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html#cfn-codebuild-reportgroup-s3reportexportconfig-encryptiondisabled AllowedValues: - 'true' - 'false' Default: null ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-name Default: null Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: S3Destination: Path: !Ref 'ReportExportConfigS3ReportExportConfigPath' Bucket: !Ref 'ReportExportConfigS3ReportExportConfigBucket' Packaging: !Ref 'ReportExportConfigS3ReportExportConfigPackaging' EncryptionKey: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionKey' EncryptionDisabled: !Ref 'ReportExportConfigS3ReportExportConfigEncryptionDisabled' ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeBuild-SourceCredential/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-username Default: null Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Username: !Ref 'Username' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeCommit-Repository/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-repositoryname CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-s3.html#cfn-codecommit-repository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-s3.html#cfn-codecommit-repository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-s3.html#cfn-codecommit-repository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeCommit::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Properties: RepositoryName: !Ref 'RepositoryName' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' Outputs: CloneUrlHttp: Value: GetAtt: - Resource - CloneUrlHttp CloneUrlSsh: Value: GetAtt: - Resource - CloneUrlSsh Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeCommit-Repository/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-repositoryname CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-s3.html#cfn-codecommit-repository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-s3.html#cfn-codecommit-repository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-s3.html#cfn-codecommit-repository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeCommit::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Properties: RepositoryName: !Ref 'RepositoryName' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' Outputs: CloneUrlHttp: Value: GetAtt: - Resource - CloneUrlHttp CloneUrlSsh: Value: GetAtt: - Resource - CloneUrlSsh Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeCommit-Repository/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-repositoryname CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-s3.html#cfn-codecommit-repository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-s3.html#cfn-codecommit-repository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-s3.html#cfn-codecommit-repository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeCommit::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Properties: RepositoryName: !Ref 'RepositoryName' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' Outputs: CloneUrlHttp: Value: GetAtt: - Resource - CloneUrlHttp CloneUrlSsh: Value: GetAtt: - Resource - CloneUrlSsh Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeCommit-Repository/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-repositoryname CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-s3.html#cfn-codecommit-repository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-s3.html#cfn-codecommit-repository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-s3.html#cfn-codecommit-repository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeCommit::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Properties: RepositoryName: !Ref 'RepositoryName' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' Outputs: CloneUrlHttp: Value: GetAtt: - Resource - CloneUrlHttp CloneUrlSsh: Value: GetAtt: - Resource - CloneUrlSsh Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-Application/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname Default: null ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform Default: null Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Properties: ApplicationName: !Ref 'ApplicationName' ComputePlatform: !Ref 'ComputePlatform' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Parameters: DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname Default: null MinimumHealthyHostsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type MinimumHealthyHostsValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Properties: DeploymentConfigName: !Ref 'DeploymentConfigName' MinimumHealthyHosts: Type: !Ref 'MinimumHealthyHostsType' Value: !Ref 'MinimumHealthyHostsValue' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: AlarmConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null AlarmConfigurationIgnorePollAlarmFailure: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure AllowedValues: - 'true' - 'false' Default: null ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname AutoRollbackConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null DeploymentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description Default: null DeploymentIgnoreApplicationStopFailures: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures AllowedValues: - 'true' - 'false' Default: null DeploymentRevisionLocationGitHubLocationCommitId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid DeploymentRevisionLocationGitHubLocationRepository: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository DeploymentRevisionLocationRevisionType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype Default: null DeploymentRevisionLocationS3LocationBucket: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket DeploymentRevisionLocationS3LocationBundleType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype Default: null DeploymentRevisionLocationS3LocationETag: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag Default: null DeploymentRevisionLocationS3LocationKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key DeploymentRevisionLocationS3LocationVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value Default: null DeploymentConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname Default: null DeploymentGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname Default: null DeploymentStyleDeploymentOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption Default: null DeploymentStyleDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: AlarmConfiguration: Enabled: !Ref 'AlarmConfigurationEnabled' IgnorePollAlarmFailure: !Ref 'AlarmConfigurationIgnorePollAlarmFailure' ApplicationName: !Ref 'ApplicationName' AutoRollbackConfiguration: Enabled: !Ref 'AutoRollbackConfigurationEnabled' Deployment: Description: !Ref 'DeploymentDescription' IgnoreApplicationStopFailures: !Ref 'DeploymentIgnoreApplicationStopFailures' Revision: GitHubLocation: CommitId: !Ref 'DeploymentRevisionLocationGitHubLocationCommitId' Repository: !Ref 'DeploymentRevisionLocationGitHubLocationRepository' RevisionType: !Ref 'DeploymentRevisionLocationRevisionType' S3Location: Bucket: !Ref 'DeploymentRevisionLocationS3LocationBucket' BundleType: !Ref 'DeploymentRevisionLocationS3LocationBundleType' ETag: !Ref 'DeploymentRevisionLocationS3LocationETag' Key: !Ref 'DeploymentRevisionLocationS3LocationKey' Version: !Ref 'DeploymentRevisionLocationS3LocationVersion' DeploymentConfigName: !Ref 'DeploymentConfigName' DeploymentGroupName: !Ref 'DeploymentGroupName' DeploymentStyle: DeploymentOption: !Ref 'DeploymentStyleDeploymentOption' DeploymentType: !Ref 'DeploymentStyleDeploymentType' Ec2TagSet: {} LoadBalancerInfo: {} OnPremisesTagSet: {} ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-computeplatform Default: null AgentPermissions: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-agentpermissions Default: null Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' ComputePlatform: !Ref 'ComputePlatform' AgentPermissions: !Ref 'AgentPermissions' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-computeplatform Default: null AgentPermissions: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-agentpermissions Default: null Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' ComputePlatform: !Ref 'ComputePlatform' AgentPermissions: !Ref 'AgentPermissions' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-computeplatform Default: null AgentPermissions: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-agentpermissions Default: null Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' ComputePlatform: !Ref 'ComputePlatform' AgentPermissions: !Ref 'AgentPermissions' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-computeplatform Default: null AgentPermissions: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-agentpermissions Default: null Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' ComputePlatform: !Ref 'ComputePlatform' AgentPermissions: !Ref 'AgentPermissions' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-computeplatform Default: null AgentPermissions: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-agentpermissions Default: null Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' ComputePlatform: !Ref 'ComputePlatform' AgentPermissions: !Ref 'AgentPermissions' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-computeplatform Default: null AgentPermissions: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-agentpermissions Default: null Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' ComputePlatform: !Ref 'ComputePlatform' AgentPermissions: !Ref 'AgentPermissions' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-computeplatform Default: null AgentPermissions: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-agentpermissions Default: null Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' ComputePlatform: !Ref 'ComputePlatform' AgentPermissions: !Ref 'AgentPermissions' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname ComputePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-computeplatform Default: null AgentPermissions: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-agentpermissions Default: null Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' ComputePlatform: !Ref 'ComputePlatform' AgentPermissions: !Ref 'AgentPermissions' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-CustomActionType/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider SettingsEntityUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate Default: null SettingsExecutionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate Default: null SettingsRevisionUrlTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate Default: null SettingsThirdPartyConfigurationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Settings: EntityUrlTemplate: !Ref 'SettingsEntityUrlTemplate' ExecutionUrlTemplate: !Ref 'SettingsExecutionUrlTemplate' RevisionUrlTemplate: !Ref 'SettingsRevisionUrlTemplate' ThirdPartyConfigurationUrl: !Ref 'SettingsThirdPartyConfigurationUrl' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Pipeline/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: ArtifactStoreEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id ArtifactStoreEncryptionKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type ArtifactStoreLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location ArtifactStoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name Default: null RestartExecutionOnUpdate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: ArtifactStore: EncryptionKey: Id: !Ref 'ArtifactStoreEncryptionKeyId' Type: !Ref 'ArtifactStoreEncryptionKeyType' Location: !Ref 'ArtifactStoreLocation' Type: !Ref 'ArtifactStoreType' Name: !Ref 'Name' RestartExecutionOnUpdate: !Ref 'RestartExecutionOnUpdate' RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodePipeline-Webhook/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: WebhookAuthConfigurationAllowedIPRange: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-allowediprange Default: null WebhookAuthConfigurationSecretToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken Default: null Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-name Default: null TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion RegisterWithThirdParty: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-registerwiththirdparty AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: AllowedIPRange: !Ref 'WebhookAuthConfigurationAllowedIPRange' SecretToken: !Ref 'WebhookAuthConfigurationSecretToken' Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' Name: !Ref 'Name' TargetPipelineVersion: !Ref 'TargetPipelineVersion' RegisterWithThirdParty: !Ref 'RegisterWithThirdParty' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStar-GitHubRepository/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: EnableIssues: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues AllowedValues: - 'true' - 'false' Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner IsPrivate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate AllowedValues: - 'true' - 'false' Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion Default: null CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key RepositoryDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription Default: null Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: EnableIssues: !Ref 'EnableIssues' RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' IsPrivate: !Ref 'IsPrivate' Code: S3: ObjectVersion: !Ref 'CodeS3ObjectVersion' Bucket: !Ref 'CodeS3Bucket' Key: !Ref 'CodeS3Key' RepositoryDescription: !Ref 'RepositoryDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Default: null HostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-hostarn Default: null Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' HostArn: !Ref 'HostArn' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarConnections-Connection/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-status Default: null DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: Status: !Ref 'Status' DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPool/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: PushSyncRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-pushsync.html#cfn-cognito-identitypool-pushsync-rolearn Default: null CognitoEvents: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-cognitoevents Default: null DeveloperProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-developerprovidername Default: null CognitoStreamsStreamingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamingstatus Default: null CognitoStreamsStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamname Default: null CognitoStreamsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-rolearn Default: null IdentityPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-identitypoolname Default: null AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' SupportedLoginProviders: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-supportedloginproviders Default: null AllowClassicFlow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowclassicflow AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: PushSync: RoleArn: !Ref 'PushSyncRoleArn' CognitoEvents: !Ref 'CognitoEvents' DeveloperProviderName: !Ref 'DeveloperProviderName' CognitoStreams: StreamingStatus: !Ref 'CognitoStreamsStreamingStatus' StreamName: !Ref 'CognitoStreamsStreamName' RoleArn: !Ref 'CognitoStreamsRoleArn' IdentityPoolName: !Ref 'IdentityPoolName' AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' SupportedLoginProviders: !Ref 'SupportedLoginProviders' AllowClassicFlow: !Ref 'AllowClassicFlow' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPool/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: PushSyncRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-pushsync.html#cfn-cognito-identitypool-pushsync-rolearn Default: null CognitoEvents: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-cognitoevents Default: null DeveloperProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-developerprovidername Default: null CognitoStreamsStreamingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamingstatus Default: null CognitoStreamsStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamname Default: null CognitoStreamsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-rolearn Default: null IdentityPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-identitypoolname Default: null AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' SupportedLoginProviders: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-supportedloginproviders Default: null AllowClassicFlow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowclassicflow AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: PushSync: RoleArn: !Ref 'PushSyncRoleArn' CognitoEvents: !Ref 'CognitoEvents' DeveloperProviderName: !Ref 'DeveloperProviderName' CognitoStreams: StreamingStatus: !Ref 'CognitoStreamsStreamingStatus' StreamName: !Ref 'CognitoStreamsStreamName' RoleArn: !Ref 'CognitoStreamsRoleArn' IdentityPoolName: !Ref 'IdentityPoolName' AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' SupportedLoginProviders: !Ref 'SupportedLoginProviders' AllowClassicFlow: !Ref 'AllowClassicFlow' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPool/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: PushSyncRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-pushsync.html#cfn-cognito-identitypool-pushsync-rolearn Default: null CognitoEvents: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-cognitoevents Default: null DeveloperProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-developerprovidername Default: null CognitoStreamsStreamingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamingstatus Default: null CognitoStreamsStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamname Default: null CognitoStreamsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-rolearn Default: null IdentityPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-identitypoolname Default: null AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' SupportedLoginProviders: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-supportedloginproviders Default: null AllowClassicFlow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowclassicflow AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: PushSync: RoleArn: !Ref 'PushSyncRoleArn' CognitoEvents: !Ref 'CognitoEvents' DeveloperProviderName: !Ref 'DeveloperProviderName' CognitoStreams: StreamingStatus: !Ref 'CognitoStreamsStreamingStatus' StreamName: !Ref 'CognitoStreamsStreamName' RoleArn: !Ref 'CognitoStreamsRoleArn' IdentityPoolName: !Ref 'IdentityPoolName' AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' SupportedLoginProviders: !Ref 'SupportedLoginProviders' AllowClassicFlow: !Ref 'AllowClassicFlow' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPool/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: PushSyncRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-pushsync.html#cfn-cognito-identitypool-pushsync-rolearn Default: null CognitoEvents: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-cognitoevents Default: null DeveloperProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-developerprovidername Default: null CognitoStreamsStreamingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamingstatus Default: null CognitoStreamsStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamname Default: null CognitoStreamsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-rolearn Default: null IdentityPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-identitypoolname Default: null AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' SupportedLoginProviders: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-supportedloginproviders Default: null AllowClassicFlow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowclassicflow AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: PushSync: RoleArn: !Ref 'PushSyncRoleArn' CognitoEvents: !Ref 'CognitoEvents' DeveloperProviderName: !Ref 'DeveloperProviderName' CognitoStreams: StreamingStatus: !Ref 'CognitoStreamsStreamingStatus' StreamName: !Ref 'CognitoStreamsStreamName' RoleArn: !Ref 'CognitoStreamsRoleArn' IdentityPoolName: !Ref 'IdentityPoolName' AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' SupportedLoginProviders: !Ref 'SupportedLoginProviders' AllowClassicFlow: !Ref 'AllowClassicFlow' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPool/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: PushSyncRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-pushsync.html#cfn-cognito-identitypool-pushsync-rolearn Default: null CognitoEvents: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-cognitoevents Default: null DeveloperProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-developerprovidername Default: null CognitoStreamsStreamingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamingstatus Default: null CognitoStreamsStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamname Default: null CognitoStreamsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-rolearn Default: null IdentityPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-identitypoolname Default: null AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' SupportedLoginProviders: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-supportedloginproviders Default: null AllowClassicFlow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowclassicflow AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: PushSync: RoleArn: !Ref 'PushSyncRoleArn' CognitoEvents: !Ref 'CognitoEvents' DeveloperProviderName: !Ref 'DeveloperProviderName' CognitoStreams: StreamingStatus: !Ref 'CognitoStreamsStreamingStatus' StreamName: !Ref 'CognitoStreamsStreamName' RoleArn: !Ref 'CognitoStreamsRoleArn' IdentityPoolName: !Ref 'IdentityPoolName' AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' SupportedLoginProviders: !Ref 'SupportedLoginProviders' AllowClassicFlow: !Ref 'AllowClassicFlow' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPool/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: PushSyncRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-pushsync.html#cfn-cognito-identitypool-pushsync-rolearn Default: null CognitoEvents: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-cognitoevents Default: null DeveloperProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-developerprovidername Default: null CognitoStreamsStreamingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamingstatus Default: null CognitoStreamsStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamname Default: null CognitoStreamsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-rolearn Default: null IdentityPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-identitypoolname Default: null AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' SupportedLoginProviders: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-supportedloginproviders Default: null AllowClassicFlow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowclassicflow AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: PushSync: RoleArn: !Ref 'PushSyncRoleArn' CognitoEvents: !Ref 'CognitoEvents' DeveloperProviderName: !Ref 'DeveloperProviderName' CognitoStreams: StreamingStatus: !Ref 'CognitoStreamsStreamingStatus' StreamName: !Ref 'CognitoStreamsStreamName' RoleArn: !Ref 'CognitoStreamsRoleArn' IdentityPoolName: !Ref 'IdentityPoolName' AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' SupportedLoginProviders: !Ref 'SupportedLoginProviders' AllowClassicFlow: !Ref 'AllowClassicFlow' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPool/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: PushSyncRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-pushsync.html#cfn-cognito-identitypool-pushsync-rolearn Default: null CognitoEvents: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-cognitoevents Default: null DeveloperProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-developerprovidername Default: null CognitoStreamsStreamingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamingstatus Default: null CognitoStreamsStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamname Default: null CognitoStreamsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-rolearn Default: null IdentityPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-identitypoolname Default: null AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' SupportedLoginProviders: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-supportedloginproviders Default: null AllowClassicFlow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowclassicflow AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: PushSync: RoleArn: !Ref 'PushSyncRoleArn' CognitoEvents: !Ref 'CognitoEvents' DeveloperProviderName: !Ref 'DeveloperProviderName' CognitoStreams: StreamingStatus: !Ref 'CognitoStreamsStreamingStatus' StreamName: !Ref 'CognitoStreamsStreamName' RoleArn: !Ref 'CognitoStreamsRoleArn' IdentityPoolName: !Ref 'IdentityPoolName' AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' SupportedLoginProviders: !Ref 'SupportedLoginProviders' AllowClassicFlow: !Ref 'AllowClassicFlow' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPool/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: PushSyncRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-pushsync.html#cfn-cognito-identitypool-pushsync-rolearn Default: null CognitoEvents: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-cognitoevents Default: null DeveloperProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-developerprovidername Default: null CognitoStreamsStreamingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamingstatus Default: null CognitoStreamsStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamname Default: null CognitoStreamsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-rolearn Default: null IdentityPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-identitypoolname Default: null AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' SupportedLoginProviders: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-supportedloginproviders Default: null AllowClassicFlow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowclassicflow AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: PushSync: RoleArn: !Ref 'PushSyncRoleArn' CognitoEvents: !Ref 'CognitoEvents' DeveloperProviderName: !Ref 'DeveloperProviderName' CognitoStreams: StreamingStatus: !Ref 'CognitoStreamsStreamingStatus' StreamName: !Ref 'CognitoStreamsStreamName' RoleArn: !Ref 'CognitoStreamsRoleArn' IdentityPoolName: !Ref 'IdentityPoolName' AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' SupportedLoginProviders: !Ref 'SupportedLoginProviders' AllowClassicFlow: !Ref 'AllowClassicFlow' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPool/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: PushSyncRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-pushsync.html#cfn-cognito-identitypool-pushsync-rolearn Default: null CognitoEvents: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-cognitoevents Default: null DeveloperProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-developerprovidername Default: null CognitoStreamsStreamingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamingstatus Default: null CognitoStreamsStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamname Default: null CognitoStreamsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-rolearn Default: null IdentityPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-identitypoolname Default: null AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' SupportedLoginProviders: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-supportedloginproviders Default: null AllowClassicFlow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowclassicflow AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: PushSync: RoleArn: !Ref 'PushSyncRoleArn' CognitoEvents: !Ref 'CognitoEvents' DeveloperProviderName: !Ref 'DeveloperProviderName' CognitoStreams: StreamingStatus: !Ref 'CognitoStreamsStreamingStatus' StreamName: !Ref 'CognitoStreamsStreamName' RoleArn: !Ref 'CognitoStreamsRoleArn' IdentityPoolName: !Ref 'IdentityPoolName' AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' SupportedLoginProviders: !Ref 'SupportedLoginProviders' AllowClassicFlow: !Ref 'AllowClassicFlow' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: RoleMappings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-rolemappings Default: null IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Roles: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-roles Default: null Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: RoleMappings: !Ref 'RoleMappings' IdentityPoolId: !Ref 'IdentityPoolId' Roles: !Ref 'Roles' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: RoleMappings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-rolemappings Default: null IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Roles: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-roles Default: null Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: RoleMappings: !Ref 'RoleMappings' IdentityPoolId: !Ref 'IdentityPoolId' Roles: !Ref 'Roles' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: RoleMappings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-rolemappings Default: null IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Roles: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-roles Default: null Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: RoleMappings: !Ref 'RoleMappings' IdentityPoolId: !Ref 'IdentityPoolId' Roles: !Ref 'Roles' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: RoleMappings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-rolemappings Default: null IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Roles: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-roles Default: null Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: RoleMappings: !Ref 'RoleMappings' IdentityPoolId: !Ref 'IdentityPoolId' Roles: !Ref 'Roles' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: RoleMappings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-rolemappings Default: null IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Roles: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-roles Default: null Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: RoleMappings: !Ref 'RoleMappings' IdentityPoolId: !Ref 'IdentityPoolId' Roles: !Ref 'Roles' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: RoleMappings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-rolemappings Default: null IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Roles: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-roles Default: null Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: RoleMappings: !Ref 'RoleMappings' IdentityPoolId: !Ref 'IdentityPoolId' Roles: !Ref 'Roles' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: RoleMappings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-rolemappings Default: null IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Roles: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-roles Default: null Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: RoleMappings: !Ref 'RoleMappings' IdentityPoolId: !Ref 'IdentityPoolId' Roles: !Ref 'Roles' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: RoleMappings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-rolemappings Default: null IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Roles: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-roles Default: null Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: RoleMappings: !Ref 'RoleMappings' IdentityPoolId: !Ref 'IdentityPoolId' Roles: !Ref 'Roles' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: RoleMappings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-rolemappings Default: null IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Roles: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-roles Default: null Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: RoleMappings: !Ref 'RoleMappings' IdentityPoolId: !Ref 'IdentityPoolId' Roles: !Ref 'Roles' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: RoleMappings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-rolemappings Default: null IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Roles: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-roles Default: null Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: RoleMappings: !Ref 'RoleMappings' IdentityPoolId: !Ref 'IdentityPoolId' Roles: !Ref 'Roles' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: RoleMappings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-rolemappings Default: null IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Roles: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-roles Default: null Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: RoleMappings: !Ref 'RoleMappings' IdentityPoolId: !Ref 'IdentityPoolId' Roles: !Ref 'Roles' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: RoleMappings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-rolemappings Default: null IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Roles: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-roles Default: null Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: RoleMappings: !Ref 'RoleMappings' IdentityPoolId: !Ref 'IdentityPoolId' Roles: !Ref 'Roles' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPool/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Parameters: UserPoolTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpooltags Default: null PoliciesPasswordPolicyRequireNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirenumbers AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyMinimumLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-minimumlength Default: null PoliciesPasswordPolicyTemporaryPasswordValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-temporarypasswordvaliditydays Default: null PoliciesPasswordPolicyRequireUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requireuppercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirelowercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireSymbols: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requiresymbols AllowedValues: - 'true' - 'false' Default: null VerificationMessageTemplateEmailMessageByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessagebylink Default: null VerificationMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessage Default: null VerificationMessageTemplateSmsMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-smsmessage Default: null VerificationMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubject Default: null VerificationMessageTemplateDefaultEmailOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-defaultemailoption Default: null VerificationMessageTemplateEmailSubjectByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubjectbylink Default: null MfaConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-mfaconfiguration Default: null AdminCreateUserConfigInviteMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailmessage Default: null AdminCreateUserConfigInviteMessageTemplateSMSMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-smsmessage Default: null AdminCreateUserConfigInviteMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailsubject Default: null AdminCreateUserConfigUnusedAccountValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-unusedaccountvaliditydays Default: null AdminCreateUserConfigAllowAdminCreateUserOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-allowadmincreateuseronly AllowedValues: - 'true' - 'false' Default: null SmsAuthenticationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsauthenticationmessage Default: null UsernameConfigurationCaseSensitive: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-usernameconfiguration.html#cfn-cognito-userpool-usernameconfiguration-casesensitive AllowedValues: - 'true' - 'false' Default: null UserPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpoolname Default: null SmsVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsverificationmessage Default: null UserPoolAddOnsAdvancedSecurityMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-userpooladdons.html#cfn-cognito-userpool-userpooladdons-advancedsecuritymode Default: null EmailConfigurationReplyToEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-replytoemailaddress Default: null EmailConfigurationConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-configurationset Default: null EmailConfigurationEmailSendingAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-emailsendingaccount Default: null EmailConfigurationSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-sourcearn Default: null EmailConfigurationFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-from Default: null SmsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-externalid Default: null SmsConfigurationSnsCallerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-snscallerarn Default: null EmailVerificationSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationsubject Default: null LambdaConfigCreateAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-createauthchallenge Default: null LambdaConfigPreAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-preauthentication Default: null LambdaConfigDefineAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-defineauthchallenge Default: null LambdaConfigPreSignUp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-presignup Default: null LambdaConfigPreTokenGeneration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-pretokengeneration Default: null LambdaConfigUserMigration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-usermigration Default: null LambdaConfigPostAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postauthentication Default: null LambdaConfigPostConfirmation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postconfirmation Default: null LambdaConfigCustomMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-custommessage Default: null LambdaConfigVerifyAuthChallengeResponse: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-verifyauthchallengeresponse Default: null DeviceConfigurationDeviceOnlyRememberedOnUserPrompt: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-deviceonlyrememberedonuserprompt AllowedValues: - 'true' - 'false' Default: null DeviceConfigurationChallengeRequiredOnNewDevice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-challengerequiredonnewdevice AllowedValues: - 'true' - 'false' Default: null EmailVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationmessage Default: null Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Properties: UserPoolTags: !Ref 'UserPoolTags' Policies: PasswordPolicy: RequireNumbers: !Ref 'PoliciesPasswordPolicyRequireNumbers' MinimumLength: !Ref 'PoliciesPasswordPolicyMinimumLength' TemporaryPasswordValidityDays: !Ref 'PoliciesPasswordPolicyTemporaryPasswordValidityDays' RequireUppercase: !Ref 'PoliciesPasswordPolicyRequireUppercase' RequireLowercase: !Ref 'PoliciesPasswordPolicyRequireLowercase' RequireSymbols: !Ref 'PoliciesPasswordPolicyRequireSymbols' VerificationMessageTemplate: EmailMessageByLink: !Ref 'VerificationMessageTemplateEmailMessageByLink' EmailMessage: !Ref 'VerificationMessageTemplateEmailMessage' SmsMessage: !Ref 'VerificationMessageTemplateSmsMessage' EmailSubject: !Ref 'VerificationMessageTemplateEmailSubject' DefaultEmailOption: !Ref 'VerificationMessageTemplateDefaultEmailOption' EmailSubjectByLink: !Ref 'VerificationMessageTemplateEmailSubjectByLink' MfaConfiguration: !Ref 'MfaConfiguration' AdminCreateUserConfig: InviteMessageTemplate: EmailMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailMessage' SMSMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateSMSMessage' EmailSubject: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailSubject' UnusedAccountValidityDays: !Ref 'AdminCreateUserConfigUnusedAccountValidityDays' AllowAdminCreateUserOnly: !Ref 'AdminCreateUserConfigAllowAdminCreateUserOnly' SmsAuthenticationMessage: !Ref 'SmsAuthenticationMessage' UsernameConfiguration: CaseSensitive: !Ref 'UsernameConfigurationCaseSensitive' UserPoolName: !Ref 'UserPoolName' SmsVerificationMessage: !Ref 'SmsVerificationMessage' UserPoolAddOns: AdvancedSecurityMode: !Ref 'UserPoolAddOnsAdvancedSecurityMode' EmailConfiguration: ReplyToEmailAddress: !Ref 'EmailConfigurationReplyToEmailAddress' ConfigurationSet: !Ref 'EmailConfigurationConfigurationSet' EmailSendingAccount: !Ref 'EmailConfigurationEmailSendingAccount' SourceArn: !Ref 'EmailConfigurationSourceArn' From: !Ref 'EmailConfigurationFrom' SmsConfiguration: ExternalId: !Ref 'SmsConfigurationExternalId' SnsCallerArn: !Ref 'SmsConfigurationSnsCallerArn' EmailVerificationSubject: !Ref 'EmailVerificationSubject' LambdaConfig: CreateAuthChallenge: !Ref 'LambdaConfigCreateAuthChallenge' PreAuthentication: !Ref 'LambdaConfigPreAuthentication' DefineAuthChallenge: !Ref 'LambdaConfigDefineAuthChallenge' PreSignUp: !Ref 'LambdaConfigPreSignUp' PreTokenGeneration: !Ref 'LambdaConfigPreTokenGeneration' UserMigration: !Ref 'LambdaConfigUserMigration' PostAuthentication: !Ref 'LambdaConfigPostAuthentication' PostConfirmation: !Ref 'LambdaConfigPostConfirmation' CustomMessage: !Ref 'LambdaConfigCustomMessage' VerifyAuthChallengeResponse: !Ref 'LambdaConfigVerifyAuthChallengeResponse' DeviceConfiguration: DeviceOnlyRememberedOnUserPrompt: !Ref 'DeviceConfigurationDeviceOnlyRememberedOnUserPrompt' ChallengeRequiredOnNewDevice: !Ref 'DeviceConfigurationChallengeRequiredOnNewDevice' EmailVerificationMessage: !Ref 'EmailVerificationMessage' AccountRecoverySetting: {} Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPool/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Parameters: UserPoolTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpooltags Default: null PoliciesPasswordPolicyRequireNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirenumbers AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyMinimumLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-minimumlength Default: null PoliciesPasswordPolicyTemporaryPasswordValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-temporarypasswordvaliditydays Default: null PoliciesPasswordPolicyRequireUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requireuppercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirelowercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireSymbols: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requiresymbols AllowedValues: - 'true' - 'false' Default: null VerificationMessageTemplateEmailMessageByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessagebylink Default: null VerificationMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessage Default: null VerificationMessageTemplateSmsMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-smsmessage Default: null VerificationMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubject Default: null VerificationMessageTemplateDefaultEmailOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-defaultemailoption Default: null VerificationMessageTemplateEmailSubjectByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubjectbylink Default: null MfaConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-mfaconfiguration Default: null AdminCreateUserConfigInviteMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailmessage Default: null AdminCreateUserConfigInviteMessageTemplateSMSMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-smsmessage Default: null AdminCreateUserConfigInviteMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailsubject Default: null AdminCreateUserConfigUnusedAccountValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-unusedaccountvaliditydays Default: null AdminCreateUserConfigAllowAdminCreateUserOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-allowadmincreateuseronly AllowedValues: - 'true' - 'false' Default: null SmsAuthenticationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsauthenticationmessage Default: null UsernameConfigurationCaseSensitive: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-usernameconfiguration.html#cfn-cognito-userpool-usernameconfiguration-casesensitive AllowedValues: - 'true' - 'false' Default: null UserPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpoolname Default: null SmsVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsverificationmessage Default: null UserPoolAddOnsAdvancedSecurityMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-userpooladdons.html#cfn-cognito-userpool-userpooladdons-advancedsecuritymode Default: null EmailConfigurationReplyToEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-replytoemailaddress Default: null EmailConfigurationConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-configurationset Default: null EmailConfigurationEmailSendingAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-emailsendingaccount Default: null EmailConfigurationSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-sourcearn Default: null EmailConfigurationFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-from Default: null SmsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-externalid Default: null SmsConfigurationSnsCallerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-snscallerarn Default: null EmailVerificationSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationsubject Default: null LambdaConfigCreateAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-createauthchallenge Default: null LambdaConfigPreAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-preauthentication Default: null LambdaConfigDefineAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-defineauthchallenge Default: null LambdaConfigPreSignUp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-presignup Default: null LambdaConfigPreTokenGeneration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-pretokengeneration Default: null LambdaConfigUserMigration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-usermigration Default: null LambdaConfigPostAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postauthentication Default: null LambdaConfigPostConfirmation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postconfirmation Default: null LambdaConfigCustomMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-custommessage Default: null LambdaConfigVerifyAuthChallengeResponse: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-verifyauthchallengeresponse Default: null DeviceConfigurationDeviceOnlyRememberedOnUserPrompt: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-deviceonlyrememberedonuserprompt AllowedValues: - 'true' - 'false' Default: null DeviceConfigurationChallengeRequiredOnNewDevice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-challengerequiredonnewdevice AllowedValues: - 'true' - 'false' Default: null EmailVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationmessage Default: null Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Properties: UserPoolTags: !Ref 'UserPoolTags' Policies: PasswordPolicy: RequireNumbers: !Ref 'PoliciesPasswordPolicyRequireNumbers' MinimumLength: !Ref 'PoliciesPasswordPolicyMinimumLength' TemporaryPasswordValidityDays: !Ref 'PoliciesPasswordPolicyTemporaryPasswordValidityDays' RequireUppercase: !Ref 'PoliciesPasswordPolicyRequireUppercase' RequireLowercase: !Ref 'PoliciesPasswordPolicyRequireLowercase' RequireSymbols: !Ref 'PoliciesPasswordPolicyRequireSymbols' VerificationMessageTemplate: EmailMessageByLink: !Ref 'VerificationMessageTemplateEmailMessageByLink' EmailMessage: !Ref 'VerificationMessageTemplateEmailMessage' SmsMessage: !Ref 'VerificationMessageTemplateSmsMessage' EmailSubject: !Ref 'VerificationMessageTemplateEmailSubject' DefaultEmailOption: !Ref 'VerificationMessageTemplateDefaultEmailOption' EmailSubjectByLink: !Ref 'VerificationMessageTemplateEmailSubjectByLink' MfaConfiguration: !Ref 'MfaConfiguration' AdminCreateUserConfig: InviteMessageTemplate: EmailMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailMessage' SMSMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateSMSMessage' EmailSubject: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailSubject' UnusedAccountValidityDays: !Ref 'AdminCreateUserConfigUnusedAccountValidityDays' AllowAdminCreateUserOnly: !Ref 'AdminCreateUserConfigAllowAdminCreateUserOnly' SmsAuthenticationMessage: !Ref 'SmsAuthenticationMessage' UsernameConfiguration: CaseSensitive: !Ref 'UsernameConfigurationCaseSensitive' UserPoolName: !Ref 'UserPoolName' SmsVerificationMessage: !Ref 'SmsVerificationMessage' UserPoolAddOns: AdvancedSecurityMode: !Ref 'UserPoolAddOnsAdvancedSecurityMode' EmailConfiguration: ReplyToEmailAddress: !Ref 'EmailConfigurationReplyToEmailAddress' ConfigurationSet: !Ref 'EmailConfigurationConfigurationSet' EmailSendingAccount: !Ref 'EmailConfigurationEmailSendingAccount' SourceArn: !Ref 'EmailConfigurationSourceArn' From: !Ref 'EmailConfigurationFrom' SmsConfiguration: ExternalId: !Ref 'SmsConfigurationExternalId' SnsCallerArn: !Ref 'SmsConfigurationSnsCallerArn' EmailVerificationSubject: !Ref 'EmailVerificationSubject' LambdaConfig: CreateAuthChallenge: !Ref 'LambdaConfigCreateAuthChallenge' PreAuthentication: !Ref 'LambdaConfigPreAuthentication' DefineAuthChallenge: !Ref 'LambdaConfigDefineAuthChallenge' PreSignUp: !Ref 'LambdaConfigPreSignUp' PreTokenGeneration: !Ref 'LambdaConfigPreTokenGeneration' UserMigration: !Ref 'LambdaConfigUserMigration' PostAuthentication: !Ref 'LambdaConfigPostAuthentication' PostConfirmation: !Ref 'LambdaConfigPostConfirmation' CustomMessage: !Ref 'LambdaConfigCustomMessage' VerifyAuthChallengeResponse: !Ref 'LambdaConfigVerifyAuthChallengeResponse' DeviceConfiguration: DeviceOnlyRememberedOnUserPrompt: !Ref 'DeviceConfigurationDeviceOnlyRememberedOnUserPrompt' ChallengeRequiredOnNewDevice: !Ref 'DeviceConfigurationChallengeRequiredOnNewDevice' EmailVerificationMessage: !Ref 'EmailVerificationMessage' AccountRecoverySetting: {} Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPool/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Parameters: UserPoolTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpooltags Default: null PoliciesPasswordPolicyRequireNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirenumbers AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyMinimumLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-minimumlength Default: null PoliciesPasswordPolicyTemporaryPasswordValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-temporarypasswordvaliditydays Default: null PoliciesPasswordPolicyRequireUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requireuppercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirelowercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireSymbols: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requiresymbols AllowedValues: - 'true' - 'false' Default: null VerificationMessageTemplateEmailMessageByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessagebylink Default: null VerificationMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessage Default: null VerificationMessageTemplateSmsMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-smsmessage Default: null VerificationMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubject Default: null VerificationMessageTemplateDefaultEmailOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-defaultemailoption Default: null VerificationMessageTemplateEmailSubjectByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubjectbylink Default: null MfaConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-mfaconfiguration Default: null AdminCreateUserConfigInviteMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailmessage Default: null AdminCreateUserConfigInviteMessageTemplateSMSMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-smsmessage Default: null AdminCreateUserConfigInviteMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailsubject Default: null AdminCreateUserConfigUnusedAccountValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-unusedaccountvaliditydays Default: null AdminCreateUserConfigAllowAdminCreateUserOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-allowadmincreateuseronly AllowedValues: - 'true' - 'false' Default: null SmsAuthenticationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsauthenticationmessage Default: null UsernameConfigurationCaseSensitive: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-usernameconfiguration.html#cfn-cognito-userpool-usernameconfiguration-casesensitive AllowedValues: - 'true' - 'false' Default: null UserPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpoolname Default: null SmsVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsverificationmessage Default: null UserPoolAddOnsAdvancedSecurityMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-userpooladdons.html#cfn-cognito-userpool-userpooladdons-advancedsecuritymode Default: null EmailConfigurationReplyToEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-replytoemailaddress Default: null EmailConfigurationConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-configurationset Default: null EmailConfigurationEmailSendingAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-emailsendingaccount Default: null EmailConfigurationSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-sourcearn Default: null EmailConfigurationFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-from Default: null SmsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-externalid Default: null SmsConfigurationSnsCallerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-snscallerarn Default: null EmailVerificationSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationsubject Default: null LambdaConfigCreateAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-createauthchallenge Default: null LambdaConfigPreAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-preauthentication Default: null LambdaConfigDefineAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-defineauthchallenge Default: null LambdaConfigPreSignUp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-presignup Default: null LambdaConfigPreTokenGeneration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-pretokengeneration Default: null LambdaConfigUserMigration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-usermigration Default: null LambdaConfigPostAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postauthentication Default: null LambdaConfigPostConfirmation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postconfirmation Default: null LambdaConfigCustomMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-custommessage Default: null LambdaConfigVerifyAuthChallengeResponse: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-verifyauthchallengeresponse Default: null DeviceConfigurationDeviceOnlyRememberedOnUserPrompt: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-deviceonlyrememberedonuserprompt AllowedValues: - 'true' - 'false' Default: null DeviceConfigurationChallengeRequiredOnNewDevice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-challengerequiredonnewdevice AllowedValues: - 'true' - 'false' Default: null EmailVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationmessage Default: null Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Properties: UserPoolTags: !Ref 'UserPoolTags' Policies: PasswordPolicy: RequireNumbers: !Ref 'PoliciesPasswordPolicyRequireNumbers' MinimumLength: !Ref 'PoliciesPasswordPolicyMinimumLength' TemporaryPasswordValidityDays: !Ref 'PoliciesPasswordPolicyTemporaryPasswordValidityDays' RequireUppercase: !Ref 'PoliciesPasswordPolicyRequireUppercase' RequireLowercase: !Ref 'PoliciesPasswordPolicyRequireLowercase' RequireSymbols: !Ref 'PoliciesPasswordPolicyRequireSymbols' VerificationMessageTemplate: EmailMessageByLink: !Ref 'VerificationMessageTemplateEmailMessageByLink' EmailMessage: !Ref 'VerificationMessageTemplateEmailMessage' SmsMessage: !Ref 'VerificationMessageTemplateSmsMessage' EmailSubject: !Ref 'VerificationMessageTemplateEmailSubject' DefaultEmailOption: !Ref 'VerificationMessageTemplateDefaultEmailOption' EmailSubjectByLink: !Ref 'VerificationMessageTemplateEmailSubjectByLink' MfaConfiguration: !Ref 'MfaConfiguration' AdminCreateUserConfig: InviteMessageTemplate: EmailMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailMessage' SMSMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateSMSMessage' EmailSubject: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailSubject' UnusedAccountValidityDays: !Ref 'AdminCreateUserConfigUnusedAccountValidityDays' AllowAdminCreateUserOnly: !Ref 'AdminCreateUserConfigAllowAdminCreateUserOnly' SmsAuthenticationMessage: !Ref 'SmsAuthenticationMessage' UsernameConfiguration: CaseSensitive: !Ref 'UsernameConfigurationCaseSensitive' UserPoolName: !Ref 'UserPoolName' SmsVerificationMessage: !Ref 'SmsVerificationMessage' UserPoolAddOns: AdvancedSecurityMode: !Ref 'UserPoolAddOnsAdvancedSecurityMode' EmailConfiguration: ReplyToEmailAddress: !Ref 'EmailConfigurationReplyToEmailAddress' ConfigurationSet: !Ref 'EmailConfigurationConfigurationSet' EmailSendingAccount: !Ref 'EmailConfigurationEmailSendingAccount' SourceArn: !Ref 'EmailConfigurationSourceArn' From: !Ref 'EmailConfigurationFrom' SmsConfiguration: ExternalId: !Ref 'SmsConfigurationExternalId' SnsCallerArn: !Ref 'SmsConfigurationSnsCallerArn' EmailVerificationSubject: !Ref 'EmailVerificationSubject' LambdaConfig: CreateAuthChallenge: !Ref 'LambdaConfigCreateAuthChallenge' PreAuthentication: !Ref 'LambdaConfigPreAuthentication' DefineAuthChallenge: !Ref 'LambdaConfigDefineAuthChallenge' PreSignUp: !Ref 'LambdaConfigPreSignUp' PreTokenGeneration: !Ref 'LambdaConfigPreTokenGeneration' UserMigration: !Ref 'LambdaConfigUserMigration' PostAuthentication: !Ref 'LambdaConfigPostAuthentication' PostConfirmation: !Ref 'LambdaConfigPostConfirmation' CustomMessage: !Ref 'LambdaConfigCustomMessage' VerifyAuthChallengeResponse: !Ref 'LambdaConfigVerifyAuthChallengeResponse' DeviceConfiguration: DeviceOnlyRememberedOnUserPrompt: !Ref 'DeviceConfigurationDeviceOnlyRememberedOnUserPrompt' ChallengeRequiredOnNewDevice: !Ref 'DeviceConfigurationChallengeRequiredOnNewDevice' EmailVerificationMessage: !Ref 'EmailVerificationMessage' AccountRecoverySetting: {} Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPool/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Parameters: UserPoolTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpooltags Default: null PoliciesPasswordPolicyRequireNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirenumbers AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyMinimumLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-minimumlength Default: null PoliciesPasswordPolicyTemporaryPasswordValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-temporarypasswordvaliditydays Default: null PoliciesPasswordPolicyRequireUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requireuppercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirelowercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireSymbols: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requiresymbols AllowedValues: - 'true' - 'false' Default: null VerificationMessageTemplateEmailMessageByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessagebylink Default: null VerificationMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessage Default: null VerificationMessageTemplateSmsMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-smsmessage Default: null VerificationMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubject Default: null VerificationMessageTemplateDefaultEmailOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-defaultemailoption Default: null VerificationMessageTemplateEmailSubjectByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubjectbylink Default: null MfaConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-mfaconfiguration Default: null AdminCreateUserConfigInviteMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailmessage Default: null AdminCreateUserConfigInviteMessageTemplateSMSMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-smsmessage Default: null AdminCreateUserConfigInviteMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailsubject Default: null AdminCreateUserConfigUnusedAccountValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-unusedaccountvaliditydays Default: null AdminCreateUserConfigAllowAdminCreateUserOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-allowadmincreateuseronly AllowedValues: - 'true' - 'false' Default: null SmsAuthenticationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsauthenticationmessage Default: null UsernameConfigurationCaseSensitive: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-usernameconfiguration.html#cfn-cognito-userpool-usernameconfiguration-casesensitive AllowedValues: - 'true' - 'false' Default: null UserPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpoolname Default: null SmsVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsverificationmessage Default: null UserPoolAddOnsAdvancedSecurityMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-userpooladdons.html#cfn-cognito-userpool-userpooladdons-advancedsecuritymode Default: null EmailConfigurationReplyToEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-replytoemailaddress Default: null EmailConfigurationConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-configurationset Default: null EmailConfigurationEmailSendingAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-emailsendingaccount Default: null EmailConfigurationSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-sourcearn Default: null EmailConfigurationFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-from Default: null SmsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-externalid Default: null SmsConfigurationSnsCallerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-snscallerarn Default: null EmailVerificationSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationsubject Default: null LambdaConfigCreateAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-createauthchallenge Default: null LambdaConfigPreAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-preauthentication Default: null LambdaConfigDefineAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-defineauthchallenge Default: null LambdaConfigPreSignUp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-presignup Default: null LambdaConfigPreTokenGeneration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-pretokengeneration Default: null LambdaConfigUserMigration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-usermigration Default: null LambdaConfigPostAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postauthentication Default: null LambdaConfigPostConfirmation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postconfirmation Default: null LambdaConfigCustomMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-custommessage Default: null LambdaConfigVerifyAuthChallengeResponse: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-verifyauthchallengeresponse Default: null DeviceConfigurationDeviceOnlyRememberedOnUserPrompt: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-deviceonlyrememberedonuserprompt AllowedValues: - 'true' - 'false' Default: null DeviceConfigurationChallengeRequiredOnNewDevice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-challengerequiredonnewdevice AllowedValues: - 'true' - 'false' Default: null EmailVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationmessage Default: null Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Properties: UserPoolTags: !Ref 'UserPoolTags' Policies: PasswordPolicy: RequireNumbers: !Ref 'PoliciesPasswordPolicyRequireNumbers' MinimumLength: !Ref 'PoliciesPasswordPolicyMinimumLength' TemporaryPasswordValidityDays: !Ref 'PoliciesPasswordPolicyTemporaryPasswordValidityDays' RequireUppercase: !Ref 'PoliciesPasswordPolicyRequireUppercase' RequireLowercase: !Ref 'PoliciesPasswordPolicyRequireLowercase' RequireSymbols: !Ref 'PoliciesPasswordPolicyRequireSymbols' VerificationMessageTemplate: EmailMessageByLink: !Ref 'VerificationMessageTemplateEmailMessageByLink' EmailMessage: !Ref 'VerificationMessageTemplateEmailMessage' SmsMessage: !Ref 'VerificationMessageTemplateSmsMessage' EmailSubject: !Ref 'VerificationMessageTemplateEmailSubject' DefaultEmailOption: !Ref 'VerificationMessageTemplateDefaultEmailOption' EmailSubjectByLink: !Ref 'VerificationMessageTemplateEmailSubjectByLink' MfaConfiguration: !Ref 'MfaConfiguration' AdminCreateUserConfig: InviteMessageTemplate: EmailMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailMessage' SMSMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateSMSMessage' EmailSubject: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailSubject' UnusedAccountValidityDays: !Ref 'AdminCreateUserConfigUnusedAccountValidityDays' AllowAdminCreateUserOnly: !Ref 'AdminCreateUserConfigAllowAdminCreateUserOnly' SmsAuthenticationMessage: !Ref 'SmsAuthenticationMessage' UsernameConfiguration: CaseSensitive: !Ref 'UsernameConfigurationCaseSensitive' UserPoolName: !Ref 'UserPoolName' SmsVerificationMessage: !Ref 'SmsVerificationMessage' UserPoolAddOns: AdvancedSecurityMode: !Ref 'UserPoolAddOnsAdvancedSecurityMode' EmailConfiguration: ReplyToEmailAddress: !Ref 'EmailConfigurationReplyToEmailAddress' ConfigurationSet: !Ref 'EmailConfigurationConfigurationSet' EmailSendingAccount: !Ref 'EmailConfigurationEmailSendingAccount' SourceArn: !Ref 'EmailConfigurationSourceArn' From: !Ref 'EmailConfigurationFrom' SmsConfiguration: ExternalId: !Ref 'SmsConfigurationExternalId' SnsCallerArn: !Ref 'SmsConfigurationSnsCallerArn' EmailVerificationSubject: !Ref 'EmailVerificationSubject' LambdaConfig: CreateAuthChallenge: !Ref 'LambdaConfigCreateAuthChallenge' PreAuthentication: !Ref 'LambdaConfigPreAuthentication' DefineAuthChallenge: !Ref 'LambdaConfigDefineAuthChallenge' PreSignUp: !Ref 'LambdaConfigPreSignUp' PreTokenGeneration: !Ref 'LambdaConfigPreTokenGeneration' UserMigration: !Ref 'LambdaConfigUserMigration' PostAuthentication: !Ref 'LambdaConfigPostAuthentication' PostConfirmation: !Ref 'LambdaConfigPostConfirmation' CustomMessage: !Ref 'LambdaConfigCustomMessage' VerifyAuthChallengeResponse: !Ref 'LambdaConfigVerifyAuthChallengeResponse' DeviceConfiguration: DeviceOnlyRememberedOnUserPrompt: !Ref 'DeviceConfigurationDeviceOnlyRememberedOnUserPrompt' ChallengeRequiredOnNewDevice: !Ref 'DeviceConfigurationChallengeRequiredOnNewDevice' EmailVerificationMessage: !Ref 'EmailVerificationMessage' AccountRecoverySetting: {} Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPool/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Parameters: UserPoolTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpooltags Default: null PoliciesPasswordPolicyRequireNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirenumbers AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyMinimumLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-minimumlength Default: null PoliciesPasswordPolicyTemporaryPasswordValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-temporarypasswordvaliditydays Default: null PoliciesPasswordPolicyRequireUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requireuppercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirelowercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireSymbols: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requiresymbols AllowedValues: - 'true' - 'false' Default: null VerificationMessageTemplateEmailMessageByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessagebylink Default: null VerificationMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessage Default: null VerificationMessageTemplateSmsMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-smsmessage Default: null VerificationMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubject Default: null VerificationMessageTemplateDefaultEmailOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-defaultemailoption Default: null VerificationMessageTemplateEmailSubjectByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubjectbylink Default: null MfaConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-mfaconfiguration Default: null AdminCreateUserConfigInviteMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailmessage Default: null AdminCreateUserConfigInviteMessageTemplateSMSMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-smsmessage Default: null AdminCreateUserConfigInviteMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailsubject Default: null AdminCreateUserConfigUnusedAccountValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-unusedaccountvaliditydays Default: null AdminCreateUserConfigAllowAdminCreateUserOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-allowadmincreateuseronly AllowedValues: - 'true' - 'false' Default: null SmsAuthenticationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsauthenticationmessage Default: null UsernameConfigurationCaseSensitive: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-usernameconfiguration.html#cfn-cognito-userpool-usernameconfiguration-casesensitive AllowedValues: - 'true' - 'false' Default: null UserPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpoolname Default: null SmsVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsverificationmessage Default: null UserPoolAddOnsAdvancedSecurityMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-userpooladdons.html#cfn-cognito-userpool-userpooladdons-advancedsecuritymode Default: null EmailConfigurationReplyToEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-replytoemailaddress Default: null EmailConfigurationConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-configurationset Default: null EmailConfigurationEmailSendingAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-emailsendingaccount Default: null EmailConfigurationSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-sourcearn Default: null EmailConfigurationFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-from Default: null SmsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-externalid Default: null SmsConfigurationSnsCallerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-snscallerarn Default: null EmailVerificationSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationsubject Default: null LambdaConfigCreateAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-createauthchallenge Default: null LambdaConfigPreAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-preauthentication Default: null LambdaConfigDefineAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-defineauthchallenge Default: null LambdaConfigPreSignUp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-presignup Default: null LambdaConfigPreTokenGeneration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-pretokengeneration Default: null LambdaConfigUserMigration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-usermigration Default: null LambdaConfigPostAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postauthentication Default: null LambdaConfigPostConfirmation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postconfirmation Default: null LambdaConfigCustomMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-custommessage Default: null LambdaConfigVerifyAuthChallengeResponse: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-verifyauthchallengeresponse Default: null DeviceConfigurationDeviceOnlyRememberedOnUserPrompt: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-deviceonlyrememberedonuserprompt AllowedValues: - 'true' - 'false' Default: null DeviceConfigurationChallengeRequiredOnNewDevice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-challengerequiredonnewdevice AllowedValues: - 'true' - 'false' Default: null EmailVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationmessage Default: null Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Properties: UserPoolTags: !Ref 'UserPoolTags' Policies: PasswordPolicy: RequireNumbers: !Ref 'PoliciesPasswordPolicyRequireNumbers' MinimumLength: !Ref 'PoliciesPasswordPolicyMinimumLength' TemporaryPasswordValidityDays: !Ref 'PoliciesPasswordPolicyTemporaryPasswordValidityDays' RequireUppercase: !Ref 'PoliciesPasswordPolicyRequireUppercase' RequireLowercase: !Ref 'PoliciesPasswordPolicyRequireLowercase' RequireSymbols: !Ref 'PoliciesPasswordPolicyRequireSymbols' VerificationMessageTemplate: EmailMessageByLink: !Ref 'VerificationMessageTemplateEmailMessageByLink' EmailMessage: !Ref 'VerificationMessageTemplateEmailMessage' SmsMessage: !Ref 'VerificationMessageTemplateSmsMessage' EmailSubject: !Ref 'VerificationMessageTemplateEmailSubject' DefaultEmailOption: !Ref 'VerificationMessageTemplateDefaultEmailOption' EmailSubjectByLink: !Ref 'VerificationMessageTemplateEmailSubjectByLink' MfaConfiguration: !Ref 'MfaConfiguration' AdminCreateUserConfig: InviteMessageTemplate: EmailMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailMessage' SMSMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateSMSMessage' EmailSubject: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailSubject' UnusedAccountValidityDays: !Ref 'AdminCreateUserConfigUnusedAccountValidityDays' AllowAdminCreateUserOnly: !Ref 'AdminCreateUserConfigAllowAdminCreateUserOnly' SmsAuthenticationMessage: !Ref 'SmsAuthenticationMessage' UsernameConfiguration: CaseSensitive: !Ref 'UsernameConfigurationCaseSensitive' UserPoolName: !Ref 'UserPoolName' SmsVerificationMessage: !Ref 'SmsVerificationMessage' UserPoolAddOns: AdvancedSecurityMode: !Ref 'UserPoolAddOnsAdvancedSecurityMode' EmailConfiguration: ReplyToEmailAddress: !Ref 'EmailConfigurationReplyToEmailAddress' ConfigurationSet: !Ref 'EmailConfigurationConfigurationSet' EmailSendingAccount: !Ref 'EmailConfigurationEmailSendingAccount' SourceArn: !Ref 'EmailConfigurationSourceArn' From: !Ref 'EmailConfigurationFrom' SmsConfiguration: ExternalId: !Ref 'SmsConfigurationExternalId' SnsCallerArn: !Ref 'SmsConfigurationSnsCallerArn' EmailVerificationSubject: !Ref 'EmailVerificationSubject' LambdaConfig: CreateAuthChallenge: !Ref 'LambdaConfigCreateAuthChallenge' PreAuthentication: !Ref 'LambdaConfigPreAuthentication' DefineAuthChallenge: !Ref 'LambdaConfigDefineAuthChallenge' PreSignUp: !Ref 'LambdaConfigPreSignUp' PreTokenGeneration: !Ref 'LambdaConfigPreTokenGeneration' UserMigration: !Ref 'LambdaConfigUserMigration' PostAuthentication: !Ref 'LambdaConfigPostAuthentication' PostConfirmation: !Ref 'LambdaConfigPostConfirmation' CustomMessage: !Ref 'LambdaConfigCustomMessage' VerifyAuthChallengeResponse: !Ref 'LambdaConfigVerifyAuthChallengeResponse' DeviceConfiguration: DeviceOnlyRememberedOnUserPrompt: !Ref 'DeviceConfigurationDeviceOnlyRememberedOnUserPrompt' ChallengeRequiredOnNewDevice: !Ref 'DeviceConfigurationChallengeRequiredOnNewDevice' EmailVerificationMessage: !Ref 'EmailVerificationMessage' AccountRecoverySetting: {} Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPool/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Parameters: UserPoolTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpooltags Default: null PoliciesPasswordPolicyRequireNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirenumbers AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyMinimumLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-minimumlength Default: null PoliciesPasswordPolicyTemporaryPasswordValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-temporarypasswordvaliditydays Default: null PoliciesPasswordPolicyRequireUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requireuppercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirelowercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireSymbols: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requiresymbols AllowedValues: - 'true' - 'false' Default: null VerificationMessageTemplateEmailMessageByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessagebylink Default: null VerificationMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessage Default: null VerificationMessageTemplateSmsMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-smsmessage Default: null VerificationMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubject Default: null VerificationMessageTemplateDefaultEmailOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-defaultemailoption Default: null VerificationMessageTemplateEmailSubjectByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubjectbylink Default: null MfaConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-mfaconfiguration Default: null AdminCreateUserConfigInviteMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailmessage Default: null AdminCreateUserConfigInviteMessageTemplateSMSMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-smsmessage Default: null AdminCreateUserConfigInviteMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailsubject Default: null AdminCreateUserConfigUnusedAccountValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-unusedaccountvaliditydays Default: null AdminCreateUserConfigAllowAdminCreateUserOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-allowadmincreateuseronly AllowedValues: - 'true' - 'false' Default: null SmsAuthenticationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsauthenticationmessage Default: null UsernameConfigurationCaseSensitive: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-usernameconfiguration.html#cfn-cognito-userpool-usernameconfiguration-casesensitive AllowedValues: - 'true' - 'false' Default: null UserPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpoolname Default: null SmsVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsverificationmessage Default: null UserPoolAddOnsAdvancedSecurityMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-userpooladdons.html#cfn-cognito-userpool-userpooladdons-advancedsecuritymode Default: null EmailConfigurationReplyToEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-replytoemailaddress Default: null EmailConfigurationConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-configurationset Default: null EmailConfigurationEmailSendingAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-emailsendingaccount Default: null EmailConfigurationSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-sourcearn Default: null EmailConfigurationFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-from Default: null SmsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-externalid Default: null SmsConfigurationSnsCallerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-snscallerarn Default: null EmailVerificationSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationsubject Default: null LambdaConfigCreateAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-createauthchallenge Default: null LambdaConfigPreAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-preauthentication Default: null LambdaConfigDefineAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-defineauthchallenge Default: null LambdaConfigPreSignUp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-presignup Default: null LambdaConfigPreTokenGeneration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-pretokengeneration Default: null LambdaConfigUserMigration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-usermigration Default: null LambdaConfigPostAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postauthentication Default: null LambdaConfigPostConfirmation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postconfirmation Default: null LambdaConfigCustomMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-custommessage Default: null LambdaConfigVerifyAuthChallengeResponse: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-verifyauthchallengeresponse Default: null DeviceConfigurationDeviceOnlyRememberedOnUserPrompt: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-deviceonlyrememberedonuserprompt AllowedValues: - 'true' - 'false' Default: null DeviceConfigurationChallengeRequiredOnNewDevice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-challengerequiredonnewdevice AllowedValues: - 'true' - 'false' Default: null EmailVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationmessage Default: null Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Properties: UserPoolTags: !Ref 'UserPoolTags' Policies: PasswordPolicy: RequireNumbers: !Ref 'PoliciesPasswordPolicyRequireNumbers' MinimumLength: !Ref 'PoliciesPasswordPolicyMinimumLength' TemporaryPasswordValidityDays: !Ref 'PoliciesPasswordPolicyTemporaryPasswordValidityDays' RequireUppercase: !Ref 'PoliciesPasswordPolicyRequireUppercase' RequireLowercase: !Ref 'PoliciesPasswordPolicyRequireLowercase' RequireSymbols: !Ref 'PoliciesPasswordPolicyRequireSymbols' VerificationMessageTemplate: EmailMessageByLink: !Ref 'VerificationMessageTemplateEmailMessageByLink' EmailMessage: !Ref 'VerificationMessageTemplateEmailMessage' SmsMessage: !Ref 'VerificationMessageTemplateSmsMessage' EmailSubject: !Ref 'VerificationMessageTemplateEmailSubject' DefaultEmailOption: !Ref 'VerificationMessageTemplateDefaultEmailOption' EmailSubjectByLink: !Ref 'VerificationMessageTemplateEmailSubjectByLink' MfaConfiguration: !Ref 'MfaConfiguration' AdminCreateUserConfig: InviteMessageTemplate: EmailMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailMessage' SMSMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateSMSMessage' EmailSubject: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailSubject' UnusedAccountValidityDays: !Ref 'AdminCreateUserConfigUnusedAccountValidityDays' AllowAdminCreateUserOnly: !Ref 'AdminCreateUserConfigAllowAdminCreateUserOnly' SmsAuthenticationMessage: !Ref 'SmsAuthenticationMessage' UsernameConfiguration: CaseSensitive: !Ref 'UsernameConfigurationCaseSensitive' UserPoolName: !Ref 'UserPoolName' SmsVerificationMessage: !Ref 'SmsVerificationMessage' UserPoolAddOns: AdvancedSecurityMode: !Ref 'UserPoolAddOnsAdvancedSecurityMode' EmailConfiguration: ReplyToEmailAddress: !Ref 'EmailConfigurationReplyToEmailAddress' ConfigurationSet: !Ref 'EmailConfigurationConfigurationSet' EmailSendingAccount: !Ref 'EmailConfigurationEmailSendingAccount' SourceArn: !Ref 'EmailConfigurationSourceArn' From: !Ref 'EmailConfigurationFrom' SmsConfiguration: ExternalId: !Ref 'SmsConfigurationExternalId' SnsCallerArn: !Ref 'SmsConfigurationSnsCallerArn' EmailVerificationSubject: !Ref 'EmailVerificationSubject' LambdaConfig: CreateAuthChallenge: !Ref 'LambdaConfigCreateAuthChallenge' PreAuthentication: !Ref 'LambdaConfigPreAuthentication' DefineAuthChallenge: !Ref 'LambdaConfigDefineAuthChallenge' PreSignUp: !Ref 'LambdaConfigPreSignUp' PreTokenGeneration: !Ref 'LambdaConfigPreTokenGeneration' UserMigration: !Ref 'LambdaConfigUserMigration' PostAuthentication: !Ref 'LambdaConfigPostAuthentication' PostConfirmation: !Ref 'LambdaConfigPostConfirmation' CustomMessage: !Ref 'LambdaConfigCustomMessage' VerifyAuthChallengeResponse: !Ref 'LambdaConfigVerifyAuthChallengeResponse' DeviceConfiguration: DeviceOnlyRememberedOnUserPrompt: !Ref 'DeviceConfigurationDeviceOnlyRememberedOnUserPrompt' ChallengeRequiredOnNewDevice: !Ref 'DeviceConfigurationChallengeRequiredOnNewDevice' EmailVerificationMessage: !Ref 'EmailVerificationMessage' AccountRecoverySetting: {} Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPool/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Parameters: UserPoolTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpooltags Default: null PoliciesPasswordPolicyRequireNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirenumbers AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyMinimumLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-minimumlength Default: null PoliciesPasswordPolicyTemporaryPasswordValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-temporarypasswordvaliditydays Default: null PoliciesPasswordPolicyRequireUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requireuppercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirelowercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireSymbols: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requiresymbols AllowedValues: - 'true' - 'false' Default: null VerificationMessageTemplateEmailMessageByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessagebylink Default: null VerificationMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessage Default: null VerificationMessageTemplateSmsMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-smsmessage Default: null VerificationMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubject Default: null VerificationMessageTemplateDefaultEmailOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-defaultemailoption Default: null VerificationMessageTemplateEmailSubjectByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubjectbylink Default: null MfaConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-mfaconfiguration Default: null AdminCreateUserConfigInviteMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailmessage Default: null AdminCreateUserConfigInviteMessageTemplateSMSMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-smsmessage Default: null AdminCreateUserConfigInviteMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailsubject Default: null AdminCreateUserConfigUnusedAccountValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-unusedaccountvaliditydays Default: null AdminCreateUserConfigAllowAdminCreateUserOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-allowadmincreateuseronly AllowedValues: - 'true' - 'false' Default: null SmsAuthenticationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsauthenticationmessage Default: null UsernameConfigurationCaseSensitive: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-usernameconfiguration.html#cfn-cognito-userpool-usernameconfiguration-casesensitive AllowedValues: - 'true' - 'false' Default: null UserPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpoolname Default: null SmsVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsverificationmessage Default: null UserPoolAddOnsAdvancedSecurityMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-userpooladdons.html#cfn-cognito-userpool-userpooladdons-advancedsecuritymode Default: null EmailConfigurationReplyToEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-replytoemailaddress Default: null EmailConfigurationConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-configurationset Default: null EmailConfigurationEmailSendingAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-emailsendingaccount Default: null EmailConfigurationSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-sourcearn Default: null EmailConfigurationFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-from Default: null SmsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-externalid Default: null SmsConfigurationSnsCallerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-snscallerarn Default: null EmailVerificationSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationsubject Default: null LambdaConfigCreateAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-createauthchallenge Default: null LambdaConfigPreAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-preauthentication Default: null LambdaConfigDefineAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-defineauthchallenge Default: null LambdaConfigPreSignUp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-presignup Default: null LambdaConfigPreTokenGeneration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-pretokengeneration Default: null LambdaConfigUserMigration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-usermigration Default: null LambdaConfigPostAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postauthentication Default: null LambdaConfigPostConfirmation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postconfirmation Default: null LambdaConfigCustomMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-custommessage Default: null LambdaConfigVerifyAuthChallengeResponse: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-verifyauthchallengeresponse Default: null DeviceConfigurationDeviceOnlyRememberedOnUserPrompt: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-deviceonlyrememberedonuserprompt AllowedValues: - 'true' - 'false' Default: null DeviceConfigurationChallengeRequiredOnNewDevice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-challengerequiredonnewdevice AllowedValues: - 'true' - 'false' Default: null EmailVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationmessage Default: null Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Properties: UserPoolTags: !Ref 'UserPoolTags' Policies: PasswordPolicy: RequireNumbers: !Ref 'PoliciesPasswordPolicyRequireNumbers' MinimumLength: !Ref 'PoliciesPasswordPolicyMinimumLength' TemporaryPasswordValidityDays: !Ref 'PoliciesPasswordPolicyTemporaryPasswordValidityDays' RequireUppercase: !Ref 'PoliciesPasswordPolicyRequireUppercase' RequireLowercase: !Ref 'PoliciesPasswordPolicyRequireLowercase' RequireSymbols: !Ref 'PoliciesPasswordPolicyRequireSymbols' VerificationMessageTemplate: EmailMessageByLink: !Ref 'VerificationMessageTemplateEmailMessageByLink' EmailMessage: !Ref 'VerificationMessageTemplateEmailMessage' SmsMessage: !Ref 'VerificationMessageTemplateSmsMessage' EmailSubject: !Ref 'VerificationMessageTemplateEmailSubject' DefaultEmailOption: !Ref 'VerificationMessageTemplateDefaultEmailOption' EmailSubjectByLink: !Ref 'VerificationMessageTemplateEmailSubjectByLink' MfaConfiguration: !Ref 'MfaConfiguration' AdminCreateUserConfig: InviteMessageTemplate: EmailMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailMessage' SMSMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateSMSMessage' EmailSubject: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailSubject' UnusedAccountValidityDays: !Ref 'AdminCreateUserConfigUnusedAccountValidityDays' AllowAdminCreateUserOnly: !Ref 'AdminCreateUserConfigAllowAdminCreateUserOnly' SmsAuthenticationMessage: !Ref 'SmsAuthenticationMessage' UsernameConfiguration: CaseSensitive: !Ref 'UsernameConfigurationCaseSensitive' UserPoolName: !Ref 'UserPoolName' SmsVerificationMessage: !Ref 'SmsVerificationMessage' UserPoolAddOns: AdvancedSecurityMode: !Ref 'UserPoolAddOnsAdvancedSecurityMode' EmailConfiguration: ReplyToEmailAddress: !Ref 'EmailConfigurationReplyToEmailAddress' ConfigurationSet: !Ref 'EmailConfigurationConfigurationSet' EmailSendingAccount: !Ref 'EmailConfigurationEmailSendingAccount' SourceArn: !Ref 'EmailConfigurationSourceArn' From: !Ref 'EmailConfigurationFrom' SmsConfiguration: ExternalId: !Ref 'SmsConfigurationExternalId' SnsCallerArn: !Ref 'SmsConfigurationSnsCallerArn' EmailVerificationSubject: !Ref 'EmailVerificationSubject' LambdaConfig: CreateAuthChallenge: !Ref 'LambdaConfigCreateAuthChallenge' PreAuthentication: !Ref 'LambdaConfigPreAuthentication' DefineAuthChallenge: !Ref 'LambdaConfigDefineAuthChallenge' PreSignUp: !Ref 'LambdaConfigPreSignUp' PreTokenGeneration: !Ref 'LambdaConfigPreTokenGeneration' UserMigration: !Ref 'LambdaConfigUserMigration' PostAuthentication: !Ref 'LambdaConfigPostAuthentication' PostConfirmation: !Ref 'LambdaConfigPostConfirmation' CustomMessage: !Ref 'LambdaConfigCustomMessage' VerifyAuthChallengeResponse: !Ref 'LambdaConfigVerifyAuthChallengeResponse' DeviceConfiguration: DeviceOnlyRememberedOnUserPrompt: !Ref 'DeviceConfigurationDeviceOnlyRememberedOnUserPrompt' ChallengeRequiredOnNewDevice: !Ref 'DeviceConfigurationChallengeRequiredOnNewDevice' EmailVerificationMessage: !Ref 'EmailVerificationMessage' AccountRecoverySetting: {} Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPool/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Parameters: UserPoolTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpooltags Default: null PoliciesPasswordPolicyRequireNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirenumbers AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyMinimumLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-minimumlength Default: null PoliciesPasswordPolicyTemporaryPasswordValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-temporarypasswordvaliditydays Default: null PoliciesPasswordPolicyRequireUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requireuppercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirelowercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireSymbols: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requiresymbols AllowedValues: - 'true' - 'false' Default: null VerificationMessageTemplateEmailMessageByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessagebylink Default: null VerificationMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessage Default: null VerificationMessageTemplateSmsMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-smsmessage Default: null VerificationMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubject Default: null VerificationMessageTemplateDefaultEmailOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-defaultemailoption Default: null VerificationMessageTemplateEmailSubjectByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubjectbylink Default: null MfaConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-mfaconfiguration Default: null AdminCreateUserConfigInviteMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailmessage Default: null AdminCreateUserConfigInviteMessageTemplateSMSMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-smsmessage Default: null AdminCreateUserConfigInviteMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailsubject Default: null AdminCreateUserConfigUnusedAccountValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-unusedaccountvaliditydays Default: null AdminCreateUserConfigAllowAdminCreateUserOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-allowadmincreateuseronly AllowedValues: - 'true' - 'false' Default: null SmsAuthenticationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsauthenticationmessage Default: null UsernameConfigurationCaseSensitive: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-usernameconfiguration.html#cfn-cognito-userpool-usernameconfiguration-casesensitive AllowedValues: - 'true' - 'false' Default: null UserPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpoolname Default: null SmsVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsverificationmessage Default: null UserPoolAddOnsAdvancedSecurityMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-userpooladdons.html#cfn-cognito-userpool-userpooladdons-advancedsecuritymode Default: null EmailConfigurationReplyToEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-replytoemailaddress Default: null EmailConfigurationConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-configurationset Default: null EmailConfigurationEmailSendingAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-emailsendingaccount Default: null EmailConfigurationSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-sourcearn Default: null EmailConfigurationFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-from Default: null SmsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-externalid Default: null SmsConfigurationSnsCallerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-snscallerarn Default: null EmailVerificationSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationsubject Default: null LambdaConfigCreateAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-createauthchallenge Default: null LambdaConfigPreAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-preauthentication Default: null LambdaConfigDefineAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-defineauthchallenge Default: null LambdaConfigPreSignUp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-presignup Default: null LambdaConfigPreTokenGeneration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-pretokengeneration Default: null LambdaConfigUserMigration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-usermigration Default: null LambdaConfigPostAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postauthentication Default: null LambdaConfigPostConfirmation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postconfirmation Default: null LambdaConfigCustomMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-custommessage Default: null LambdaConfigVerifyAuthChallengeResponse: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-verifyauthchallengeresponse Default: null DeviceConfigurationDeviceOnlyRememberedOnUserPrompt: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-deviceonlyrememberedonuserprompt AllowedValues: - 'true' - 'false' Default: null DeviceConfigurationChallengeRequiredOnNewDevice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-challengerequiredonnewdevice AllowedValues: - 'true' - 'false' Default: null EmailVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationmessage Default: null Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Properties: UserPoolTags: !Ref 'UserPoolTags' Policies: PasswordPolicy: RequireNumbers: !Ref 'PoliciesPasswordPolicyRequireNumbers' MinimumLength: !Ref 'PoliciesPasswordPolicyMinimumLength' TemporaryPasswordValidityDays: !Ref 'PoliciesPasswordPolicyTemporaryPasswordValidityDays' RequireUppercase: !Ref 'PoliciesPasswordPolicyRequireUppercase' RequireLowercase: !Ref 'PoliciesPasswordPolicyRequireLowercase' RequireSymbols: !Ref 'PoliciesPasswordPolicyRequireSymbols' VerificationMessageTemplate: EmailMessageByLink: !Ref 'VerificationMessageTemplateEmailMessageByLink' EmailMessage: !Ref 'VerificationMessageTemplateEmailMessage' SmsMessage: !Ref 'VerificationMessageTemplateSmsMessage' EmailSubject: !Ref 'VerificationMessageTemplateEmailSubject' DefaultEmailOption: !Ref 'VerificationMessageTemplateDefaultEmailOption' EmailSubjectByLink: !Ref 'VerificationMessageTemplateEmailSubjectByLink' MfaConfiguration: !Ref 'MfaConfiguration' AdminCreateUserConfig: InviteMessageTemplate: EmailMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailMessage' SMSMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateSMSMessage' EmailSubject: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailSubject' UnusedAccountValidityDays: !Ref 'AdminCreateUserConfigUnusedAccountValidityDays' AllowAdminCreateUserOnly: !Ref 'AdminCreateUserConfigAllowAdminCreateUserOnly' SmsAuthenticationMessage: !Ref 'SmsAuthenticationMessage' UsernameConfiguration: CaseSensitive: !Ref 'UsernameConfigurationCaseSensitive' UserPoolName: !Ref 'UserPoolName' SmsVerificationMessage: !Ref 'SmsVerificationMessage' UserPoolAddOns: AdvancedSecurityMode: !Ref 'UserPoolAddOnsAdvancedSecurityMode' EmailConfiguration: ReplyToEmailAddress: !Ref 'EmailConfigurationReplyToEmailAddress' ConfigurationSet: !Ref 'EmailConfigurationConfigurationSet' EmailSendingAccount: !Ref 'EmailConfigurationEmailSendingAccount' SourceArn: !Ref 'EmailConfigurationSourceArn' From: !Ref 'EmailConfigurationFrom' SmsConfiguration: ExternalId: !Ref 'SmsConfigurationExternalId' SnsCallerArn: !Ref 'SmsConfigurationSnsCallerArn' EmailVerificationSubject: !Ref 'EmailVerificationSubject' LambdaConfig: CreateAuthChallenge: !Ref 'LambdaConfigCreateAuthChallenge' PreAuthentication: !Ref 'LambdaConfigPreAuthentication' DefineAuthChallenge: !Ref 'LambdaConfigDefineAuthChallenge' PreSignUp: !Ref 'LambdaConfigPreSignUp' PreTokenGeneration: !Ref 'LambdaConfigPreTokenGeneration' UserMigration: !Ref 'LambdaConfigUserMigration' PostAuthentication: !Ref 'LambdaConfigPostAuthentication' PostConfirmation: !Ref 'LambdaConfigPostConfirmation' CustomMessage: !Ref 'LambdaConfigCustomMessage' VerifyAuthChallengeResponse: !Ref 'LambdaConfigVerifyAuthChallengeResponse' DeviceConfiguration: DeviceOnlyRememberedOnUserPrompt: !Ref 'DeviceConfigurationDeviceOnlyRememberedOnUserPrompt' ChallengeRequiredOnNewDevice: !Ref 'DeviceConfigurationChallengeRequiredOnNewDevice' EmailVerificationMessage: !Ref 'EmailVerificationMessage' AccountRecoverySetting: {} Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPool/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Parameters: UserPoolTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpooltags Default: null PoliciesPasswordPolicyRequireNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirenumbers AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyMinimumLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-minimumlength Default: null PoliciesPasswordPolicyTemporaryPasswordValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-temporarypasswordvaliditydays Default: null PoliciesPasswordPolicyRequireUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requireuppercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirelowercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireSymbols: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requiresymbols AllowedValues: - 'true' - 'false' Default: null VerificationMessageTemplateEmailMessageByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessagebylink Default: null VerificationMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessage Default: null VerificationMessageTemplateSmsMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-smsmessage Default: null VerificationMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubject Default: null VerificationMessageTemplateDefaultEmailOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-defaultemailoption Default: null VerificationMessageTemplateEmailSubjectByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubjectbylink Default: null MfaConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-mfaconfiguration Default: null AdminCreateUserConfigInviteMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailmessage Default: null AdminCreateUserConfigInviteMessageTemplateSMSMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-smsmessage Default: null AdminCreateUserConfigInviteMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailsubject Default: null AdminCreateUserConfigUnusedAccountValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-unusedaccountvaliditydays Default: null AdminCreateUserConfigAllowAdminCreateUserOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-allowadmincreateuseronly AllowedValues: - 'true' - 'false' Default: null SmsAuthenticationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsauthenticationmessage Default: null UsernameConfigurationCaseSensitive: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-usernameconfiguration.html#cfn-cognito-userpool-usernameconfiguration-casesensitive AllowedValues: - 'true' - 'false' Default: null UserPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpoolname Default: null SmsVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsverificationmessage Default: null UserPoolAddOnsAdvancedSecurityMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-userpooladdons.html#cfn-cognito-userpool-userpooladdons-advancedsecuritymode Default: null EmailConfigurationReplyToEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-replytoemailaddress Default: null EmailConfigurationConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-configurationset Default: null EmailConfigurationEmailSendingAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-emailsendingaccount Default: null EmailConfigurationSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-sourcearn Default: null EmailConfigurationFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-from Default: null SmsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-externalid Default: null SmsConfigurationSnsCallerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-snscallerarn Default: null EmailVerificationSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationsubject Default: null LambdaConfigCreateAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-createauthchallenge Default: null LambdaConfigPreAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-preauthentication Default: null LambdaConfigDefineAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-defineauthchallenge Default: null LambdaConfigPreSignUp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-presignup Default: null LambdaConfigPreTokenGeneration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-pretokengeneration Default: null LambdaConfigUserMigration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-usermigration Default: null LambdaConfigPostAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postauthentication Default: null LambdaConfigPostConfirmation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postconfirmation Default: null LambdaConfigCustomMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-custommessage Default: null LambdaConfigVerifyAuthChallengeResponse: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-verifyauthchallengeresponse Default: null DeviceConfigurationDeviceOnlyRememberedOnUserPrompt: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-deviceonlyrememberedonuserprompt AllowedValues: - 'true' - 'false' Default: null DeviceConfigurationChallengeRequiredOnNewDevice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-challengerequiredonnewdevice AllowedValues: - 'true' - 'false' Default: null EmailVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationmessage Default: null Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Properties: UserPoolTags: !Ref 'UserPoolTags' Policies: PasswordPolicy: RequireNumbers: !Ref 'PoliciesPasswordPolicyRequireNumbers' MinimumLength: !Ref 'PoliciesPasswordPolicyMinimumLength' TemporaryPasswordValidityDays: !Ref 'PoliciesPasswordPolicyTemporaryPasswordValidityDays' RequireUppercase: !Ref 'PoliciesPasswordPolicyRequireUppercase' RequireLowercase: !Ref 'PoliciesPasswordPolicyRequireLowercase' RequireSymbols: !Ref 'PoliciesPasswordPolicyRequireSymbols' VerificationMessageTemplate: EmailMessageByLink: !Ref 'VerificationMessageTemplateEmailMessageByLink' EmailMessage: !Ref 'VerificationMessageTemplateEmailMessage' SmsMessage: !Ref 'VerificationMessageTemplateSmsMessage' EmailSubject: !Ref 'VerificationMessageTemplateEmailSubject' DefaultEmailOption: !Ref 'VerificationMessageTemplateDefaultEmailOption' EmailSubjectByLink: !Ref 'VerificationMessageTemplateEmailSubjectByLink' MfaConfiguration: !Ref 'MfaConfiguration' AdminCreateUserConfig: InviteMessageTemplate: EmailMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailMessage' SMSMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateSMSMessage' EmailSubject: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailSubject' UnusedAccountValidityDays: !Ref 'AdminCreateUserConfigUnusedAccountValidityDays' AllowAdminCreateUserOnly: !Ref 'AdminCreateUserConfigAllowAdminCreateUserOnly' SmsAuthenticationMessage: !Ref 'SmsAuthenticationMessage' UsernameConfiguration: CaseSensitive: !Ref 'UsernameConfigurationCaseSensitive' UserPoolName: !Ref 'UserPoolName' SmsVerificationMessage: !Ref 'SmsVerificationMessage' UserPoolAddOns: AdvancedSecurityMode: !Ref 'UserPoolAddOnsAdvancedSecurityMode' EmailConfiguration: ReplyToEmailAddress: !Ref 'EmailConfigurationReplyToEmailAddress' ConfigurationSet: !Ref 'EmailConfigurationConfigurationSet' EmailSendingAccount: !Ref 'EmailConfigurationEmailSendingAccount' SourceArn: !Ref 'EmailConfigurationSourceArn' From: !Ref 'EmailConfigurationFrom' SmsConfiguration: ExternalId: !Ref 'SmsConfigurationExternalId' SnsCallerArn: !Ref 'SmsConfigurationSnsCallerArn' EmailVerificationSubject: !Ref 'EmailVerificationSubject' LambdaConfig: CreateAuthChallenge: !Ref 'LambdaConfigCreateAuthChallenge' PreAuthentication: !Ref 'LambdaConfigPreAuthentication' DefineAuthChallenge: !Ref 'LambdaConfigDefineAuthChallenge' PreSignUp: !Ref 'LambdaConfigPreSignUp' PreTokenGeneration: !Ref 'LambdaConfigPreTokenGeneration' UserMigration: !Ref 'LambdaConfigUserMigration' PostAuthentication: !Ref 'LambdaConfigPostAuthentication' PostConfirmation: !Ref 'LambdaConfigPostConfirmation' CustomMessage: !Ref 'LambdaConfigCustomMessage' VerifyAuthChallengeResponse: !Ref 'LambdaConfigVerifyAuthChallengeResponse' DeviceConfiguration: DeviceOnlyRememberedOnUserPrompt: !Ref 'DeviceConfigurationDeviceOnlyRememberedOnUserPrompt' ChallengeRequiredOnNewDevice: !Ref 'DeviceConfigurationChallengeRequiredOnNewDevice' EmailVerificationMessage: !Ref 'EmailVerificationMessage' AccountRecoverySetting: {} Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPool/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Parameters: UserPoolTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpooltags Default: null PoliciesPasswordPolicyRequireNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirenumbers AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyMinimumLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-minimumlength Default: null PoliciesPasswordPolicyTemporaryPasswordValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-temporarypasswordvaliditydays Default: null PoliciesPasswordPolicyRequireUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requireuppercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirelowercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireSymbols: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requiresymbols AllowedValues: - 'true' - 'false' Default: null VerificationMessageTemplateEmailMessageByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessagebylink Default: null VerificationMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessage Default: null VerificationMessageTemplateSmsMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-smsmessage Default: null VerificationMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubject Default: null VerificationMessageTemplateDefaultEmailOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-defaultemailoption Default: null VerificationMessageTemplateEmailSubjectByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubjectbylink Default: null MfaConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-mfaconfiguration Default: null AdminCreateUserConfigInviteMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailmessage Default: null AdminCreateUserConfigInviteMessageTemplateSMSMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-smsmessage Default: null AdminCreateUserConfigInviteMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailsubject Default: null AdminCreateUserConfigUnusedAccountValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-unusedaccountvaliditydays Default: null AdminCreateUserConfigAllowAdminCreateUserOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-allowadmincreateuseronly AllowedValues: - 'true' - 'false' Default: null SmsAuthenticationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsauthenticationmessage Default: null UsernameConfigurationCaseSensitive: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-usernameconfiguration.html#cfn-cognito-userpool-usernameconfiguration-casesensitive AllowedValues: - 'true' - 'false' Default: null UserPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpoolname Default: null SmsVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsverificationmessage Default: null UserPoolAddOnsAdvancedSecurityMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-userpooladdons.html#cfn-cognito-userpool-userpooladdons-advancedsecuritymode Default: null EmailConfigurationReplyToEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-replytoemailaddress Default: null EmailConfigurationConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-configurationset Default: null EmailConfigurationEmailSendingAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-emailsendingaccount Default: null EmailConfigurationSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-sourcearn Default: null EmailConfigurationFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-from Default: null SmsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-externalid Default: null SmsConfigurationSnsCallerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-snscallerarn Default: null EmailVerificationSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationsubject Default: null LambdaConfigCreateAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-createauthchallenge Default: null LambdaConfigPreAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-preauthentication Default: null LambdaConfigDefineAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-defineauthchallenge Default: null LambdaConfigPreSignUp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-presignup Default: null LambdaConfigPreTokenGeneration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-pretokengeneration Default: null LambdaConfigUserMigration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-usermigration Default: null LambdaConfigPostAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postauthentication Default: null LambdaConfigPostConfirmation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postconfirmation Default: null LambdaConfigCustomMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-custommessage Default: null LambdaConfigVerifyAuthChallengeResponse: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-verifyauthchallengeresponse Default: null DeviceConfigurationDeviceOnlyRememberedOnUserPrompt: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-deviceonlyrememberedonuserprompt AllowedValues: - 'true' - 'false' Default: null DeviceConfigurationChallengeRequiredOnNewDevice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-challengerequiredonnewdevice AllowedValues: - 'true' - 'false' Default: null EmailVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationmessage Default: null Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Properties: UserPoolTags: !Ref 'UserPoolTags' Policies: PasswordPolicy: RequireNumbers: !Ref 'PoliciesPasswordPolicyRequireNumbers' MinimumLength: !Ref 'PoliciesPasswordPolicyMinimumLength' TemporaryPasswordValidityDays: !Ref 'PoliciesPasswordPolicyTemporaryPasswordValidityDays' RequireUppercase: !Ref 'PoliciesPasswordPolicyRequireUppercase' RequireLowercase: !Ref 'PoliciesPasswordPolicyRequireLowercase' RequireSymbols: !Ref 'PoliciesPasswordPolicyRequireSymbols' VerificationMessageTemplate: EmailMessageByLink: !Ref 'VerificationMessageTemplateEmailMessageByLink' EmailMessage: !Ref 'VerificationMessageTemplateEmailMessage' SmsMessage: !Ref 'VerificationMessageTemplateSmsMessage' EmailSubject: !Ref 'VerificationMessageTemplateEmailSubject' DefaultEmailOption: !Ref 'VerificationMessageTemplateDefaultEmailOption' EmailSubjectByLink: !Ref 'VerificationMessageTemplateEmailSubjectByLink' MfaConfiguration: !Ref 'MfaConfiguration' AdminCreateUserConfig: InviteMessageTemplate: EmailMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailMessage' SMSMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateSMSMessage' EmailSubject: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailSubject' UnusedAccountValidityDays: !Ref 'AdminCreateUserConfigUnusedAccountValidityDays' AllowAdminCreateUserOnly: !Ref 'AdminCreateUserConfigAllowAdminCreateUserOnly' SmsAuthenticationMessage: !Ref 'SmsAuthenticationMessage' UsernameConfiguration: CaseSensitive: !Ref 'UsernameConfigurationCaseSensitive' UserPoolName: !Ref 'UserPoolName' SmsVerificationMessage: !Ref 'SmsVerificationMessage' UserPoolAddOns: AdvancedSecurityMode: !Ref 'UserPoolAddOnsAdvancedSecurityMode' EmailConfiguration: ReplyToEmailAddress: !Ref 'EmailConfigurationReplyToEmailAddress' ConfigurationSet: !Ref 'EmailConfigurationConfigurationSet' EmailSendingAccount: !Ref 'EmailConfigurationEmailSendingAccount' SourceArn: !Ref 'EmailConfigurationSourceArn' From: !Ref 'EmailConfigurationFrom' SmsConfiguration: ExternalId: !Ref 'SmsConfigurationExternalId' SnsCallerArn: !Ref 'SmsConfigurationSnsCallerArn' EmailVerificationSubject: !Ref 'EmailVerificationSubject' LambdaConfig: CreateAuthChallenge: !Ref 'LambdaConfigCreateAuthChallenge' PreAuthentication: !Ref 'LambdaConfigPreAuthentication' DefineAuthChallenge: !Ref 'LambdaConfigDefineAuthChallenge' PreSignUp: !Ref 'LambdaConfigPreSignUp' PreTokenGeneration: !Ref 'LambdaConfigPreTokenGeneration' UserMigration: !Ref 'LambdaConfigUserMigration' PostAuthentication: !Ref 'LambdaConfigPostAuthentication' PostConfirmation: !Ref 'LambdaConfigPostConfirmation' CustomMessage: !Ref 'LambdaConfigCustomMessage' VerifyAuthChallengeResponse: !Ref 'LambdaConfigVerifyAuthChallengeResponse' DeviceConfiguration: DeviceOnlyRememberedOnUserPrompt: !Ref 'DeviceConfigurationDeviceOnlyRememberedOnUserPrompt' ChallengeRequiredOnNewDevice: !Ref 'DeviceConfigurationChallengeRequiredOnNewDevice' EmailVerificationMessage: !Ref 'EmailVerificationMessage' AccountRecoverySetting: {} Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPool/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Parameters: UserPoolTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpooltags Default: null PoliciesPasswordPolicyRequireNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirenumbers AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyMinimumLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-minimumlength Default: null PoliciesPasswordPolicyTemporaryPasswordValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-temporarypasswordvaliditydays Default: null PoliciesPasswordPolicyRequireUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requireuppercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirelowercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireSymbols: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requiresymbols AllowedValues: - 'true' - 'false' Default: null VerificationMessageTemplateEmailMessageByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessagebylink Default: null VerificationMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessage Default: null VerificationMessageTemplateSmsMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-smsmessage Default: null VerificationMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubject Default: null VerificationMessageTemplateDefaultEmailOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-defaultemailoption Default: null VerificationMessageTemplateEmailSubjectByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubjectbylink Default: null MfaConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-mfaconfiguration Default: null AdminCreateUserConfigInviteMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailmessage Default: null AdminCreateUserConfigInviteMessageTemplateSMSMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-smsmessage Default: null AdminCreateUserConfigInviteMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailsubject Default: null AdminCreateUserConfigUnusedAccountValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-unusedaccountvaliditydays Default: null AdminCreateUserConfigAllowAdminCreateUserOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-allowadmincreateuseronly AllowedValues: - 'true' - 'false' Default: null SmsAuthenticationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsauthenticationmessage Default: null UsernameConfigurationCaseSensitive: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-usernameconfiguration.html#cfn-cognito-userpool-usernameconfiguration-casesensitive AllowedValues: - 'true' - 'false' Default: null UserPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpoolname Default: null SmsVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsverificationmessage Default: null UserPoolAddOnsAdvancedSecurityMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-userpooladdons.html#cfn-cognito-userpool-userpooladdons-advancedsecuritymode Default: null EmailConfigurationReplyToEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-replytoemailaddress Default: null EmailConfigurationConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-configurationset Default: null EmailConfigurationEmailSendingAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-emailsendingaccount Default: null EmailConfigurationSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-sourcearn Default: null EmailConfigurationFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-from Default: null SmsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-externalid Default: null SmsConfigurationSnsCallerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-snscallerarn Default: null EmailVerificationSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationsubject Default: null LambdaConfigCreateAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-createauthchallenge Default: null LambdaConfigPreAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-preauthentication Default: null LambdaConfigDefineAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-defineauthchallenge Default: null LambdaConfigPreSignUp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-presignup Default: null LambdaConfigPreTokenGeneration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-pretokengeneration Default: null LambdaConfigUserMigration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-usermigration Default: null LambdaConfigPostAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postauthentication Default: null LambdaConfigPostConfirmation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postconfirmation Default: null LambdaConfigCustomMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-custommessage Default: null LambdaConfigVerifyAuthChallengeResponse: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-verifyauthchallengeresponse Default: null DeviceConfigurationDeviceOnlyRememberedOnUserPrompt: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-deviceonlyrememberedonuserprompt AllowedValues: - 'true' - 'false' Default: null DeviceConfigurationChallengeRequiredOnNewDevice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-challengerequiredonnewdevice AllowedValues: - 'true' - 'false' Default: null EmailVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationmessage Default: null Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Properties: UserPoolTags: !Ref 'UserPoolTags' Policies: PasswordPolicy: RequireNumbers: !Ref 'PoliciesPasswordPolicyRequireNumbers' MinimumLength: !Ref 'PoliciesPasswordPolicyMinimumLength' TemporaryPasswordValidityDays: !Ref 'PoliciesPasswordPolicyTemporaryPasswordValidityDays' RequireUppercase: !Ref 'PoliciesPasswordPolicyRequireUppercase' RequireLowercase: !Ref 'PoliciesPasswordPolicyRequireLowercase' RequireSymbols: !Ref 'PoliciesPasswordPolicyRequireSymbols' VerificationMessageTemplate: EmailMessageByLink: !Ref 'VerificationMessageTemplateEmailMessageByLink' EmailMessage: !Ref 'VerificationMessageTemplateEmailMessage' SmsMessage: !Ref 'VerificationMessageTemplateSmsMessage' EmailSubject: !Ref 'VerificationMessageTemplateEmailSubject' DefaultEmailOption: !Ref 'VerificationMessageTemplateDefaultEmailOption' EmailSubjectByLink: !Ref 'VerificationMessageTemplateEmailSubjectByLink' MfaConfiguration: !Ref 'MfaConfiguration' AdminCreateUserConfig: InviteMessageTemplate: EmailMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailMessage' SMSMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateSMSMessage' EmailSubject: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailSubject' UnusedAccountValidityDays: !Ref 'AdminCreateUserConfigUnusedAccountValidityDays' AllowAdminCreateUserOnly: !Ref 'AdminCreateUserConfigAllowAdminCreateUserOnly' SmsAuthenticationMessage: !Ref 'SmsAuthenticationMessage' UsernameConfiguration: CaseSensitive: !Ref 'UsernameConfigurationCaseSensitive' UserPoolName: !Ref 'UserPoolName' SmsVerificationMessage: !Ref 'SmsVerificationMessage' UserPoolAddOns: AdvancedSecurityMode: !Ref 'UserPoolAddOnsAdvancedSecurityMode' EmailConfiguration: ReplyToEmailAddress: !Ref 'EmailConfigurationReplyToEmailAddress' ConfigurationSet: !Ref 'EmailConfigurationConfigurationSet' EmailSendingAccount: !Ref 'EmailConfigurationEmailSendingAccount' SourceArn: !Ref 'EmailConfigurationSourceArn' From: !Ref 'EmailConfigurationFrom' SmsConfiguration: ExternalId: !Ref 'SmsConfigurationExternalId' SnsCallerArn: !Ref 'SmsConfigurationSnsCallerArn' EmailVerificationSubject: !Ref 'EmailVerificationSubject' LambdaConfig: CreateAuthChallenge: !Ref 'LambdaConfigCreateAuthChallenge' PreAuthentication: !Ref 'LambdaConfigPreAuthentication' DefineAuthChallenge: !Ref 'LambdaConfigDefineAuthChallenge' PreSignUp: !Ref 'LambdaConfigPreSignUp' PreTokenGeneration: !Ref 'LambdaConfigPreTokenGeneration' UserMigration: !Ref 'LambdaConfigUserMigration' PostAuthentication: !Ref 'LambdaConfigPostAuthentication' PostConfirmation: !Ref 'LambdaConfigPostConfirmation' CustomMessage: !Ref 'LambdaConfigCustomMessage' VerifyAuthChallengeResponse: !Ref 'LambdaConfigVerifyAuthChallengeResponse' DeviceConfiguration: DeviceOnlyRememberedOnUserPrompt: !Ref 'DeviceConfigurationDeviceOnlyRememberedOnUserPrompt' ChallengeRequiredOnNewDevice: !Ref 'DeviceConfigurationChallengeRequiredOnNewDevice' EmailVerificationMessage: !Ref 'EmailVerificationMessage' AccountRecoverySetting: {} Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPool/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Parameters: UserPoolTags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpooltags Default: null PoliciesPasswordPolicyRequireNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirenumbers AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyMinimumLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-minimumlength Default: null PoliciesPasswordPolicyTemporaryPasswordValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-temporarypasswordvaliditydays Default: null PoliciesPasswordPolicyRequireUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requireuppercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirelowercase AllowedValues: - 'true' - 'false' Default: null PoliciesPasswordPolicyRequireSymbols: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requiresymbols AllowedValues: - 'true' - 'false' Default: null VerificationMessageTemplateEmailMessageByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessagebylink Default: null VerificationMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailmessage Default: null VerificationMessageTemplateSmsMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-smsmessage Default: null VerificationMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubject Default: null VerificationMessageTemplateDefaultEmailOption: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-defaultemailoption Default: null VerificationMessageTemplateEmailSubjectByLink: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-verificationmessagetemplate.html#cfn-cognito-userpool-verificationmessagetemplate-emailsubjectbylink Default: null MfaConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-mfaconfiguration Default: null AdminCreateUserConfigInviteMessageTemplateEmailMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailmessage Default: null AdminCreateUserConfigInviteMessageTemplateSMSMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-smsmessage Default: null AdminCreateUserConfigInviteMessageTemplateEmailSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailsubject Default: null AdminCreateUserConfigUnusedAccountValidityDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-unusedaccountvaliditydays Default: null AdminCreateUserConfigAllowAdminCreateUserOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-allowadmincreateuseronly AllowedValues: - 'true' - 'false' Default: null SmsAuthenticationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsauthenticationmessage Default: null UsernameConfigurationCaseSensitive: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-usernameconfiguration.html#cfn-cognito-userpool-usernameconfiguration-casesensitive AllowedValues: - 'true' - 'false' Default: null UserPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpoolname Default: null SmsVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsverificationmessage Default: null UserPoolAddOnsAdvancedSecurityMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-userpooladdons.html#cfn-cognito-userpool-userpooladdons-advancedsecuritymode Default: null EmailConfigurationReplyToEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-replytoemailaddress Default: null EmailConfigurationConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-configurationset Default: null EmailConfigurationEmailSendingAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-emailsendingaccount Default: null EmailConfigurationSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-sourcearn Default: null EmailConfigurationFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-from Default: null SmsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-externalid Default: null SmsConfigurationSnsCallerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-snscallerarn Default: null EmailVerificationSubject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationsubject Default: null LambdaConfigCreateAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-createauthchallenge Default: null LambdaConfigPreAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-preauthentication Default: null LambdaConfigDefineAuthChallenge: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-defineauthchallenge Default: null LambdaConfigPreSignUp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-presignup Default: null LambdaConfigPreTokenGeneration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-pretokengeneration Default: null LambdaConfigUserMigration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-usermigration Default: null LambdaConfigPostAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postauthentication Default: null LambdaConfigPostConfirmation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postconfirmation Default: null LambdaConfigCustomMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-custommessage Default: null LambdaConfigVerifyAuthChallengeResponse: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-verifyauthchallengeresponse Default: null DeviceConfigurationDeviceOnlyRememberedOnUserPrompt: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-deviceonlyrememberedonuserprompt AllowedValues: - 'true' - 'false' Default: null DeviceConfigurationChallengeRequiredOnNewDevice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-challengerequiredonnewdevice AllowedValues: - 'true' - 'false' Default: null EmailVerificationMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationmessage Default: null Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Properties: UserPoolTags: !Ref 'UserPoolTags' Policies: PasswordPolicy: RequireNumbers: !Ref 'PoliciesPasswordPolicyRequireNumbers' MinimumLength: !Ref 'PoliciesPasswordPolicyMinimumLength' TemporaryPasswordValidityDays: !Ref 'PoliciesPasswordPolicyTemporaryPasswordValidityDays' RequireUppercase: !Ref 'PoliciesPasswordPolicyRequireUppercase' RequireLowercase: !Ref 'PoliciesPasswordPolicyRequireLowercase' RequireSymbols: !Ref 'PoliciesPasswordPolicyRequireSymbols' VerificationMessageTemplate: EmailMessageByLink: !Ref 'VerificationMessageTemplateEmailMessageByLink' EmailMessage: !Ref 'VerificationMessageTemplateEmailMessage' SmsMessage: !Ref 'VerificationMessageTemplateSmsMessage' EmailSubject: !Ref 'VerificationMessageTemplateEmailSubject' DefaultEmailOption: !Ref 'VerificationMessageTemplateDefaultEmailOption' EmailSubjectByLink: !Ref 'VerificationMessageTemplateEmailSubjectByLink' MfaConfiguration: !Ref 'MfaConfiguration' AdminCreateUserConfig: InviteMessageTemplate: EmailMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailMessage' SMSMessage: !Ref 'AdminCreateUserConfigInviteMessageTemplateSMSMessage' EmailSubject: !Ref 'AdminCreateUserConfigInviteMessageTemplateEmailSubject' UnusedAccountValidityDays: !Ref 'AdminCreateUserConfigUnusedAccountValidityDays' AllowAdminCreateUserOnly: !Ref 'AdminCreateUserConfigAllowAdminCreateUserOnly' SmsAuthenticationMessage: !Ref 'SmsAuthenticationMessage' UsernameConfiguration: CaseSensitive: !Ref 'UsernameConfigurationCaseSensitive' UserPoolName: !Ref 'UserPoolName' SmsVerificationMessage: !Ref 'SmsVerificationMessage' UserPoolAddOns: AdvancedSecurityMode: !Ref 'UserPoolAddOnsAdvancedSecurityMode' EmailConfiguration: ReplyToEmailAddress: !Ref 'EmailConfigurationReplyToEmailAddress' ConfigurationSet: !Ref 'EmailConfigurationConfigurationSet' EmailSendingAccount: !Ref 'EmailConfigurationEmailSendingAccount' SourceArn: !Ref 'EmailConfigurationSourceArn' From: !Ref 'EmailConfigurationFrom' SmsConfiguration: ExternalId: !Ref 'SmsConfigurationExternalId' SnsCallerArn: !Ref 'SmsConfigurationSnsCallerArn' EmailVerificationSubject: !Ref 'EmailVerificationSubject' LambdaConfig: CreateAuthChallenge: !Ref 'LambdaConfigCreateAuthChallenge' PreAuthentication: !Ref 'LambdaConfigPreAuthentication' DefineAuthChallenge: !Ref 'LambdaConfigDefineAuthChallenge' PreSignUp: !Ref 'LambdaConfigPreSignUp' PreTokenGeneration: !Ref 'LambdaConfigPreTokenGeneration' UserMigration: !Ref 'LambdaConfigUserMigration' PostAuthentication: !Ref 'LambdaConfigPostAuthentication' PostConfirmation: !Ref 'LambdaConfigPostConfirmation' CustomMessage: !Ref 'LambdaConfigCustomMessage' VerifyAuthChallengeResponse: !Ref 'LambdaConfigVerifyAuthChallengeResponse' DeviceConfiguration: DeviceOnlyRememberedOnUserPrompt: !Ref 'DeviceConfigurationDeviceOnlyRememberedOnUserPrompt' ChallengeRequiredOnNewDevice: !Ref 'DeviceConfigurationChallengeRequiredOnNewDevice' EmailVerificationMessage: !Ref 'EmailVerificationMessage' AccountRecoverySetting: {} Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolClient/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: AnalyticsConfigurationUserDataShared: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-userdatashared AllowedValues: - 'true' - 'false' Default: null AnalyticsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-externalid Default: null AnalyticsConfigurationApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-applicationid Default: null AnalyticsConfigurationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-rolearn Default: null GenerateSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-generatesecret AllowedValues: - 'true' - 'false' Default: null AllowedOAuthFlowsUserPoolClient: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-allowedoauthflowsuserpoolclient AllowedValues: - 'true' - 'false' Default: null DefaultRedirectURI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-defaultredirecturi Default: null ClientName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-clientname Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid RefreshTokenValidity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-refreshtokenvalidity Default: null PreventUserExistenceErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-preventuserexistenceerrors Default: null Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: AnalyticsConfiguration: UserDataShared: !Ref 'AnalyticsConfigurationUserDataShared' ExternalId: !Ref 'AnalyticsConfigurationExternalId' ApplicationId: !Ref 'AnalyticsConfigurationApplicationId' RoleArn: !Ref 'AnalyticsConfigurationRoleArn' GenerateSecret: !Ref 'GenerateSecret' AllowedOAuthFlowsUserPoolClient: !Ref 'AllowedOAuthFlowsUserPoolClient' DefaultRedirectURI: !Ref 'DefaultRedirectURI' ClientName: !Ref 'ClientName' UserPoolId: !Ref 'UserPoolId' RefreshTokenValidity: !Ref 'RefreshTokenValidity' PreventUserExistenceErrors: !Ref 'PreventUserExistenceErrors' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolClient/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: AnalyticsConfigurationUserDataShared: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-userdatashared AllowedValues: - 'true' - 'false' Default: null AnalyticsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-externalid Default: null AnalyticsConfigurationApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-applicationid Default: null AnalyticsConfigurationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-rolearn Default: null GenerateSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-generatesecret AllowedValues: - 'true' - 'false' Default: null AllowedOAuthFlowsUserPoolClient: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-allowedoauthflowsuserpoolclient AllowedValues: - 'true' - 'false' Default: null DefaultRedirectURI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-defaultredirecturi Default: null ClientName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-clientname Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid RefreshTokenValidity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-refreshtokenvalidity Default: null PreventUserExistenceErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-preventuserexistenceerrors Default: null Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: AnalyticsConfiguration: UserDataShared: !Ref 'AnalyticsConfigurationUserDataShared' ExternalId: !Ref 'AnalyticsConfigurationExternalId' ApplicationId: !Ref 'AnalyticsConfigurationApplicationId' RoleArn: !Ref 'AnalyticsConfigurationRoleArn' GenerateSecret: !Ref 'GenerateSecret' AllowedOAuthFlowsUserPoolClient: !Ref 'AllowedOAuthFlowsUserPoolClient' DefaultRedirectURI: !Ref 'DefaultRedirectURI' ClientName: !Ref 'ClientName' UserPoolId: !Ref 'UserPoolId' RefreshTokenValidity: !Ref 'RefreshTokenValidity' PreventUserExistenceErrors: !Ref 'PreventUserExistenceErrors' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolClient/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: AnalyticsConfigurationUserDataShared: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-userdatashared AllowedValues: - 'true' - 'false' Default: null AnalyticsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-externalid Default: null AnalyticsConfigurationApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-applicationid Default: null AnalyticsConfigurationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-rolearn Default: null GenerateSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-generatesecret AllowedValues: - 'true' - 'false' Default: null AllowedOAuthFlowsUserPoolClient: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-allowedoauthflowsuserpoolclient AllowedValues: - 'true' - 'false' Default: null DefaultRedirectURI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-defaultredirecturi Default: null ClientName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-clientname Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid RefreshTokenValidity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-refreshtokenvalidity Default: null PreventUserExistenceErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-preventuserexistenceerrors Default: null Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: AnalyticsConfiguration: UserDataShared: !Ref 'AnalyticsConfigurationUserDataShared' ExternalId: !Ref 'AnalyticsConfigurationExternalId' ApplicationId: !Ref 'AnalyticsConfigurationApplicationId' RoleArn: !Ref 'AnalyticsConfigurationRoleArn' GenerateSecret: !Ref 'GenerateSecret' AllowedOAuthFlowsUserPoolClient: !Ref 'AllowedOAuthFlowsUserPoolClient' DefaultRedirectURI: !Ref 'DefaultRedirectURI' ClientName: !Ref 'ClientName' UserPoolId: !Ref 'UserPoolId' RefreshTokenValidity: !Ref 'RefreshTokenValidity' PreventUserExistenceErrors: !Ref 'PreventUserExistenceErrors' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolClient/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: AnalyticsConfigurationUserDataShared: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-userdatashared AllowedValues: - 'true' - 'false' Default: null AnalyticsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-externalid Default: null AnalyticsConfigurationApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-applicationid Default: null AnalyticsConfigurationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-rolearn Default: null GenerateSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-generatesecret AllowedValues: - 'true' - 'false' Default: null AllowedOAuthFlowsUserPoolClient: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-allowedoauthflowsuserpoolclient AllowedValues: - 'true' - 'false' Default: null DefaultRedirectURI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-defaultredirecturi Default: null ClientName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-clientname Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid RefreshTokenValidity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-refreshtokenvalidity Default: null PreventUserExistenceErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-preventuserexistenceerrors Default: null Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: AnalyticsConfiguration: UserDataShared: !Ref 'AnalyticsConfigurationUserDataShared' ExternalId: !Ref 'AnalyticsConfigurationExternalId' ApplicationId: !Ref 'AnalyticsConfigurationApplicationId' RoleArn: !Ref 'AnalyticsConfigurationRoleArn' GenerateSecret: !Ref 'GenerateSecret' AllowedOAuthFlowsUserPoolClient: !Ref 'AllowedOAuthFlowsUserPoolClient' DefaultRedirectURI: !Ref 'DefaultRedirectURI' ClientName: !Ref 'ClientName' UserPoolId: !Ref 'UserPoolId' RefreshTokenValidity: !Ref 'RefreshTokenValidity' PreventUserExistenceErrors: !Ref 'PreventUserExistenceErrors' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolClient/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: AnalyticsConfigurationUserDataShared: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-userdatashared AllowedValues: - 'true' - 'false' Default: null AnalyticsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-externalid Default: null AnalyticsConfigurationApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-applicationid Default: null AnalyticsConfigurationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-rolearn Default: null GenerateSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-generatesecret AllowedValues: - 'true' - 'false' Default: null AllowedOAuthFlowsUserPoolClient: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-allowedoauthflowsuserpoolclient AllowedValues: - 'true' - 'false' Default: null DefaultRedirectURI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-defaultredirecturi Default: null ClientName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-clientname Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid RefreshTokenValidity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-refreshtokenvalidity Default: null PreventUserExistenceErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-preventuserexistenceerrors Default: null Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: AnalyticsConfiguration: UserDataShared: !Ref 'AnalyticsConfigurationUserDataShared' ExternalId: !Ref 'AnalyticsConfigurationExternalId' ApplicationId: !Ref 'AnalyticsConfigurationApplicationId' RoleArn: !Ref 'AnalyticsConfigurationRoleArn' GenerateSecret: !Ref 'GenerateSecret' AllowedOAuthFlowsUserPoolClient: !Ref 'AllowedOAuthFlowsUserPoolClient' DefaultRedirectURI: !Ref 'DefaultRedirectURI' ClientName: !Ref 'ClientName' UserPoolId: !Ref 'UserPoolId' RefreshTokenValidity: !Ref 'RefreshTokenValidity' PreventUserExistenceErrors: !Ref 'PreventUserExistenceErrors' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolClient/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: AnalyticsConfigurationUserDataShared: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-userdatashared AllowedValues: - 'true' - 'false' Default: null AnalyticsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-externalid Default: null AnalyticsConfigurationApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-applicationid Default: null AnalyticsConfigurationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-rolearn Default: null GenerateSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-generatesecret AllowedValues: - 'true' - 'false' Default: null AllowedOAuthFlowsUserPoolClient: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-allowedoauthflowsuserpoolclient AllowedValues: - 'true' - 'false' Default: null DefaultRedirectURI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-defaultredirecturi Default: null ClientName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-clientname Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid RefreshTokenValidity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-refreshtokenvalidity Default: null PreventUserExistenceErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-preventuserexistenceerrors Default: null Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: AnalyticsConfiguration: UserDataShared: !Ref 'AnalyticsConfigurationUserDataShared' ExternalId: !Ref 'AnalyticsConfigurationExternalId' ApplicationId: !Ref 'AnalyticsConfigurationApplicationId' RoleArn: !Ref 'AnalyticsConfigurationRoleArn' GenerateSecret: !Ref 'GenerateSecret' AllowedOAuthFlowsUserPoolClient: !Ref 'AllowedOAuthFlowsUserPoolClient' DefaultRedirectURI: !Ref 'DefaultRedirectURI' ClientName: !Ref 'ClientName' UserPoolId: !Ref 'UserPoolId' RefreshTokenValidity: !Ref 'RefreshTokenValidity' PreventUserExistenceErrors: !Ref 'PreventUserExistenceErrors' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolClient/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: AnalyticsConfigurationUserDataShared: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-userdatashared AllowedValues: - 'true' - 'false' Default: null AnalyticsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-externalid Default: null AnalyticsConfigurationApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-applicationid Default: null AnalyticsConfigurationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-rolearn Default: null GenerateSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-generatesecret AllowedValues: - 'true' - 'false' Default: null AllowedOAuthFlowsUserPoolClient: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-allowedoauthflowsuserpoolclient AllowedValues: - 'true' - 'false' Default: null DefaultRedirectURI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-defaultredirecturi Default: null ClientName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-clientname Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid RefreshTokenValidity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-refreshtokenvalidity Default: null PreventUserExistenceErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-preventuserexistenceerrors Default: null Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: AnalyticsConfiguration: UserDataShared: !Ref 'AnalyticsConfigurationUserDataShared' ExternalId: !Ref 'AnalyticsConfigurationExternalId' ApplicationId: !Ref 'AnalyticsConfigurationApplicationId' RoleArn: !Ref 'AnalyticsConfigurationRoleArn' GenerateSecret: !Ref 'GenerateSecret' AllowedOAuthFlowsUserPoolClient: !Ref 'AllowedOAuthFlowsUserPoolClient' DefaultRedirectURI: !Ref 'DefaultRedirectURI' ClientName: !Ref 'ClientName' UserPoolId: !Ref 'UserPoolId' RefreshTokenValidity: !Ref 'RefreshTokenValidity' PreventUserExistenceErrors: !Ref 'PreventUserExistenceErrors' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolClient/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: AnalyticsConfigurationUserDataShared: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-userdatashared AllowedValues: - 'true' - 'false' Default: null AnalyticsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-externalid Default: null AnalyticsConfigurationApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-applicationid Default: null AnalyticsConfigurationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-rolearn Default: null GenerateSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-generatesecret AllowedValues: - 'true' - 'false' Default: null AllowedOAuthFlowsUserPoolClient: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-allowedoauthflowsuserpoolclient AllowedValues: - 'true' - 'false' Default: null DefaultRedirectURI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-defaultredirecturi Default: null ClientName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-clientname Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid RefreshTokenValidity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-refreshtokenvalidity Default: null PreventUserExistenceErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-preventuserexistenceerrors Default: null Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: AnalyticsConfiguration: UserDataShared: !Ref 'AnalyticsConfigurationUserDataShared' ExternalId: !Ref 'AnalyticsConfigurationExternalId' ApplicationId: !Ref 'AnalyticsConfigurationApplicationId' RoleArn: !Ref 'AnalyticsConfigurationRoleArn' GenerateSecret: !Ref 'GenerateSecret' AllowedOAuthFlowsUserPoolClient: !Ref 'AllowedOAuthFlowsUserPoolClient' DefaultRedirectURI: !Ref 'DefaultRedirectURI' ClientName: !Ref 'ClientName' UserPoolId: !Ref 'UserPoolId' RefreshTokenValidity: !Ref 'RefreshTokenValidity' PreventUserExistenceErrors: !Ref 'PreventUserExistenceErrors' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolClient/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: AnalyticsConfigurationUserDataShared: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-userdatashared AllowedValues: - 'true' - 'false' Default: null AnalyticsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-externalid Default: null AnalyticsConfigurationApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-applicationid Default: null AnalyticsConfigurationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-rolearn Default: null GenerateSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-generatesecret AllowedValues: - 'true' - 'false' Default: null AllowedOAuthFlowsUserPoolClient: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-allowedoauthflowsuserpoolclient AllowedValues: - 'true' - 'false' Default: null DefaultRedirectURI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-defaultredirecturi Default: null ClientName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-clientname Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid RefreshTokenValidity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-refreshtokenvalidity Default: null PreventUserExistenceErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-preventuserexistenceerrors Default: null Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: AnalyticsConfiguration: UserDataShared: !Ref 'AnalyticsConfigurationUserDataShared' ExternalId: !Ref 'AnalyticsConfigurationExternalId' ApplicationId: !Ref 'AnalyticsConfigurationApplicationId' RoleArn: !Ref 'AnalyticsConfigurationRoleArn' GenerateSecret: !Ref 'GenerateSecret' AllowedOAuthFlowsUserPoolClient: !Ref 'AllowedOAuthFlowsUserPoolClient' DefaultRedirectURI: !Ref 'DefaultRedirectURI' ClientName: !Ref 'ClientName' UserPoolId: !Ref 'UserPoolId' RefreshTokenValidity: !Ref 'RefreshTokenValidity' PreventUserExistenceErrors: !Ref 'PreventUserExistenceErrors' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolClient/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: AnalyticsConfigurationUserDataShared: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-userdatashared AllowedValues: - 'true' - 'false' Default: null AnalyticsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-externalid Default: null AnalyticsConfigurationApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-applicationid Default: null AnalyticsConfigurationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-rolearn Default: null GenerateSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-generatesecret AllowedValues: - 'true' - 'false' Default: null AllowedOAuthFlowsUserPoolClient: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-allowedoauthflowsuserpoolclient AllowedValues: - 'true' - 'false' Default: null DefaultRedirectURI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-defaultredirecturi Default: null ClientName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-clientname Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid RefreshTokenValidity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-refreshtokenvalidity Default: null PreventUserExistenceErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-preventuserexistenceerrors Default: null Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: AnalyticsConfiguration: UserDataShared: !Ref 'AnalyticsConfigurationUserDataShared' ExternalId: !Ref 'AnalyticsConfigurationExternalId' ApplicationId: !Ref 'AnalyticsConfigurationApplicationId' RoleArn: !Ref 'AnalyticsConfigurationRoleArn' GenerateSecret: !Ref 'GenerateSecret' AllowedOAuthFlowsUserPoolClient: !Ref 'AllowedOAuthFlowsUserPoolClient' DefaultRedirectURI: !Ref 'DefaultRedirectURI' ClientName: !Ref 'ClientName' UserPoolId: !Ref 'UserPoolId' RefreshTokenValidity: !Ref 'RefreshTokenValidity' PreventUserExistenceErrors: !Ref 'PreventUserExistenceErrors' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolClient/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: AnalyticsConfigurationUserDataShared: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-userdatashared AllowedValues: - 'true' - 'false' Default: null AnalyticsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-externalid Default: null AnalyticsConfigurationApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-applicationid Default: null AnalyticsConfigurationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-rolearn Default: null GenerateSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-generatesecret AllowedValues: - 'true' - 'false' Default: null AllowedOAuthFlowsUserPoolClient: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-allowedoauthflowsuserpoolclient AllowedValues: - 'true' - 'false' Default: null DefaultRedirectURI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-defaultredirecturi Default: null ClientName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-clientname Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid RefreshTokenValidity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-refreshtokenvalidity Default: null PreventUserExistenceErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-preventuserexistenceerrors Default: null Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: AnalyticsConfiguration: UserDataShared: !Ref 'AnalyticsConfigurationUserDataShared' ExternalId: !Ref 'AnalyticsConfigurationExternalId' ApplicationId: !Ref 'AnalyticsConfigurationApplicationId' RoleArn: !Ref 'AnalyticsConfigurationRoleArn' GenerateSecret: !Ref 'GenerateSecret' AllowedOAuthFlowsUserPoolClient: !Ref 'AllowedOAuthFlowsUserPoolClient' DefaultRedirectURI: !Ref 'DefaultRedirectURI' ClientName: !Ref 'ClientName' UserPoolId: !Ref 'UserPoolId' RefreshTokenValidity: !Ref 'RefreshTokenValidity' PreventUserExistenceErrors: !Ref 'PreventUserExistenceErrors' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolClient/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: AnalyticsConfigurationUserDataShared: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-userdatashared AllowedValues: - 'true' - 'false' Default: null AnalyticsConfigurationExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-externalid Default: null AnalyticsConfigurationApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-applicationid Default: null AnalyticsConfigurationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolclient-analyticsconfiguration.html#cfn-cognito-userpoolclient-analyticsconfiguration-rolearn Default: null GenerateSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-generatesecret AllowedValues: - 'true' - 'false' Default: null AllowedOAuthFlowsUserPoolClient: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-allowedoauthflowsuserpoolclient AllowedValues: - 'true' - 'false' Default: null DefaultRedirectURI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-defaultredirecturi Default: null ClientName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-clientname Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid RefreshTokenValidity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-refreshtokenvalidity Default: null PreventUserExistenceErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-preventuserexistenceerrors Default: null Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: AnalyticsConfiguration: UserDataShared: !Ref 'AnalyticsConfigurationUserDataShared' ExternalId: !Ref 'AnalyticsConfigurationExternalId' ApplicationId: !Ref 'AnalyticsConfigurationApplicationId' RoleArn: !Ref 'AnalyticsConfigurationRoleArn' GenerateSecret: !Ref 'GenerateSecret' AllowedOAuthFlowsUserPoolClient: !Ref 'AllowedOAuthFlowsUserPoolClient' DefaultRedirectURI: !Ref 'DefaultRedirectURI' ClientName: !Ref 'ClientName' UserPoolId: !Ref 'UserPoolId' RefreshTokenValidity: !Ref 'RefreshTokenValidity' PreventUserExistenceErrors: !Ref 'PreventUserExistenceErrors' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolDomain/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid CustomDomainConfigTypeCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooldomain-customdomainconfigtype.html#cfn-cognito-userpooldomain-customdomainconfigtype-certificatearn Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' CustomDomainConfig: CertificateArn: !Ref 'CustomDomainConfigTypeCertificateArn' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolDomain/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid CustomDomainConfigTypeCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooldomain-customdomainconfigtype.html#cfn-cognito-userpooldomain-customdomainconfigtype-certificatearn Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' CustomDomainConfig: CertificateArn: !Ref 'CustomDomainConfigTypeCertificateArn' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolDomain/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid CustomDomainConfigTypeCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooldomain-customdomainconfigtype.html#cfn-cognito-userpooldomain-customdomainconfigtype-certificatearn Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' CustomDomainConfig: CertificateArn: !Ref 'CustomDomainConfigTypeCertificateArn' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolDomain/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid CustomDomainConfigTypeCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooldomain-customdomainconfigtype.html#cfn-cognito-userpooldomain-customdomainconfigtype-certificatearn Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' CustomDomainConfig: CertificateArn: !Ref 'CustomDomainConfigTypeCertificateArn' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolDomain/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid CustomDomainConfigTypeCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooldomain-customdomainconfigtype.html#cfn-cognito-userpooldomain-customdomainconfigtype-certificatearn Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' CustomDomainConfig: CertificateArn: !Ref 'CustomDomainConfigTypeCertificateArn' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolDomain/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid CustomDomainConfigTypeCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooldomain-customdomainconfigtype.html#cfn-cognito-userpooldomain-customdomainconfigtype-certificatearn Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' CustomDomainConfig: CertificateArn: !Ref 'CustomDomainConfigTypeCertificateArn' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolDomain/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid CustomDomainConfigTypeCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooldomain-customdomainconfigtype.html#cfn-cognito-userpooldomain-customdomainconfigtype-certificatearn Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' CustomDomainConfig: CertificateArn: !Ref 'CustomDomainConfigTypeCertificateArn' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolDomain/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid CustomDomainConfigTypeCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooldomain-customdomainconfigtype.html#cfn-cognito-userpooldomain-customdomainconfigtype-certificatearn Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' CustomDomainConfig: CertificateArn: !Ref 'CustomDomainConfigTypeCertificateArn' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolDomain/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid CustomDomainConfigTypeCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooldomain-customdomainconfigtype.html#cfn-cognito-userpooldomain-customdomainconfigtype-certificatearn Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' CustomDomainConfig: CertificateArn: !Ref 'CustomDomainConfigTypeCertificateArn' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolDomain/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid CustomDomainConfigTypeCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooldomain-customdomainconfigtype.html#cfn-cognito-userpooldomain-customdomainconfigtype-certificatearn Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' CustomDomainConfig: CertificateArn: !Ref 'CustomDomainConfigTypeCertificateArn' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolDomain/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid CustomDomainConfigTypeCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooldomain-customdomainconfigtype.html#cfn-cognito-userpooldomain-customdomainconfigtype-certificatearn Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' CustomDomainConfig: CertificateArn: !Ref 'CustomDomainConfigTypeCertificateArn' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolDomain/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid CustomDomainConfigTypeCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooldomain-customdomainconfigtype.html#cfn-cognito-userpooldomain-customdomainconfigtype-certificatearn Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' CustomDomainConfig: CertificateArn: !Ref 'CustomDomainConfigTypeCertificateArn' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-groupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-description Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Precedence: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-precedence Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-rolearn Default: null Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: GroupName: !Ref 'GroupName' Description: !Ref 'Description' UserPoolId: !Ref 'UserPoolId' Precedence: !Ref 'Precedence' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-groupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-description Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Precedence: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-precedence Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-rolearn Default: null Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: GroupName: !Ref 'GroupName' Description: !Ref 'Description' UserPoolId: !Ref 'UserPoolId' Precedence: !Ref 'Precedence' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-groupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-description Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Precedence: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-precedence Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-rolearn Default: null Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: GroupName: !Ref 'GroupName' Description: !Ref 'Description' UserPoolId: !Ref 'UserPoolId' Precedence: !Ref 'Precedence' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-groupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-description Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Precedence: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-precedence Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-rolearn Default: null Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: GroupName: !Ref 'GroupName' Description: !Ref 'Description' UserPoolId: !Ref 'UserPoolId' Precedence: !Ref 'Precedence' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-groupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-description Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Precedence: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-precedence Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-rolearn Default: null Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: GroupName: !Ref 'GroupName' Description: !Ref 'Description' UserPoolId: !Ref 'UserPoolId' Precedence: !Ref 'Precedence' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-groupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-description Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Precedence: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-precedence Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-rolearn Default: null Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: GroupName: !Ref 'GroupName' Description: !Ref 'Description' UserPoolId: !Ref 'UserPoolId' Precedence: !Ref 'Precedence' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-groupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-description Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Precedence: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-precedence Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-rolearn Default: null Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: GroupName: !Ref 'GroupName' Description: !Ref 'Description' UserPoolId: !Ref 'UserPoolId' Precedence: !Ref 'Precedence' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-groupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-description Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Precedence: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-precedence Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-rolearn Default: null Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: GroupName: !Ref 'GroupName' Description: !Ref 'Description' UserPoolId: !Ref 'UserPoolId' Precedence: !Ref 'Precedence' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-groupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-description Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Precedence: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-precedence Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-rolearn Default: null Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: GroupName: !Ref 'GroupName' Description: !Ref 'Description' UserPoolId: !Ref 'UserPoolId' Precedence: !Ref 'Precedence' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid AttributeMapping: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-attributemapping Default: null ProviderDetails: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providerdetails Default: null ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' AttributeMapping: !Ref 'AttributeMapping' ProviderDetails: !Ref 'ProviderDetails' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid AttributeMapping: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-attributemapping Default: null ProviderDetails: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providerdetails Default: null ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' AttributeMapping: !Ref 'AttributeMapping' ProviderDetails: !Ref 'ProviderDetails' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid AttributeMapping: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-attributemapping Default: null ProviderDetails: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providerdetails Default: null ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' AttributeMapping: !Ref 'AttributeMapping' ProviderDetails: !Ref 'ProviderDetails' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid AttributeMapping: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-attributemapping Default: null ProviderDetails: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providerdetails Default: null ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' AttributeMapping: !Ref 'AttributeMapping' ProviderDetails: !Ref 'ProviderDetails' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid AttributeMapping: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-attributemapping Default: null ProviderDetails: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providerdetails Default: null ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' AttributeMapping: !Ref 'AttributeMapping' ProviderDetails: !Ref 'ProviderDetails' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid AttributeMapping: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-attributemapping Default: null ProviderDetails: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providerdetails Default: null ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' AttributeMapping: !Ref 'AttributeMapping' ProviderDetails: !Ref 'ProviderDetails' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid AttributeMapping: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-attributemapping Default: null ProviderDetails: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providerdetails Default: null ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' AttributeMapping: !Ref 'AttributeMapping' ProviderDetails: !Ref 'ProviderDetails' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid AttributeMapping: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-attributemapping Default: null ProviderDetails: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providerdetails Default: null ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' AttributeMapping: !Ref 'AttributeMapping' ProviderDetails: !Ref 'ProviderDetails' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid AttributeMapping: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-attributemapping Default: null ProviderDetails: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providerdetails Default: null ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' AttributeMapping: !Ref 'AttributeMapping' ProviderDetails: !Ref 'ProviderDetails' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid AttributeMapping: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-attributemapping Default: null ProviderDetails: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providerdetails Default: null ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' AttributeMapping: !Ref 'AttributeMapping' ProviderDetails: !Ref 'ProviderDetails' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid AttributeMapping: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-attributemapping Default: null ProviderDetails: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providerdetails Default: null ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' AttributeMapping: !Ref 'AttributeMapping' ProviderDetails: !Ref 'ProviderDetails' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid AttributeMapping: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-attributemapping Default: null ProviderDetails: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providerdetails Default: null ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' AttributeMapping: !Ref 'AttributeMapping' ProviderDetails: !Ref 'ProviderDetails' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype.html#cfn-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype-eventaction UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-notify AllowedValues: - 'true' - 'false' AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-eventaction AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-textbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-htmlbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-subject AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-replyto Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-sourcearn AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-from Default: null Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: CompromisedCredentialsRiskConfiguration: Actions: EventAction: !Ref 'CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' AccountTakeoverRiskConfiguration: Actions: HighAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' LowAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' MediumAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' NotifyConfiguration: BlockEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' ReplyTo: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo' SourceArn: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn' NoActionEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' From: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom' MfaEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' RiskExceptionConfiguration: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype.html#cfn-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype-eventaction UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-notify AllowedValues: - 'true' - 'false' AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-eventaction AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-textbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-htmlbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-subject AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-replyto Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-sourcearn AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-from Default: null Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: CompromisedCredentialsRiskConfiguration: Actions: EventAction: !Ref 'CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' AccountTakeoverRiskConfiguration: Actions: HighAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' LowAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' MediumAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' NotifyConfiguration: BlockEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' ReplyTo: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo' SourceArn: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn' NoActionEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' From: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom' MfaEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' RiskExceptionConfiguration: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype.html#cfn-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype-eventaction UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-notify AllowedValues: - 'true' - 'false' AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-eventaction AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-textbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-htmlbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-subject AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-replyto Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-sourcearn AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-from Default: null Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: CompromisedCredentialsRiskConfiguration: Actions: EventAction: !Ref 'CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' AccountTakeoverRiskConfiguration: Actions: HighAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' LowAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' MediumAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' NotifyConfiguration: BlockEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' ReplyTo: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo' SourceArn: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn' NoActionEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' From: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom' MfaEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' RiskExceptionConfiguration: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype.html#cfn-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype-eventaction UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-notify AllowedValues: - 'true' - 'false' AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-eventaction AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-textbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-htmlbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-subject AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-replyto Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-sourcearn AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-from Default: null Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: CompromisedCredentialsRiskConfiguration: Actions: EventAction: !Ref 'CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' AccountTakeoverRiskConfiguration: Actions: HighAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' LowAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' MediumAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' NotifyConfiguration: BlockEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' ReplyTo: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo' SourceArn: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn' NoActionEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' From: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom' MfaEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' RiskExceptionConfiguration: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype.html#cfn-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype-eventaction UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-notify AllowedValues: - 'true' - 'false' AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-eventaction AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-textbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-htmlbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-subject AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-replyto Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-sourcearn AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-from Default: null Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: CompromisedCredentialsRiskConfiguration: Actions: EventAction: !Ref 'CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' AccountTakeoverRiskConfiguration: Actions: HighAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' LowAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' MediumAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' NotifyConfiguration: BlockEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' ReplyTo: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo' SourceArn: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn' NoActionEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' From: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom' MfaEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' RiskExceptionConfiguration: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype.html#cfn-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype-eventaction UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-notify AllowedValues: - 'true' - 'false' AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-eventaction AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-textbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-htmlbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-subject AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-replyto Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-sourcearn AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-from Default: null Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: CompromisedCredentialsRiskConfiguration: Actions: EventAction: !Ref 'CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' AccountTakeoverRiskConfiguration: Actions: HighAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' LowAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' MediumAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' NotifyConfiguration: BlockEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' ReplyTo: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo' SourceArn: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn' NoActionEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' From: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom' MfaEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' RiskExceptionConfiguration: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype.html#cfn-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype-eventaction UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-notify AllowedValues: - 'true' - 'false' AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-eventaction AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-textbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-htmlbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-subject AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-replyto Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-sourcearn AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-from Default: null Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: CompromisedCredentialsRiskConfiguration: Actions: EventAction: !Ref 'CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' AccountTakeoverRiskConfiguration: Actions: HighAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' LowAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' MediumAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' NotifyConfiguration: BlockEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' ReplyTo: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo' SourceArn: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn' NoActionEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' From: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom' MfaEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' RiskExceptionConfiguration: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype.html#cfn-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype-eventaction UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-notify AllowedValues: - 'true' - 'false' AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-eventaction AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-textbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-htmlbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-subject AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-replyto Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-sourcearn AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-from Default: null Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: CompromisedCredentialsRiskConfiguration: Actions: EventAction: !Ref 'CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' AccountTakeoverRiskConfiguration: Actions: HighAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' LowAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' MediumAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' NotifyConfiguration: BlockEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' ReplyTo: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo' SourceArn: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn' NoActionEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' From: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom' MfaEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' RiskExceptionConfiguration: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype.html#cfn-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype-eventaction UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-notify AllowedValues: - 'true' - 'false' AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-eventaction AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-textbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-htmlbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-subject AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-replyto Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-sourcearn AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-from Default: null Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: CompromisedCredentialsRiskConfiguration: Actions: EventAction: !Ref 'CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' AccountTakeoverRiskConfiguration: Actions: HighAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' LowAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' MediumAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' NotifyConfiguration: BlockEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' ReplyTo: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo' SourceArn: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn' NoActionEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' From: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom' MfaEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' RiskExceptionConfiguration: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype.html#cfn-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype-eventaction UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-notify AllowedValues: - 'true' - 'false' AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-eventaction AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-textbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-htmlbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-subject AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-replyto Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-sourcearn AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-from Default: null Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: CompromisedCredentialsRiskConfiguration: Actions: EventAction: !Ref 'CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' AccountTakeoverRiskConfiguration: Actions: HighAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' LowAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' MediumAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' NotifyConfiguration: BlockEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' ReplyTo: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo' SourceArn: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn' NoActionEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' From: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom' MfaEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' RiskExceptionConfiguration: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype.html#cfn-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype-eventaction UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-notify AllowedValues: - 'true' - 'false' AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-eventaction AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-textbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-htmlbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-subject AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-replyto Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-sourcearn AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-from Default: null Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: CompromisedCredentialsRiskConfiguration: Actions: EventAction: !Ref 'CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' AccountTakeoverRiskConfiguration: Actions: HighAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' LowAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' MediumAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' NotifyConfiguration: BlockEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' ReplyTo: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo' SourceArn: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn' NoActionEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' From: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom' MfaEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' RiskExceptionConfiguration: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype.html#cfn-cognito-userpoolriskconfigurationattachment-compromisedcredentialsactionstype-eventaction UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-notify AllowedValues: - 'true' - 'false' AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype.html#cfn-cognito-userpoolriskconfigurationattachment-accounttakeoveractiontype-eventaction AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-textbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-htmlbody Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyemailtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyemailtype-subject AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-replyto Default: null AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-sourcearn AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype.html#cfn-cognito-userpoolriskconfigurationattachment-notifyconfigurationtype-from Default: null Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: CompromisedCredentialsRiskConfiguration: Actions: EventAction: !Ref 'CompromisedCredentialsRiskConfigurationTypeCompromisedCredentialsActionsTypeEventAction' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' AccountTakeoverRiskConfiguration: Actions: HighAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' LowAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' MediumAction: Notify: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeNotify' EventAction: !Ref 'AccountTakeoverRiskConfigurationTypeAccountTakeoverActionsTypeAccountTakeoverActionTypeEventAction' NotifyConfiguration: BlockEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' ReplyTo: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeReplyTo' SourceArn: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeSourceArn' NoActionEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' From: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeFrom' MfaEmail: TextBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeTextBody' HtmlBody: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeHtmlBody' Subject: !Ref 'AccountTakeoverRiskConfigurationTypeNotifyConfigurationTypeNotifyEmailTypeSubject' RiskExceptionConfiguration: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: CSS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-css Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: CSS: !Ref 'CSS' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: CSS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-css Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: CSS: !Ref 'CSS' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: CSS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-css Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: CSS: !Ref 'CSS' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: CSS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-css Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: CSS: !Ref 'CSS' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: CSS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-css Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: CSS: !Ref 'CSS' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: CSS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-css Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: CSS: !Ref 'CSS' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: CSS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-css Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: CSS: !Ref 'CSS' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: CSS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-css Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: CSS: !Ref 'CSS' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: CSS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-css Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: CSS: !Ref 'CSS' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: CSS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-css Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: CSS: !Ref 'CSS' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: CSS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-css Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: CSS: !Ref 'CSS' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: CSS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-css Default: null UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: CSS: !Ref 'CSS' UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUser/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-username Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-messageaction Default: null ClientMetadata: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-clientmetadata Default: null ForceAliasCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-forcealiascreation AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' MessageAction: !Ref 'MessageAction' ClientMetadata: !Ref 'ClientMetadata' ForceAliasCreation: !Ref 'ForceAliasCreation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUser/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-username Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-messageaction Default: null ClientMetadata: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-clientmetadata Default: null ForceAliasCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-forcealiascreation AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' MessageAction: !Ref 'MessageAction' ClientMetadata: !Ref 'ClientMetadata' ForceAliasCreation: !Ref 'ForceAliasCreation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUser/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-username Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-messageaction Default: null ClientMetadata: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-clientmetadata Default: null ForceAliasCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-forcealiascreation AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' MessageAction: !Ref 'MessageAction' ClientMetadata: !Ref 'ClientMetadata' ForceAliasCreation: !Ref 'ForceAliasCreation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUser/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-username Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-messageaction Default: null ClientMetadata: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-clientmetadata Default: null ForceAliasCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-forcealiascreation AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' MessageAction: !Ref 'MessageAction' ClientMetadata: !Ref 'ClientMetadata' ForceAliasCreation: !Ref 'ForceAliasCreation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUser/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-username Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-messageaction Default: null ClientMetadata: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-clientmetadata Default: null ForceAliasCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-forcealiascreation AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' MessageAction: !Ref 'MessageAction' ClientMetadata: !Ref 'ClientMetadata' ForceAliasCreation: !Ref 'ForceAliasCreation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUser/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-username Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-messageaction Default: null ClientMetadata: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-clientmetadata Default: null ForceAliasCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-forcealiascreation AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' MessageAction: !Ref 'MessageAction' ClientMetadata: !Ref 'ClientMetadata' ForceAliasCreation: !Ref 'ForceAliasCreation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUser/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-username Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-messageaction Default: null ClientMetadata: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-clientmetadata Default: null ForceAliasCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-forcealiascreation AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' MessageAction: !Ref 'MessageAction' ClientMetadata: !Ref 'ClientMetadata' ForceAliasCreation: !Ref 'ForceAliasCreation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUser/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-username Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-messageaction Default: null ClientMetadata: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-clientmetadata Default: null ForceAliasCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-forcealiascreation AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' MessageAction: !Ref 'MessageAction' ClientMetadata: !Ref 'ClientMetadata' ForceAliasCreation: !Ref 'ForceAliasCreation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUser/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-username Default: null MessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-messageaction Default: null ClientMetadata: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-clientmetadata Default: null ForceAliasCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-forcealiascreation AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' MessageAction: !Ref 'MessageAction' ClientMetadata: !Ref 'ClientMetadata' ForceAliasCreation: !Ref 'ForceAliasCreation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-AggregationAuthorization/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-AggregationAuthorization/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-AggregationAuthorization/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-AggregationAuthorization/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-AggregationAuthorization/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-AggregationAuthorization/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-AggregationAuthorization/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-AggregationAuthorization/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-AggregationAuthorization/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-AggregationAuthorization/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description Default: null InputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters Default: null MaximumExecutionFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency Default: null ScopeComplianceResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid Default: null ScopeTagKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey Default: null ScopeTagValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue Default: null SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: ConfigRuleName: !Ref 'ConfigRuleName' Description: !Ref 'Description' InputParameters: !Ref 'InputParameters' MaximumExecutionFrequency: !Ref 'MaximumExecutionFrequency' Scope: ComplianceResourceId: !Ref 'ScopeComplianceResourceId' TagKey: !Ref 'ScopeTagKey' TagValue: !Ref 'ScopeTagValue' Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationAggregator/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname OrganizationAggregationSourceAllAwsRegions: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-allawsregions AllowedValues: - 'true' - 'false' Default: null OrganizationAggregationSourceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-rolearn Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' OrganizationAggregationSource: AllAwsRegions: !Ref 'OrganizationAggregationSourceAllAwsRegions' RoleArn: !Ref 'OrganizationAggregationSourceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationAggregator/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname OrganizationAggregationSourceAllAwsRegions: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-allawsregions AllowedValues: - 'true' - 'false' Default: null OrganizationAggregationSourceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-rolearn Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' OrganizationAggregationSource: AllAwsRegions: !Ref 'OrganizationAggregationSourceAllAwsRegions' RoleArn: !Ref 'OrganizationAggregationSourceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationAggregator/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname OrganizationAggregationSourceAllAwsRegions: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-allawsregions AllowedValues: - 'true' - 'false' Default: null OrganizationAggregationSourceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-rolearn Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' OrganizationAggregationSource: AllAwsRegions: !Ref 'OrganizationAggregationSourceAllAwsRegions' RoleArn: !Ref 'OrganizationAggregationSourceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationAggregator/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname Default: null OrganizationAggregationSourceAllAwsRegions: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-allawsregions AllowedValues: - 'true' - 'false' Default: null OrganizationAggregationSourceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-rolearn Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' OrganizationAggregationSource: AllAwsRegions: !Ref 'OrganizationAggregationSourceAllAwsRegions' RoleArn: !Ref 'OrganizationAggregationSourceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationAggregator/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname OrganizationAggregationSourceAllAwsRegions: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-allawsregions AllowedValues: - 'true' - 'false' Default: null OrganizationAggregationSourceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-rolearn Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' OrganizationAggregationSource: AllAwsRegions: !Ref 'OrganizationAggregationSourceAllAwsRegions' RoleArn: !Ref 'OrganizationAggregationSourceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationAggregator/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname OrganizationAggregationSourceAllAwsRegions: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-allawsregions AllowedValues: - 'true' - 'false' Default: null OrganizationAggregationSourceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-rolearn Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' OrganizationAggregationSource: AllAwsRegions: !Ref 'OrganizationAggregationSourceAllAwsRegions' RoleArn: !Ref 'OrganizationAggregationSourceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationAggregator/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname OrganizationAggregationSourceAllAwsRegions: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-allawsregions AllowedValues: - 'true' - 'false' Default: null OrganizationAggregationSourceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-rolearn Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' OrganizationAggregationSource: AllAwsRegions: !Ref 'OrganizationAggregationSourceAllAwsRegions' RoleArn: !Ref 'OrganizationAggregationSourceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationAggregator/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname OrganizationAggregationSourceAllAwsRegions: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-allawsregions AllowedValues: - 'true' - 'false' Default: null OrganizationAggregationSourceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-rolearn Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' OrganizationAggregationSource: AllAwsRegions: !Ref 'OrganizationAggregationSourceAllAwsRegions' RoleArn: !Ref 'OrganizationAggregationSourceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationAggregator/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname OrganizationAggregationSourceAllAwsRegions: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-allawsregions AllowedValues: - 'true' - 'false' Default: null OrganizationAggregationSourceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-rolearn Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' OrganizationAggregationSource: AllAwsRegions: !Ref 'OrganizationAggregationSourceAllAwsRegions' RoleArn: !Ref 'OrganizationAggregationSourceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationAggregator/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname OrganizationAggregationSourceAllAwsRegions: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-allawsregions AllowedValues: - 'true' - 'false' Default: null OrganizationAggregationSourceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationaggregator-organizationaggregationsource.html#cfn-config-configurationaggregator-organizationaggregationsource-rolearn Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' OrganizationAggregationSource: AllAwsRegions: !Ref 'OrganizationAggregationSourceAllAwsRegions' RoleArn: !Ref 'OrganizationAggregationSourceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConfigurationRecorder/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name Default: null RecordingGroupAllSupported: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported AllowedValues: - 'true' - 'false' Default: null RecordingGroupIncludeGlobalResourceTypes: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes AllowedValues: - 'true' - 'false' Default: null RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: Name: !Ref 'Name' RecordingGroup: AllSupported: !Ref 'RecordingGroupAllSupported' IncludeGlobalResourceTypes: !Ref 'RecordingGroupIncludeGlobalResourceTypes' RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-ConformancePack/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody Default: null TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri Default: null Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' TemplateBody: !Ref 'TemplateBody' TemplateS3Uri: !Ref 'TemplateS3Uri' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-DeliveryChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: ConfigSnapshotDeliveryPropertiesDeliveryFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name Default: null S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname S3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix Default: null SnsTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn Default: null Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: !Ref 'ConfigSnapshotDeliveryPropertiesDeliveryFrequency' Name: !Ref 'Name' S3BucketName: !Ref 'S3BucketName' S3KeyPrefix: !Ref 'S3KeyPrefix' SnsTopicARN: !Ref 'SnsTopicARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConfigRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationManagedRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagkeyscope Default: null OrganizationManagedRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-tagvaluescope Default: null OrganizationManagedRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-description Default: null OrganizationManagedRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-resourceidscope Default: null OrganizationManagedRuleMetadataRuleIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-ruleidentifier OrganizationManagedRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-maximumexecutionfrequency Default: null OrganizationManagedRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationmanagedrulemetadata.html#cfn-config-organizationconfigrule-organizationmanagedrulemetadata-inputparameters Default: null OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename OrganizationCustomRuleMetadataTagKeyScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagkeyscope Default: null OrganizationCustomRuleMetadataTagValueScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-tagvaluescope Default: null OrganizationCustomRuleMetadataDescription: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-description Default: null OrganizationCustomRuleMetadataResourceIdScope: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-resourceidscope Default: null OrganizationCustomRuleMetadataLambdaFunctionArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-lambdafunctionarn OrganizationCustomRuleMetadataMaximumExecutionFrequency: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-maximumexecutionfrequency Default: null OrganizationCustomRuleMetadataInputParameters: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-organizationconfigrule-organizationcustomrulemetadata.html#cfn-config-organizationconfigrule-organizationcustomrulemetadata-inputparameters Default: null Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationManagedRuleMetadata: TagKeyScope: !Ref 'OrganizationManagedRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationManagedRuleMetadataTagValueScope' Description: !Ref 'OrganizationManagedRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationManagedRuleMetadataResourceIdScope' RuleIdentifier: !Ref 'OrganizationManagedRuleMetadataRuleIdentifier' MaximumExecutionFrequency: !Ref 'OrganizationManagedRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationManagedRuleMetadataInputParameters' OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' OrganizationCustomRuleMetadata: TagKeyScope: !Ref 'OrganizationCustomRuleMetadataTagKeyScope' TagValueScope: !Ref 'OrganizationCustomRuleMetadataTagValueScope' Description: !Ref 'OrganizationCustomRuleMetadataDescription' ResourceIdScope: !Ref 'OrganizationCustomRuleMetadataResourceIdScope' LambdaFunctionArn: !Ref 'OrganizationCustomRuleMetadataLambdaFunctionArn' MaximumExecutionFrequency: !Ref 'OrganizationCustomRuleMetadataMaximumExecutionFrequency' InputParameters: !Ref 'OrganizationCustomRuleMetadataInputParameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-OrganizationConformancePack/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname TemplateS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri Default: null TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody Default: null DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket DeliveryS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix Default: null Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' TemplateS3Uri: !Ref 'TemplateS3Uri' TemplateBody: !Ref 'TemplateBody' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' DeliveryS3KeyPrefix: !Ref 'DeliveryS3KeyPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Config-RemediationConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetversion Default: null ExecutionControlsSsmControlsErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-errorpercentage Default: null ExecutionControlsSsmControlsConcurrentExecutionRatePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-remediationconfiguration-ssmcontrols.html#cfn-config-remediationconfiguration-ssmcontrols-concurrentexecutionratepercentage Default: null Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-parameters Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-resourcetype Default: null RetryAttemptSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-retryattemptseconds Default: null MaximumAutomaticAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-maximumautomaticattempts Default: null TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Automatic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-automatic AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetVersion: !Ref 'TargetVersion' ExecutionControls: SsmControls: ErrorPercentage: !Ref 'ExecutionControlsSsmControlsErrorPercentage' ConcurrentExecutionRatePercentage: !Ref 'ExecutionControlsSsmControlsConcurrentExecutionRatePercentage' Parameters: !Ref 'Parameters' TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' ResourceType: !Ref 'ResourceType' RetryAttemptSeconds: !Ref 'RetryAttemptSeconds' MaximumAutomaticAttempts: !Ref 'MaximumAutomaticAttempts' TargetId: !Ref 'TargetId' Automatic: !Ref 'Automatic' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-Cluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Parameters: SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dax-cluster-ssespecification.html#cfn-dax-cluster-ssespecification-sseenabled AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-description Default: null ReplicationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-replicationfactor ParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-parametergroupname Default: null IAMRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-iamrolearn SubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-subnetgroupname Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-preferredmaintenancewindow Default: null NotificationTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-notificationtopicarn Default: null NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-nodetype ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-clustername Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-tags Default: null Resources: Resource: Type: AWS::DAX::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Properties: SSESpecification: SSEEnabled: !Ref 'SSESpecificationSSEEnabled' Description: !Ref 'Description' ReplicationFactor: !Ref 'ReplicationFactor' ParameterGroupName: !Ref 'ParameterGroupName' IAMRoleARN: !Ref 'IAMRoleARN' SubnetGroupName: !Ref 'SubnetGroupName' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' NotificationTopicARN: !Ref 'NotificationTopicARN' NodeType: !Ref 'NodeType' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: ClusterDiscoveryEndpoint: Value: GetAtt: - Resource - ClusterDiscoveryEndpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-Cluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Parameters: SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dax-cluster-ssespecification.html#cfn-dax-cluster-ssespecification-sseenabled AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-description Default: null ReplicationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-replicationfactor ParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-parametergroupname Default: null IAMRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-iamrolearn SubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-subnetgroupname Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-preferredmaintenancewindow Default: null NotificationTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-notificationtopicarn Default: null NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-nodetype ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-clustername Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-tags Default: null Resources: Resource: Type: AWS::DAX::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Properties: SSESpecification: SSEEnabled: !Ref 'SSESpecificationSSEEnabled' Description: !Ref 'Description' ReplicationFactor: !Ref 'ReplicationFactor' ParameterGroupName: !Ref 'ParameterGroupName' IAMRoleARN: !Ref 'IAMRoleARN' SubnetGroupName: !Ref 'SubnetGroupName' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' NotificationTopicARN: !Ref 'NotificationTopicARN' NodeType: !Ref 'NodeType' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: ClusterDiscoveryEndpoint: Value: GetAtt: - Resource - ClusterDiscoveryEndpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-Cluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Parameters: SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dax-cluster-ssespecification.html#cfn-dax-cluster-ssespecification-sseenabled AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-description Default: null ReplicationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-replicationfactor ParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-parametergroupname Default: null IAMRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-iamrolearn SubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-subnetgroupname Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-preferredmaintenancewindow Default: null NotificationTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-notificationtopicarn Default: null NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-nodetype ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-clustername Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-tags Default: null Resources: Resource: Type: AWS::DAX::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Properties: SSESpecification: SSEEnabled: !Ref 'SSESpecificationSSEEnabled' Description: !Ref 'Description' ReplicationFactor: !Ref 'ReplicationFactor' ParameterGroupName: !Ref 'ParameterGroupName' IAMRoleARN: !Ref 'IAMRoleARN' SubnetGroupName: !Ref 'SubnetGroupName' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' NotificationTopicARN: !Ref 'NotificationTopicARN' NodeType: !Ref 'NodeType' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: ClusterDiscoveryEndpoint: Value: GetAtt: - Resource - ClusterDiscoveryEndpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-Cluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Parameters: SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dax-cluster-ssespecification.html#cfn-dax-cluster-ssespecification-sseenabled AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-description Default: null ReplicationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-replicationfactor ParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-parametergroupname Default: null IAMRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-iamrolearn SubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-subnetgroupname Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-preferredmaintenancewindow Default: null NotificationTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-notificationtopicarn Default: null NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-nodetype ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-clustername Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-tags Default: null Resources: Resource: Type: AWS::DAX::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Properties: SSESpecification: SSEEnabled: !Ref 'SSESpecificationSSEEnabled' Description: !Ref 'Description' ReplicationFactor: !Ref 'ReplicationFactor' ParameterGroupName: !Ref 'ParameterGroupName' IAMRoleARN: !Ref 'IAMRoleARN' SubnetGroupName: !Ref 'SubnetGroupName' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' NotificationTopicARN: !Ref 'NotificationTopicARN' NodeType: !Ref 'NodeType' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: ClusterDiscoveryEndpoint: Value: GetAtt: - Resource - ClusterDiscoveryEndpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-Cluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Parameters: SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dax-cluster-ssespecification.html#cfn-dax-cluster-ssespecification-sseenabled AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-description Default: null ReplicationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-replicationfactor ParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-parametergroupname Default: null IAMRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-iamrolearn SubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-subnetgroupname Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-preferredmaintenancewindow Default: null NotificationTopicARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-notificationtopicarn Default: null NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-nodetype ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-clustername Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-tags Default: null Resources: Resource: Type: AWS::DAX::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Properties: SSESpecification: SSEEnabled: !Ref 'SSESpecificationSSEEnabled' Description: !Ref 'Description' ReplicationFactor: !Ref 'ReplicationFactor' ParameterGroupName: !Ref 'ParameterGroupName' IAMRoleARN: !Ref 'IAMRoleARN' SubnetGroupName: !Ref 'SubnetGroupName' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' NotificationTopicARN: !Ref 'NotificationTopicARN' NodeType: !Ref 'NodeType' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: ClusterDiscoveryEndpoint: Value: GetAtt: - Resource - ClusterDiscoveryEndpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-ParameterGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Parameters: ParameterNameValues: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-parameternamevalues Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-description Default: null ParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-parametergroupname Default: null Resources: Resource: Type: AWS::DAX::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Properties: ParameterNameValues: !Ref 'ParameterNameValues' Description: !Ref 'Description' ParameterGroupName: !Ref 'ParameterGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-ParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Parameters: ParameterNameValues: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-parameternamevalues Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-description Default: null ParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-parametergroupname Default: null Resources: Resource: Type: AWS::DAX::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Properties: ParameterNameValues: !Ref 'ParameterNameValues' Description: !Ref 'Description' ParameterGroupName: !Ref 'ParameterGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-ParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Parameters: ParameterNameValues: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-parameternamevalues Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-description Default: null ParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-parametergroupname Default: null Resources: Resource: Type: AWS::DAX::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Properties: ParameterNameValues: !Ref 'ParameterNameValues' Description: !Ref 'Description' ParameterGroupName: !Ref 'ParameterGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-ParameterGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Parameters: ParameterNameValues: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-parameternamevalues Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-description Default: null ParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-parametergroupname Default: null Resources: Resource: Type: AWS::DAX::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Properties: ParameterNameValues: !Ref 'ParameterNameValues' Description: !Ref 'Description' ParameterGroupName: !Ref 'ParameterGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-ParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Parameters: ParameterNameValues: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-parameternamevalues Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-description Default: null ParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-parametergroupname Default: null Resources: Resource: Type: AWS::DAX::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Properties: ParameterNameValues: !Ref 'ParameterNameValues' Description: !Ref 'Description' ParameterGroupName: !Ref 'ParameterGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-SubnetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-description Default: null SubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-subnetgroupname Default: null Resources: Resource: Type: AWS::DAX::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Properties: Description: !Ref 'Description' SubnetGroupName: !Ref 'SubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-SubnetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-description Default: null SubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-subnetgroupname Default: null Resources: Resource: Type: AWS::DAX::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Properties: Description: !Ref 'Description' SubnetGroupName: !Ref 'SubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-SubnetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-description Default: null SubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-subnetgroupname Default: null Resources: Resource: Type: AWS::DAX::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Properties: Description: !Ref 'Description' SubnetGroupName: !Ref 'SubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-SubnetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-description Default: null SubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-subnetgroupname Default: null Resources: Resource: Type: AWS::DAX::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Properties: Description: !Ref 'Description' SubnetGroupName: !Ref 'SubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DAX-SubnetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-description Default: null SubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-subnetgroupname Default: null Resources: Resource: Type: AWS::DAX::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Properties: Description: !Ref 'Description' SubnetGroupName: !Ref 'SubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DLM-LifecyclePolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-executionrolearn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-description Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-state Default: null PolicyDetailsPolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-policydetails.html#cfn-dlm-lifecyclepolicy-policydetails-policytype Default: null PolicyDetailsParametersExcludeBootVolume: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-parameters.html#cfn-dlm-lifecyclepolicy-parameters-excludebootvolume AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Description: !Ref 'Description' State: !Ref 'State' PolicyDetails: PolicyType: !Ref 'PolicyDetailsPolicyType' Parameters: ExcludeBootVolume: !Ref 'PolicyDetailsParametersExcludeBootVolume' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DLM-LifecyclePolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-executionrolearn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-description Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-state Default: null PolicyDetailsPolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-policydetails.html#cfn-dlm-lifecyclepolicy-policydetails-policytype Default: null PolicyDetailsParametersExcludeBootVolume: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-parameters.html#cfn-dlm-lifecyclepolicy-parameters-excludebootvolume AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Description: !Ref 'Description' State: !Ref 'State' PolicyDetails: PolicyType: !Ref 'PolicyDetailsPolicyType' Parameters: ExcludeBootVolume: !Ref 'PolicyDetailsParametersExcludeBootVolume' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DLM-LifecyclePolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-executionrolearn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-description Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-state Default: null PolicyDetailsPolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-policydetails.html#cfn-dlm-lifecyclepolicy-policydetails-policytype Default: null PolicyDetailsParametersExcludeBootVolume: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-parameters.html#cfn-dlm-lifecyclepolicy-parameters-excludebootvolume AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Description: !Ref 'Description' State: !Ref 'State' PolicyDetails: PolicyType: !Ref 'PolicyDetailsPolicyType' Parameters: ExcludeBootVolume: !Ref 'PolicyDetailsParametersExcludeBootVolume' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DLM-LifecyclePolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-executionrolearn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-description Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-state Default: null PolicyDetailsPolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-policydetails.html#cfn-dlm-lifecyclepolicy-policydetails-policytype Default: null PolicyDetailsParametersExcludeBootVolume: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-parameters.html#cfn-dlm-lifecyclepolicy-parameters-excludebootvolume AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Description: !Ref 'Description' State: !Ref 'State' PolicyDetails: PolicyType: !Ref 'PolicyDetailsPolicyType' Parameters: ExcludeBootVolume: !Ref 'PolicyDetailsParametersExcludeBootVolume' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DLM-LifecyclePolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-executionrolearn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-description Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-state Default: null PolicyDetailsPolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-policydetails.html#cfn-dlm-lifecyclepolicy-policydetails-policytype Default: null PolicyDetailsParametersExcludeBootVolume: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-parameters.html#cfn-dlm-lifecyclepolicy-parameters-excludebootvolume AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Description: !Ref 'Description' State: !Ref 'State' PolicyDetails: PolicyType: !Ref 'PolicyDetailsPolicyType' Parameters: ExcludeBootVolume: !Ref 'PolicyDetailsParametersExcludeBootVolume' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DLM-LifecyclePolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-executionrolearn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-description Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-state Default: null PolicyDetailsPolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-policydetails.html#cfn-dlm-lifecyclepolicy-policydetails-policytype Default: null PolicyDetailsParametersExcludeBootVolume: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-parameters.html#cfn-dlm-lifecyclepolicy-parameters-excludebootvolume AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Description: !Ref 'Description' State: !Ref 'State' PolicyDetails: PolicyType: !Ref 'PolicyDetailsPolicyType' Parameters: ExcludeBootVolume: !Ref 'PolicyDetailsParametersExcludeBootVolume' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DLM-LifecyclePolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-executionrolearn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-description Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-state Default: null PolicyDetailsPolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-policydetails.html#cfn-dlm-lifecyclepolicy-policydetails-policytype Default: null PolicyDetailsParametersExcludeBootVolume: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-parameters.html#cfn-dlm-lifecyclepolicy-parameters-excludebootvolume AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Description: !Ref 'Description' State: !Ref 'State' PolicyDetails: PolicyType: !Ref 'PolicyDetailsPolicyType' Parameters: ExcludeBootVolume: !Ref 'PolicyDetailsParametersExcludeBootVolume' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DLM-LifecyclePolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-executionrolearn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-description Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-state Default: null PolicyDetailsPolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-policydetails.html#cfn-dlm-lifecyclepolicy-policydetails-policytype Default: null PolicyDetailsParametersExcludeBootVolume: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-parameters.html#cfn-dlm-lifecyclepolicy-parameters-excludebootvolume AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Description: !Ref 'Description' State: !Ref 'State' PolicyDetails: PolicyType: !Ref 'PolicyDetailsPolicyType' Parameters: ExcludeBootVolume: !Ref 'PolicyDetailsParametersExcludeBootVolume' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DLM-LifecyclePolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-executionrolearn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-description Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-state Default: null PolicyDetailsPolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-policydetails.html#cfn-dlm-lifecyclepolicy-policydetails-policytype Default: null PolicyDetailsParametersExcludeBootVolume: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-parameters.html#cfn-dlm-lifecyclepolicy-parameters-excludebootvolume AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Description: !Ref 'Description' State: !Ref 'State' PolicyDetails: PolicyType: !Ref 'PolicyDetailsPolicyType' Parameters: ExcludeBootVolume: !Ref 'PolicyDetailsParametersExcludeBootVolume' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DLM-LifecyclePolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-executionrolearn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-description Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-state Default: null PolicyDetailsPolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-policydetails.html#cfn-dlm-lifecyclepolicy-policydetails-policytype Default: null PolicyDetailsParametersExcludeBootVolume: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-parameters.html#cfn-dlm-lifecyclepolicy-parameters-excludebootvolume AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Description: !Ref 'Description' State: !Ref 'State' PolicyDetails: PolicyType: !Ref 'PolicyDetailsPolicyType' Parameters: ExcludeBootVolume: !Ref 'PolicyDetailsParametersExcludeBootVolume' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DLM-LifecyclePolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-executionrolearn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-description Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-state Default: null PolicyDetailsPolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-policydetails.html#cfn-dlm-lifecyclepolicy-policydetails-policytype Default: null PolicyDetailsParametersExcludeBootVolume: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-parameters.html#cfn-dlm-lifecyclepolicy-parameters-excludebootvolume AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Description: !Ref 'Description' State: !Ref 'State' PolicyDetails: PolicyType: !Ref 'PolicyDetailsPolicyType' Parameters: ExcludeBootVolume: !Ref 'PolicyDetailsParametersExcludeBootVolume' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DLM-LifecyclePolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-executionrolearn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-description Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-state Default: null PolicyDetailsPolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-policydetails.html#cfn-dlm-lifecyclepolicy-policydetails-policytype Default: null PolicyDetailsParametersExcludeBootVolume: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-parameters.html#cfn-dlm-lifecyclepolicy-parameters-excludebootvolume AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Description: !Ref 'Description' State: !Ref 'State' PolicyDetails: PolicyType: !Ref 'PolicyDetailsPolicyType' Parameters: ExcludeBootVolume: !Ref 'PolicyDetailsParametersExcludeBootVolume' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DLM-LifecyclePolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-executionrolearn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-description Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-state Default: null PolicyDetailsPolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-policydetails.html#cfn-dlm-lifecyclepolicy-policydetails-policytype Default: null PolicyDetailsParametersExcludeBootVolume: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-parameters.html#cfn-dlm-lifecyclepolicy-parameters-excludebootvolume AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Description: !Ref 'Description' State: !Ref 'State' PolicyDetails: PolicyType: !Ref 'PolicyDetailsPolicyType' Parameters: ExcludeBootVolume: !Ref 'PolicyDetailsParametersExcludeBootVolume' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DLM-LifecyclePolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-executionrolearn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-description Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html#cfn-dlm-lifecyclepolicy-state Default: null PolicyDetailsPolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-policydetails.html#cfn-dlm-lifecyclepolicy-policydetails-policytype Default: null PolicyDetailsParametersExcludeBootVolume: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-parameters.html#cfn-dlm-lifecyclepolicy-parameters-excludebootvolume AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Description: !Ref 'Description' State: !Ref 'State' PolicyDetails: PolicyType: !Ref 'PolicyDetailsPolicyType' Parameters: ExcludeBootVolume: !Ref 'PolicyDetailsParametersExcludeBootVolume' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Certificate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Parameters: CertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem Default: null CertificateWallet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet Default: null Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Properties: CertificateIdentifier: !Ref 'CertificateIdentifier' CertificatePem: !Ref 'CertificatePem' CertificateWallet: !Ref 'CertificateWallet' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-Endpoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid Default: null KafkaSettingsBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-broker Default: null KafkaSettingsTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kafkasettings.html#cfn-dms-endpoint-kafkasettings-topic Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename Default: null NeptuneSettingsMaxRetryCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxretrycount Default: null NeptuneSettingsMaxFileSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-maxfilesize Default: null NeptuneSettingsS3BucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketfolder Default: null NeptuneSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-errorretryduration Default: null NeptuneSettingsIamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-iamauthenabled AllowedValues: - 'true' - 'false' Default: null NeptuneSettingsS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-s3bucketname Default: null NeptuneSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-neptunesettings.html#cfn-dms-endpoint-neptunesettings-serviceaccessrolearn Default: null ElasticsearchSettingsEndpointUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-endpointuri Default: null ElasticsearchSettingsFullLoadErrorPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-fullloaderrorpercentage Default: null ElasticsearchSettingsErrorRetryDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-errorretryduration Default: null ElasticsearchSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-elasticsearchsettings.html#cfn-dms-endpoint-elasticsearchsettings-serviceaccessrolearn Default: null S3SettingsExternalTableDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition Default: null S3SettingsBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname Default: null S3SettingsBucketFolder: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder Default: null S3SettingsCsvRowDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter Default: null S3SettingsCsvDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter Default: null S3SettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn Default: null S3SettingsCompressionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype Default: null EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename DynamoDbSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn Default: null KinesisSettingsMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-messageformat Default: null KinesisSettingsStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-streamarn Default: null KinesisSettingsServiceAccessRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-kinesissettings.html#cfn-dms-endpoint-kinesissettings-serviceaccessrolearn Default: null Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username Default: null SslMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername Default: null ExtraConnectionAttributes: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes Default: null EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype EndpointIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier Default: null Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password Default: null CertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn Default: null MongoDbSettingsAuthSource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource Default: null MongoDbSettingsAuthMechanism: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism Default: null MongoDbSettingsUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username Default: null MongoDbSettingsDocsToInvestigate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate Default: null MongoDbSettingsServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername Default: null MongoDbSettingsPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port Default: null MongoDbSettingsExtractDocId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid Default: null MongoDbSettingsDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename Default: null MongoDbSettingsAuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype Default: null MongoDbSettingsPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password Default: null MongoDbSettingsNestingLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel Default: null Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: KmsKeyId: !Ref 'KmsKeyId' KafkaSettings: Broker: !Ref 'KafkaSettingsBroker' Topic: !Ref 'KafkaSettingsTopic' Port: !Ref 'Port' DatabaseName: !Ref 'DatabaseName' NeptuneSettings: MaxRetryCount: !Ref 'NeptuneSettingsMaxRetryCount' MaxFileSize: !Ref 'NeptuneSettingsMaxFileSize' S3BucketFolder: !Ref 'NeptuneSettingsS3BucketFolder' ErrorRetryDuration: !Ref 'NeptuneSettingsErrorRetryDuration' IamAuthEnabled: !Ref 'NeptuneSettingsIamAuthEnabled' S3BucketName: !Ref 'NeptuneSettingsS3BucketName' ServiceAccessRoleArn: !Ref 'NeptuneSettingsServiceAccessRoleArn' ElasticsearchSettings: EndpointUri: !Ref 'ElasticsearchSettingsEndpointUri' FullLoadErrorPercentage: !Ref 'ElasticsearchSettingsFullLoadErrorPercentage' ErrorRetryDuration: !Ref 'ElasticsearchSettingsErrorRetryDuration' ServiceAccessRoleArn: !Ref 'ElasticsearchSettingsServiceAccessRoleArn' S3Settings: ExternalTableDefinition: !Ref 'S3SettingsExternalTableDefinition' BucketName: !Ref 'S3SettingsBucketName' BucketFolder: !Ref 'S3SettingsBucketFolder' CsvRowDelimiter: !Ref 'S3SettingsCsvRowDelimiter' CsvDelimiter: !Ref 'S3SettingsCsvDelimiter' ServiceAccessRoleArn: !Ref 'S3SettingsServiceAccessRoleArn' CompressionType: !Ref 'S3SettingsCompressionType' EngineName: !Ref 'EngineName' DynamoDbSettings: ServiceAccessRoleArn: !Ref 'DynamoDbSettingsServiceAccessRoleArn' KinesisSettings: MessageFormat: !Ref 'KinesisSettingsMessageFormat' StreamArn: !Ref 'KinesisSettingsStreamArn' ServiceAccessRoleArn: !Ref 'KinesisSettingsServiceAccessRoleArn' Username: !Ref 'Username' SslMode: !Ref 'SslMode' ServerName: !Ref 'ServerName' ExtraConnectionAttributes: !Ref 'ExtraConnectionAttributes' EndpointType: !Ref 'EndpointType' EndpointIdentifier: !Ref 'EndpointIdentifier' Password: !Ref 'Password' CertificateArn: !Ref 'CertificateArn' MongoDbSettings: AuthSource: !Ref 'MongoDbSettingsAuthSource' AuthMechanism: !Ref 'MongoDbSettingsAuthMechanism' Username: !Ref 'MongoDbSettingsUsername' DocsToInvestigate: !Ref 'MongoDbSettingsDocsToInvestigate' ServerName: !Ref 'MongoDbSettingsServerName' Port: !Ref 'MongoDbSettingsPort' ExtractDocId: !Ref 'MongoDbSettingsExtractDocId' DatabaseName: !Ref 'MongoDbSettingsDatabaseName' AuthType: !Ref 'MongoDbSettingsAuthType' Password: !Ref 'MongoDbSettingsPassword' NestingLevel: !Ref 'MongoDbSettingsNestingLevel' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-EventSubscription/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SubscriptionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SourceType: !Ref 'SourceType' Enabled: !Ref 'Enabled' SubscriptionName: !Ref 'SubscriptionName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationInstance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier Default: null AllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceIdentifier: !Ref 'ReplicationInstanceIdentifier' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' PubliclyAccessible: !Ref 'PubliclyAccessible' MultiAZ: !Ref 'MultiAZ' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription ReplicationSubnetGroupIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier Default: null Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ReplicationSubnetGroupIdentifier: !Ref 'ReplicationSubnetGroupIdentifier' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DMS-ReplicationTask/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: ReplicationTaskSettings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings Default: null TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings CdcStartPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstartposition Default: null ReplicationTaskIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier Default: null CdcStopPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstopposition Default: null SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn TaskData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-taskdata Default: null CdcStartTime: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime Default: null Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: ReplicationTaskSettings: !Ref 'ReplicationTaskSettings' TableMappings: !Ref 'TableMappings' CdcStartPosition: !Ref 'CdcStartPosition' ReplicationTaskIdentifier: !Ref 'ReplicationTaskIdentifier' CdcStopPosition: !Ref 'CdcStopPosition' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' TaskData: !Ref 'TaskData' CdcStartTime: !Ref 'CdcStartTime' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DataPipeline-Pipeline/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Activate: !Ref 'Activate' Description: !Ref 'Description' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-Graph/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Detective-MemberInvitation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-message Default: null Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' Message: !Ref 'Message' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias AllowedValues: - 'true' - 'false' Default: null Edition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-edition Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname Default: null VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: CreateAlias: !Ref 'CreateAlias' Edition: !Ref 'Edition' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DirectoryService-SimpleAD/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: CreateAlias: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description Default: null EnableSso: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password ShortName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname Default: null Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: CreateAlias: !Ref 'CreateAlias' Description: !Ref 'Description' EnableSso: !Ref 'EnableSso' Name: !Ref 'Name' Password: !Ref 'Password' ShortName: !Ref 'ShortName' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBCluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredmaintenancewindow Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredbackupwindow Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-backupretentionperiod Default: null Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBCluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredmaintenancewindow Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredbackupwindow Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-backupretentionperiod Default: null Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBCluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredmaintenancewindow Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredbackupwindow Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-backupretentionperiod Default: null Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBCluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredmaintenancewindow Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredbackupwindow Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-backupretentionperiod Default: null Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBCluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredmaintenancewindow Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredbackupwindow Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-backupretentionperiod Default: null Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBCluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredmaintenancewindow Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredbackupwindow Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-backupretentionperiod Default: null Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBCluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredmaintenancewindow Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredbackupwindow Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-backupretentionperiod Default: null Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBCluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredmaintenancewindow Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredbackupwindow Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-backupretentionperiod Default: null Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBCluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredmaintenancewindow Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredbackupwindow Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-backupretentionperiod Default: null Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBCluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredmaintenancewindow Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-preferredbackupwindow Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-backupretentionperiod Default: null Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBInstance/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceidentifier Default: null Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBInstance/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceidentifier Default: null Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBInstance/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceidentifier Default: null Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBInstance/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceidentifier Default: null Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBInstance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceidentifier Default: null Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBInstance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceidentifier Default: null Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBInstance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceidentifier Default: null Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBInstance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceidentifier Default: null Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBInstance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceidentifier Default: null Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBInstance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceidentifier Default: null Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-DynamoDB-Table/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Parameters: BillingMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-billingmode Default: null PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-pointintimerecoveryspecification.html#cfn-dynamodb-table-pointintimerecoveryspecification-pointintimerecoveryenabled AllowedValues: - 'true' - 'false' Default: null ProvisionedThroughputReadCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits ProvisionedThroughputWriteCapacityUnits: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits SSESpecificationKMSMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-kmsmasterkeyid Default: null SSESpecificationSSEEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled AllowedValues: - 'true' - 'false' SSESpecificationSSEType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-ssetype Default: null StreamSpecificationStreamViewType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename Default: null TimeToLiveSpecificationAttributeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename TimeToLiveSpecificationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Properties: BillingMode: !Ref 'BillingMode' PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !Ref 'PointInTimeRecoverySpecificationPointInTimeRecoveryEnabled' ProvisionedThroughput: ReadCapacityUnits: !Ref 'ProvisionedThroughputReadCapacityUnits' WriteCapacityUnits: !Ref 'ProvisionedThroughputWriteCapacityUnits' SSESpecification: KMSMasterKeyId: !Ref 'SSESpecificationKMSMasterKeyId' SSEEnabled: !Ref 'SSESpecificationSSEEnabled' SSEType: !Ref 'SSESpecificationSSEType' StreamSpecification: StreamViewType: !Ref 'StreamSpecificationStreamViewType' TableName: !Ref 'TableName' TimeToLiveSpecification: AttributeName: !Ref 'TimeToLiveSpecificationAttributeName' Enabled: !Ref 'TimeToLiveSpecificationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CapacityReservation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-tenancy Default: null EndDateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddatetype Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype EphemeralStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ephemeralstorage AllowedValues: - 'true' - 'false' Default: null InstanceMatchCriteria: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancematchcriteria Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddate Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: Tenancy: !Ref 'Tenancy' EndDateType: !Ref 'EndDateType' InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' EphemeralStorage: !Ref 'EphemeralStorage' InstanceMatchCriteria: !Ref 'InstanceMatchCriteria' EndDate: !Ref 'EndDate' EbsOptimized: !Ref 'EbsOptimized' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CapacityReservation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-tenancy Default: null EndDateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddatetype Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype EphemeralStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ephemeralstorage AllowedValues: - 'true' - 'false' Default: null InstanceMatchCriteria: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancematchcriteria Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddate Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: Tenancy: !Ref 'Tenancy' EndDateType: !Ref 'EndDateType' InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' EphemeralStorage: !Ref 'EphemeralStorage' InstanceMatchCriteria: !Ref 'InstanceMatchCriteria' EndDate: !Ref 'EndDate' EbsOptimized: !Ref 'EbsOptimized' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CapacityReservation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-tenancy Default: null EndDateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddatetype Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype EphemeralStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ephemeralstorage AllowedValues: - 'true' - 'false' Default: null InstanceMatchCriteria: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancematchcriteria Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddate Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: Tenancy: !Ref 'Tenancy' EndDateType: !Ref 'EndDateType' InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' EphemeralStorage: !Ref 'EphemeralStorage' InstanceMatchCriteria: !Ref 'InstanceMatchCriteria' EndDate: !Ref 'EndDate' EbsOptimized: !Ref 'EbsOptimized' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CapacityReservation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-tenancy Default: null EndDateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddatetype Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype EphemeralStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ephemeralstorage AllowedValues: - 'true' - 'false' Default: null InstanceMatchCriteria: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancematchcriteria Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddate Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: Tenancy: !Ref 'Tenancy' EndDateType: !Ref 'EndDateType' InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' EphemeralStorage: !Ref 'EphemeralStorage' InstanceMatchCriteria: !Ref 'InstanceMatchCriteria' EndDate: !Ref 'EndDate' EbsOptimized: !Ref 'EbsOptimized' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CapacityReservation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-tenancy Default: null EndDateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddatetype Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype EphemeralStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ephemeralstorage AllowedValues: - 'true' - 'false' Default: null InstanceMatchCriteria: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancematchcriteria Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddate Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: Tenancy: !Ref 'Tenancy' EndDateType: !Ref 'EndDateType' InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' EphemeralStorage: !Ref 'EphemeralStorage' InstanceMatchCriteria: !Ref 'InstanceMatchCriteria' EndDate: !Ref 'EndDate' EbsOptimized: !Ref 'EbsOptimized' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CapacityReservation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-tenancy Default: null EndDateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddatetype Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype EphemeralStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ephemeralstorage AllowedValues: - 'true' - 'false' Default: null InstanceMatchCriteria: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancematchcriteria Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddate Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: Tenancy: !Ref 'Tenancy' EndDateType: !Ref 'EndDateType' InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' EphemeralStorage: !Ref 'EphemeralStorage' InstanceMatchCriteria: !Ref 'InstanceMatchCriteria' EndDate: !Ref 'EndDate' EbsOptimized: !Ref 'EbsOptimized' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CapacityReservation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-tenancy Default: null EndDateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddatetype Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype EphemeralStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ephemeralstorage AllowedValues: - 'true' - 'false' Default: null InstanceMatchCriteria: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancematchcriteria Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddate Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: Tenancy: !Ref 'Tenancy' EndDateType: !Ref 'EndDateType' InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' EphemeralStorage: !Ref 'EphemeralStorage' InstanceMatchCriteria: !Ref 'InstanceMatchCriteria' EndDate: !Ref 'EndDate' EbsOptimized: !Ref 'EbsOptimized' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CapacityReservation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-tenancy Default: null EndDateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddatetype Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype EphemeralStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ephemeralstorage AllowedValues: - 'true' - 'false' Default: null InstanceMatchCriteria: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancematchcriteria Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddate Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: Tenancy: !Ref 'Tenancy' EndDateType: !Ref 'EndDateType' InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' EphemeralStorage: !Ref 'EphemeralStorage' InstanceMatchCriteria: !Ref 'InstanceMatchCriteria' EndDate: !Ref 'EndDate' EbsOptimized: !Ref 'EbsOptimized' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CapacityReservation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-tenancy Default: null EndDateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddatetype Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype EphemeralStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ephemeralstorage AllowedValues: - 'true' - 'false' Default: null InstanceMatchCriteria: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancematchcriteria Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddate Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: Tenancy: !Ref 'Tenancy' EndDateType: !Ref 'EndDateType' InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' EphemeralStorage: !Ref 'EphemeralStorage' InstanceMatchCriteria: !Ref 'InstanceMatchCriteria' EndDate: !Ref 'EndDate' EbsOptimized: !Ref 'EbsOptimized' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CapacityReservation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-tenancy Default: null EndDateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddatetype Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype EphemeralStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ephemeralstorage AllowedValues: - 'true' - 'false' Default: null InstanceMatchCriteria: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancematchcriteria Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddate Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: Tenancy: !Ref 'Tenancy' EndDateType: !Ref 'EndDateType' InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' EphemeralStorage: !Ref 'EphemeralStorage' InstanceMatchCriteria: !Ref 'InstanceMatchCriteria' EndDate: !Ref 'EndDate' EbsOptimized: !Ref 'EbsOptimized' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CapacityReservation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-tenancy Default: null EndDateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddatetype Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype EphemeralStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ephemeralstorage AllowedValues: - 'true' - 'false' Default: null InstanceMatchCriteria: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancematchcriteria Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddate Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: Tenancy: !Ref 'Tenancy' EndDateType: !Ref 'EndDateType' InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' EphemeralStorage: !Ref 'EphemeralStorage' InstanceMatchCriteria: !Ref 'InstanceMatchCriteria' EndDate: !Ref 'EndDate' EbsOptimized: !Ref 'EbsOptimized' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CapacityReservation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-tenancy Default: null EndDateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddatetype Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype EphemeralStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ephemeralstorage AllowedValues: - 'true' - 'false' Default: null InstanceMatchCriteria: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancematchcriteria Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddate Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: Tenancy: !Ref 'Tenancy' EndDateType: !Ref 'EndDateType' InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' EphemeralStorage: !Ref 'EphemeralStorage' InstanceMatchCriteria: !Ref 'InstanceMatchCriteria' EndDate: !Ref 'EndDate' EbsOptimized: !Ref 'EbsOptimized' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CapacityReservation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-tenancy Default: null EndDateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddatetype Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype EphemeralStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ephemeralstorage AllowedValues: - 'true' - 'false' Default: null InstanceMatchCriteria: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancematchcriteria Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddate Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: Tenancy: !Ref 'Tenancy' EndDateType: !Ref 'EndDateType' InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' EphemeralStorage: !Ref 'EphemeralStorage' InstanceMatchCriteria: !Ref 'InstanceMatchCriteria' EndDate: !Ref 'EndDate' EbsOptimized: !Ref 'EbsOptimized' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CapacityReservation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-tenancy Default: null EndDateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddatetype Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype EphemeralStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ephemeralstorage AllowedValues: - 'true' - 'false' Default: null InstanceMatchCriteria: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancematchcriteria Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-enddate Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: Tenancy: !Ref 'Tenancy' EndDateType: !Ref 'EndDateType' InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' EphemeralStorage: !Ref 'EphemeralStorage' InstanceMatchCriteria: !Ref 'InstanceMatchCriteria' EndDate: !Ref 'EndDate' EbsOptimized: !Ref 'EbsOptimized' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description Default: null AccessGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid Default: null TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr AuthorizeAllGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' Description: !Ref 'Description' AccessGroupId: !Ref 'AccessGroupId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' AuthorizeAllGroups: !Ref 'AuthorizeAllGroups' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description Default: null AccessGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid Default: null TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr AuthorizeAllGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' Description: !Ref 'Description' AccessGroupId: !Ref 'AccessGroupId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' AuthorizeAllGroups: !Ref 'AuthorizeAllGroups' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description Default: null AccessGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid Default: null TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr AuthorizeAllGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' Description: !Ref 'Description' AccessGroupId: !Ref 'AccessGroupId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' AuthorizeAllGroups: !Ref 'AuthorizeAllGroups' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description Default: null AccessGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid Default: null TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr AuthorizeAllGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' Description: !Ref 'Description' AccessGroupId: !Ref 'AccessGroupId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' AuthorizeAllGroups: !Ref 'AuthorizeAllGroups' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description Default: null AccessGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid Default: null TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr AuthorizeAllGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' Description: !Ref 'Description' AccessGroupId: !Ref 'AccessGroupId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' AuthorizeAllGroups: !Ref 'AuthorizeAllGroups' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description Default: null AccessGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid Default: null TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr AuthorizeAllGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' Description: !Ref 'Description' AccessGroupId: !Ref 'AccessGroupId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' AuthorizeAllGroups: !Ref 'AuthorizeAllGroups' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description Default: null AccessGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid Default: null TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr AuthorizeAllGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' Description: !Ref 'Description' AccessGroupId: !Ref 'AccessGroupId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' AuthorizeAllGroups: !Ref 'AuthorizeAllGroups' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description Default: null AccessGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid Default: null TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr AuthorizeAllGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' Description: !Ref 'Description' AccessGroupId: !Ref 'AccessGroupId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' AuthorizeAllGroups: !Ref 'AuthorizeAllGroups' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description Default: null AccessGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid Default: null TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr AuthorizeAllGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' Description: !Ref 'Description' AccessGroupId: !Ref 'AccessGroupId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' AuthorizeAllGroups: !Ref 'AuthorizeAllGroups' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description Default: null AccessGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid Default: null TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr AuthorizeAllGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' Description: !Ref 'Description' AccessGroupId: !Ref 'AccessGroupId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' AuthorizeAllGroups: !Ref 'AuthorizeAllGroups' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description Default: null AccessGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid Default: null TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr AuthorizeAllGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' Description: !Ref 'Description' AccessGroupId: !Ref 'AccessGroupId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' AuthorizeAllGroups: !Ref 'AuthorizeAllGroups' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description Default: null AccessGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid Default: null TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr AuthorizeAllGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' Description: !Ref 'Description' AccessGroupId: !Ref 'AccessGroupId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' AuthorizeAllGroups: !Ref 'AuthorizeAllGroups' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description Default: null AccessGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid Default: null TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr AuthorizeAllGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' Description: !Ref 'Description' AccessGroupId: !Ref 'AccessGroupId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' AuthorizeAllGroups: !Ref 'AuthorizeAllGroups' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description Default: null AccessGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid Default: null TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr AuthorizeAllGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' Description: !Ref 'Description' AccessGroupId: !Ref 'AccessGroupId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' AuthorizeAllGroups: !Ref 'AuthorizeAllGroups' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsCloudwatchLogStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchlogstream Default: null ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ConnectionLogOptionsCloudwatchLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchloggroup Default: null SplitTunnel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-splittunnel AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-description Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpcid Default: null ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn TransportProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-transportprotocol Default: null VpnPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpnport Default: null Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: CloudwatchLogStream: !Ref 'ConnectionLogOptionsCloudwatchLogStream' Enabled: !Ref 'ConnectionLogOptionsEnabled' CloudwatchLogGroup: !Ref 'ConnectionLogOptionsCloudwatchLogGroup' SplitTunnel: !Ref 'SplitTunnel' Description: !Ref 'Description' VpcId: !Ref 'VpcId' ServerCertificateArn: !Ref 'ServerCertificateArn' TransportProtocol: !Ref 'TransportProtocol' VpnPort: !Ref 'VpnPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsCloudwatchLogStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchlogstream Default: null ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ConnectionLogOptionsCloudwatchLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchloggroup Default: null SplitTunnel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-splittunnel AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-description Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpcid Default: null ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn TransportProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-transportprotocol Default: null VpnPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpnport Default: null Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: CloudwatchLogStream: !Ref 'ConnectionLogOptionsCloudwatchLogStream' Enabled: !Ref 'ConnectionLogOptionsEnabled' CloudwatchLogGroup: !Ref 'ConnectionLogOptionsCloudwatchLogGroup' SplitTunnel: !Ref 'SplitTunnel' Description: !Ref 'Description' VpcId: !Ref 'VpcId' ServerCertificateArn: !Ref 'ServerCertificateArn' TransportProtocol: !Ref 'TransportProtocol' VpnPort: !Ref 'VpnPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsCloudwatchLogStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchlogstream Default: null ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ConnectionLogOptionsCloudwatchLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchloggroup Default: null SplitTunnel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-splittunnel AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-description Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpcid Default: null ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn TransportProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-transportprotocol Default: null VpnPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpnport Default: null Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: CloudwatchLogStream: !Ref 'ConnectionLogOptionsCloudwatchLogStream' Enabled: !Ref 'ConnectionLogOptionsEnabled' CloudwatchLogGroup: !Ref 'ConnectionLogOptionsCloudwatchLogGroup' SplitTunnel: !Ref 'SplitTunnel' Description: !Ref 'Description' VpcId: !Ref 'VpcId' ServerCertificateArn: !Ref 'ServerCertificateArn' TransportProtocol: !Ref 'TransportProtocol' VpnPort: !Ref 'VpnPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsCloudwatchLogStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchlogstream Default: null ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ConnectionLogOptionsCloudwatchLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchloggroup Default: null SplitTunnel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-splittunnel AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-description Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpcid Default: null ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn TransportProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-transportprotocol Default: null VpnPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpnport Default: null Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: CloudwatchLogStream: !Ref 'ConnectionLogOptionsCloudwatchLogStream' Enabled: !Ref 'ConnectionLogOptionsEnabled' CloudwatchLogGroup: !Ref 'ConnectionLogOptionsCloudwatchLogGroup' SplitTunnel: !Ref 'SplitTunnel' Description: !Ref 'Description' VpcId: !Ref 'VpcId' ServerCertificateArn: !Ref 'ServerCertificateArn' TransportProtocol: !Ref 'TransportProtocol' VpnPort: !Ref 'VpnPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsCloudwatchLogStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchlogstream Default: null ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ConnectionLogOptionsCloudwatchLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchloggroup Default: null SplitTunnel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-splittunnel AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-description Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpcid Default: null ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn TransportProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-transportprotocol Default: null VpnPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpnport Default: null Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: CloudwatchLogStream: !Ref 'ConnectionLogOptionsCloudwatchLogStream' Enabled: !Ref 'ConnectionLogOptionsEnabled' CloudwatchLogGroup: !Ref 'ConnectionLogOptionsCloudwatchLogGroup' SplitTunnel: !Ref 'SplitTunnel' Description: !Ref 'Description' VpcId: !Ref 'VpcId' ServerCertificateArn: !Ref 'ServerCertificateArn' TransportProtocol: !Ref 'TransportProtocol' VpnPort: !Ref 'VpnPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsCloudwatchLogStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchlogstream Default: null ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ConnectionLogOptionsCloudwatchLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchloggroup Default: null SplitTunnel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-splittunnel AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-description Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpcid Default: null ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn TransportProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-transportprotocol Default: null VpnPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpnport Default: null Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: CloudwatchLogStream: !Ref 'ConnectionLogOptionsCloudwatchLogStream' Enabled: !Ref 'ConnectionLogOptionsEnabled' CloudwatchLogGroup: !Ref 'ConnectionLogOptionsCloudwatchLogGroup' SplitTunnel: !Ref 'SplitTunnel' Description: !Ref 'Description' VpcId: !Ref 'VpcId' ServerCertificateArn: !Ref 'ServerCertificateArn' TransportProtocol: !Ref 'TransportProtocol' VpnPort: !Ref 'VpnPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsCloudwatchLogStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchlogstream Default: null ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ConnectionLogOptionsCloudwatchLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchloggroup Default: null SplitTunnel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-splittunnel AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-description Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpcid Default: null ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn TransportProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-transportprotocol Default: null VpnPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpnport Default: null Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: CloudwatchLogStream: !Ref 'ConnectionLogOptionsCloudwatchLogStream' Enabled: !Ref 'ConnectionLogOptionsEnabled' CloudwatchLogGroup: !Ref 'ConnectionLogOptionsCloudwatchLogGroup' SplitTunnel: !Ref 'SplitTunnel' Description: !Ref 'Description' VpcId: !Ref 'VpcId' ServerCertificateArn: !Ref 'ServerCertificateArn' TransportProtocol: !Ref 'TransportProtocol' VpnPort: !Ref 'VpnPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsCloudwatchLogStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchlogstream Default: null ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ConnectionLogOptionsCloudwatchLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchloggroup Default: null SplitTunnel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-splittunnel AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-description Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpcid Default: null ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn TransportProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-transportprotocol Default: null VpnPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpnport Default: null Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: CloudwatchLogStream: !Ref 'ConnectionLogOptionsCloudwatchLogStream' Enabled: !Ref 'ConnectionLogOptionsEnabled' CloudwatchLogGroup: !Ref 'ConnectionLogOptionsCloudwatchLogGroup' SplitTunnel: !Ref 'SplitTunnel' Description: !Ref 'Description' VpcId: !Ref 'VpcId' ServerCertificateArn: !Ref 'ServerCertificateArn' TransportProtocol: !Ref 'TransportProtocol' VpnPort: !Ref 'VpnPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsCloudwatchLogStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchlogstream Default: null ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ConnectionLogOptionsCloudwatchLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchloggroup Default: null SplitTunnel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-splittunnel AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-description Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpcid Default: null ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn TransportProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-transportprotocol Default: null VpnPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpnport Default: null Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: CloudwatchLogStream: !Ref 'ConnectionLogOptionsCloudwatchLogStream' Enabled: !Ref 'ConnectionLogOptionsEnabled' CloudwatchLogGroup: !Ref 'ConnectionLogOptionsCloudwatchLogGroup' SplitTunnel: !Ref 'SplitTunnel' Description: !Ref 'Description' VpcId: !Ref 'VpcId' ServerCertificateArn: !Ref 'ServerCertificateArn' TransportProtocol: !Ref 'TransportProtocol' VpnPort: !Ref 'VpnPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsCloudwatchLogStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchlogstream Default: null ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ConnectionLogOptionsCloudwatchLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchloggroup Default: null SplitTunnel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-splittunnel AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-description Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpcid Default: null ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn TransportProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-transportprotocol Default: null VpnPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpnport Default: null Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: CloudwatchLogStream: !Ref 'ConnectionLogOptionsCloudwatchLogStream' Enabled: !Ref 'ConnectionLogOptionsEnabled' CloudwatchLogGroup: !Ref 'ConnectionLogOptionsCloudwatchLogGroup' SplitTunnel: !Ref 'SplitTunnel' Description: !Ref 'Description' VpcId: !Ref 'VpcId' ServerCertificateArn: !Ref 'ServerCertificateArn' TransportProtocol: !Ref 'TransportProtocol' VpnPort: !Ref 'VpnPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsCloudwatchLogStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchlogstream Default: null ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ConnectionLogOptionsCloudwatchLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchloggroup Default: null SplitTunnel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-splittunnel AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-description Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpcid Default: null ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn TransportProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-transportprotocol Default: null VpnPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpnport Default: null Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: CloudwatchLogStream: !Ref 'ConnectionLogOptionsCloudwatchLogStream' Enabled: !Ref 'ConnectionLogOptionsEnabled' CloudwatchLogGroup: !Ref 'ConnectionLogOptionsCloudwatchLogGroup' SplitTunnel: !Ref 'SplitTunnel' Description: !Ref 'Description' VpcId: !Ref 'VpcId' ServerCertificateArn: !Ref 'ServerCertificateArn' TransportProtocol: !Ref 'TransportProtocol' VpnPort: !Ref 'VpnPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsCloudwatchLogStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchlogstream Default: null ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ConnectionLogOptionsCloudwatchLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchloggroup Default: null SplitTunnel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-splittunnel AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-description Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpcid Default: null ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn TransportProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-transportprotocol Default: null VpnPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpnport Default: null Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: CloudwatchLogStream: !Ref 'ConnectionLogOptionsCloudwatchLogStream' Enabled: !Ref 'ConnectionLogOptionsEnabled' CloudwatchLogGroup: !Ref 'ConnectionLogOptionsCloudwatchLogGroup' SplitTunnel: !Ref 'SplitTunnel' Description: !Ref 'Description' VpcId: !Ref 'VpcId' ServerCertificateArn: !Ref 'ServerCertificateArn' TransportProtocol: !Ref 'TransportProtocol' VpnPort: !Ref 'VpnPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsCloudwatchLogStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchlogstream Default: null ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ConnectionLogOptionsCloudwatchLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchloggroup Default: null SplitTunnel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-splittunnel AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-description Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpcid Default: null ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn TransportProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-transportprotocol Default: null VpnPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpnport Default: null Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: CloudwatchLogStream: !Ref 'ConnectionLogOptionsCloudwatchLogStream' Enabled: !Ref 'ConnectionLogOptionsEnabled' CloudwatchLogGroup: !Ref 'ConnectionLogOptionsCloudwatchLogGroup' SplitTunnel: !Ref 'SplitTunnel' Description: !Ref 'Description' VpcId: !Ref 'VpcId' ServerCertificateArn: !Ref 'ServerCertificateArn' TransportProtocol: !Ref 'TransportProtocol' VpnPort: !Ref 'VpnPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsCloudwatchLogStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchlogstream Default: null ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ConnectionLogOptionsCloudwatchLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-cloudwatchloggroup Default: null SplitTunnel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-splittunnel AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-description Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpcid Default: null ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn TransportProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-transportprotocol Default: null VpnPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-vpnport Default: null Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: CloudwatchLogStream: !Ref 'ConnectionLogOptionsCloudwatchLogStream' Enabled: !Ref 'ConnectionLogOptionsEnabled' CloudwatchLogGroup: !Ref 'ConnectionLogOptionsCloudwatchLogGroup' SplitTunnel: !Ref 'SplitTunnel' Description: !Ref 'Description' VpcId: !Ref 'VpcId' ServerCertificateArn: !Ref 'ServerCertificateArn' TransportProtocol: !Ref 'TransportProtocol' VpnPort: !Ref 'VpnPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnRoute/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-description Default: null DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' Description: !Ref 'Description' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnRoute/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-description Default: null DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' Description: !Ref 'Description' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnRoute/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-description Default: null DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' Description: !Ref 'Description' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnRoute/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-description Default: null DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' Description: !Ref 'Description' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnRoute/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-description Default: null DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' Description: !Ref 'Description' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnRoute/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-description Default: null DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' Description: !Ref 'Description' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnRoute/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-description Default: null DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' Description: !Ref 'Description' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnRoute/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-description Default: null DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' Description: !Ref 'Description' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnRoute/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-description Default: null DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' Description: !Ref 'Description' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnRoute/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-description Default: null DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' Description: !Ref 'Description' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnRoute/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-description Default: null DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' Description: !Ref 'Description' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnRoute/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-description Default: null DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' Description: !Ref 'Description' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnRoute/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-description Default: null DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' Description: !Ref 'Description' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnRoute/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-description Default: null DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' Description: !Ref 'Description' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-CustomerGateway/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-DHCPOptions/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-domainname Default: null NetbiosNodeType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html#cfn-ec2-dhcpoptions-netbiosnodetype Default: null Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Properties: DomainName: !Ref 'DomainName' NetbiosNodeType: !Ref 'NetbiosNodeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EC2Fleet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestDefaultTargetCapacityType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-defaulttargetcapacitytype Default: null TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity TargetCapacitySpecificationRequestOnDemandTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-ondemandtargetcapacity Default: null TargetCapacitySpecificationRequestSpotTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-spottargetcapacity Default: null OnDemandOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-allocationstrategy Default: null OnDemandOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null OnDemandOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-mintargetcapacity Default: null OnDemandOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ondemandoptionsrequest.html#cfn-ec2-ec2fleet-ondemandoptionsrequest-maxtotalprice Default: null OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityreservationoptionsrequest.html#cfn-ec2-ec2fleet-capacityreservationoptionsrequest-usagestrategy Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-type Default: null ExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-excesscapacityterminationpolicy Default: null SpotOptionsRequestSingleAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleavailabilityzone AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-allocationstrategy Default: null SpotOptionsRequestSingleInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-singleinstancetype AllowedValues: - 'true' - 'false' Default: null SpotOptionsRequestMinTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-mintargetcapacity Default: null SpotOptionsRequestMaxTotalPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-maxtotalprice Default: null SpotOptionsRequestInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instanceinterruptionbehavior Default: null SpotOptionsRequestInstancePoolsToUseCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-spotoptionsrequest.html#cfn-ec2-ec2fleet-spotoptionsrequest-instancepoolstousecount Default: null ValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validfrom Default: null ReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null TerminateInstancesWithExpiration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null ValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html#cfn-ec2-ec2fleet-validuntil Default: null Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: DefaultTargetCapacityType: !Ref 'TargetCapacitySpecificationRequestDefaultTargetCapacityType' TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' OnDemandTargetCapacity: !Ref 'TargetCapacitySpecificationRequestOnDemandTargetCapacity' SpotTargetCapacity: !Ref 'TargetCapacitySpecificationRequestSpotTargetCapacity' OnDemandOptions: SingleAvailabilityZone: !Ref 'OnDemandOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'OnDemandOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'OnDemandOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'OnDemandOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'OnDemandOptionsRequestMaxTotalPrice' CapacityReservationOptions: UsageStrategy: !Ref 'OnDemandOptionsRequestCapacityReservationOptionsRequestUsageStrategy' Type: !Ref 'Type' ExcessCapacityTerminationPolicy: !Ref 'ExcessCapacityTerminationPolicy' SpotOptions: SingleAvailabilityZone: !Ref 'SpotOptionsRequestSingleAvailabilityZone' AllocationStrategy: !Ref 'SpotOptionsRequestAllocationStrategy' SingleInstanceType: !Ref 'SpotOptionsRequestSingleInstanceType' MinTargetCapacity: !Ref 'SpotOptionsRequestMinTargetCapacity' MaxTotalPrice: !Ref 'SpotOptionsRequestMaxTotalPrice' InstanceInterruptionBehavior: !Ref 'SpotOptionsRequestInstanceInterruptionBehavior' InstancePoolsToUseCount: !Ref 'SpotOptionsRequestInstancePoolsToUseCount' ValidFrom: !Ref 'ValidFrom' ReplaceUnhealthyInstances: !Ref 'ReplaceUnhealthyInstances' TerminateInstancesWithExpiration: !Ref 'TerminateInstancesWithExpiration' ValidUntil: !Ref 'ValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIP/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Parameters: Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid Default: null PublicIpv4Pool: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool Default: null Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Properties: Domain: !Ref 'Domain' InstanceId: !Ref 'InstanceId' PublicIpv4Pool: !Ref 'PublicIpv4Pool' Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EIPAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-allocationid Default: null EIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-eip Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-instanceid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-networkinterfaceid Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html#cfn-ec2-eipassociation-PrivateIpAddress Default: null Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Properties: AllocationId: !Ref 'AllocationId' EIP: !Ref 'EIP' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' PrivateIpAddress: !Ref 'PrivateIpAddress' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-FlowLog/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: DeliverLogsPermissionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn Default: null LogDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestination Default: null LogDestinationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-logdestinationtype Default: null LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-loggroupname Default: null ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: DeliverLogsPermissionArn: !Ref 'DeliverLogsPermissionArn' LogDestination: !Ref 'LogDestination' LogDestinationType: !Ref 'LogDestinationType' LogGroupName: !Ref 'LogGroupName' ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Host/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AutoPlacement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone HostRecovery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AutoPlacement: !Ref 'AutoPlacement' AvailabilityZone: !Ref 'AvailabilityZone' HostRecovery: !Ref 'HostRecovery' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Instance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Parameters: AdditionalInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-additionalinfo Default: null Affinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-affinity Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-availabilityzone Default: null CpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-corecount Default: null CpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html#cfn-ec2-instance-cpuoptions-threadspercore Default: null CreditSpecificationCPUCredits: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html#cfn-ec2-instance-creditspecification-cpucredits Default: null DisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-disableapitermination AllowedValues: - 'true' - 'false' Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null HibernationOptionsConfigured: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null HostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostid Default: null HostResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-hostresourcegrouparn Default: null IamInstanceProfile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-iaminstanceprofile Default: null ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-imageid Default: null InstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instanceinitiatedshutdownbehavior Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ipv6addresscount Default: null KernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-kernelid Default: null KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-keyname Default: null LaunchTemplateSpecificationLaunchTemplateId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid Default: null LaunchTemplateSpecificationLaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename Default: null LaunchTemplateSpecificationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version Monitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-monitoring AllowedValues: - 'true' - 'false' Default: null PlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-placementgroupname Default: null PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-privateipaddress Default: null RamdiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-ramdiskid Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-tenancy Default: null UserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-userdata Default: null Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' Affinity: !Ref 'Affinity' AvailabilityZone: !Ref 'AvailabilityZone' CpuOptions: CoreCount: !Ref 'CpuOptionsCoreCount' ThreadsPerCore: !Ref 'CpuOptionsThreadsPerCore' CreditSpecification: CPUCredits: !Ref 'CreditSpecificationCPUCredits' DisableApiTermination: !Ref 'DisableApiTermination' EbsOptimized: !Ref 'EbsOptimized' HibernationOptions: Configured: !Ref 'HibernationOptionsConfigured' HostId: !Ref 'HostId' HostResourceGroupArn: !Ref 'HostResourceGroupArn' IamInstanceProfile: !Ref 'IamInstanceProfile' ImageId: !Ref 'ImageId' InstanceInitiatedShutdownBehavior: !Ref 'InstanceInitiatedShutdownBehavior' InstanceType: !Ref 'InstanceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' KernelId: !Ref 'KernelId' KeyName: !Ref 'KeyName' LaunchTemplate: LaunchTemplateId: !Ref 'LaunchTemplateSpecificationLaunchTemplateId' LaunchTemplateName: !Ref 'LaunchTemplateSpecificationLaunchTemplateName' Version: !Ref 'LaunchTemplateSpecificationVersion' Monitoring: !Ref 'Monitoring' PlacementGroupName: !Ref 'PlacementGroupName' PrivateIpAddress: !Ref 'PrivateIpAddress' RamdiskId: !Ref 'RamdiskId' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' UserData: !Ref 'UserData' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-InternetGateway/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LaunchTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Parameters: LaunchTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-launchtemplatename Default: null LaunchTemplateDataUserData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-userdata Default: null LaunchTemplateDataIamInstanceProfileArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-arn Default: null LaunchTemplateDataIamInstanceProfileName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile.html#cfn-ec2-launchtemplate-launchtemplatedata-iaminstanceprofile-name Default: null LaunchTemplateDataKernelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-kernelid Default: null LaunchTemplateDataEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ebsoptimized AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataPlacementGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-groupname Default: null LaunchTemplateDataPlacementTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-tenancy Default: null LaunchTemplateDataPlacementSpreadDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-spreaddomain Default: null LaunchTemplateDataPlacementPartitionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-partitionnumber Default: null LaunchTemplateDataPlacementAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-availabilityzone Default: null LaunchTemplateDataPlacementAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-affinity Default: null LaunchTemplateDataPlacementHostId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostid Default: null LaunchTemplateDataPlacementHostResourceGroupArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-placement.html#cfn-ec2-launchtemplate-launchtemplatedata-placement-hostresourcegrouparn Default: null LaunchTemplateDataImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-imageid Default: null LaunchTemplateDataInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instancetype Default: null LaunchTemplateDataMonitoringEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataHibernationOptionsConfigured: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-hibernationoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-hibernationoptions-configured AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpputresponsehoplimit Default: null LaunchTemplateDataMetadataOptionsHttpTokens: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httptokens Default: null LaunchTemplateDataMetadataOptionsHttpEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-metadataoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-metadataoptions-httpendpoint Default: null LaunchTemplateDataInstanceInitiatedShutdownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-instanceinitiatedshutdownbehavior Default: null LaunchTemplateDataCpuOptionsThreadsPerCore: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-threadspercore Default: null LaunchTemplateDataCpuOptionsCoreCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-cpuoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-cpuoptions-corecount Default: null LaunchTemplateDataKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-keyname Default: null LaunchTemplateDataDisableApiTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-disableapitermination AllowedValues: - 'true' - 'false' Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-spotinstancetype Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-instanceinterruptionbehavior Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-maxprice Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-blockdurationminutes Default: null LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-spotoptions-validuntil Default: null LaunchTemplateDataInstanceMarketOptionsMarketType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-instancemarketoptions.html#cfn-ec2-launchtemplate-launchtemplatedata-instancemarketoptions-markettype Default: null LaunchTemplateDataRamDiskId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-ramdiskid Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-capacityreservationspecification-capacityreservationpreference Default: null LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-capacityreservationtarget.html#cfn-ec2-launchtemplate-capacityreservationtarget-capacityreservationid Default: null LaunchTemplateDataCreditSpecificationCpuCredits: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-creditspecification.html#cfn-ec2-launchtemplate-launchtemplatedata-creditspecification-cpucredits Default: null Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Properties: LaunchTemplateName: !Ref 'LaunchTemplateName' LaunchTemplateData: UserData: !Ref 'LaunchTemplateDataUserData' IamInstanceProfile: Arn: !Ref 'LaunchTemplateDataIamInstanceProfileArn' Name: !Ref 'LaunchTemplateDataIamInstanceProfileName' KernelId: !Ref 'LaunchTemplateDataKernelId' EbsOptimized: !Ref 'LaunchTemplateDataEbsOptimized' Placement: GroupName: !Ref 'LaunchTemplateDataPlacementGroupName' Tenancy: !Ref 'LaunchTemplateDataPlacementTenancy' SpreadDomain: !Ref 'LaunchTemplateDataPlacementSpreadDomain' PartitionNumber: !Ref 'LaunchTemplateDataPlacementPartitionNumber' AvailabilityZone: !Ref 'LaunchTemplateDataPlacementAvailabilityZone' Affinity: !Ref 'LaunchTemplateDataPlacementAffinity' HostId: !Ref 'LaunchTemplateDataPlacementHostId' HostResourceGroupArn: !Ref 'LaunchTemplateDataPlacementHostResourceGroupArn' ImageId: !Ref 'LaunchTemplateDataImageId' InstanceType: !Ref 'LaunchTemplateDataInstanceType' Monitoring: Enabled: !Ref 'LaunchTemplateDataMonitoringEnabled' HibernationOptions: Configured: !Ref 'LaunchTemplateDataHibernationOptionsConfigured' MetadataOptions: HttpPutResponseHopLimit: !Ref 'LaunchTemplateDataMetadataOptionsHttpPutResponseHopLimit' HttpTokens: !Ref 'LaunchTemplateDataMetadataOptionsHttpTokens' HttpEndpoint: !Ref 'LaunchTemplateDataMetadataOptionsHttpEndpoint' InstanceInitiatedShutdownBehavior: !Ref 'LaunchTemplateDataInstanceInitiatedShutdownBehavior' CpuOptions: ThreadsPerCore: !Ref 'LaunchTemplateDataCpuOptionsThreadsPerCore' CoreCount: !Ref 'LaunchTemplateDataCpuOptionsCoreCount' KeyName: !Ref 'LaunchTemplateDataKeyName' DisableApiTermination: !Ref 'LaunchTemplateDataDisableApiTermination' InstanceMarketOptions: SpotOptions: SpotInstanceType: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsSpotInstanceType' InstanceInterruptionBehavior: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsInstanceInterruptionBehavior' MaxPrice: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsMaxPrice' BlockDurationMinutes: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsBlockDurationMinutes' ValidUntil: !Ref 'LaunchTemplateDataInstanceMarketOptionsSpotOptionsValidUntil' MarketType: !Ref 'LaunchTemplateDataInstanceMarketOptionsMarketType' RamDiskId: !Ref 'LaunchTemplateDataRamDiskId' CapacityReservationSpecification: CapacityReservationPreference: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationPreference' CapacityReservationTarget: CapacityReservationId: !Ref 'LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetCapacityReservationId' CreditSpecification: CpuCredits: !Ref 'LaunchTemplateDataCreditSpecificationCpuCredits' Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Tags: {} Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NatGateway/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAcl/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkAclEntry/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-cidrblock Default: null Egress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-egress AllowedValues: - 'true' - 'false' Default: null IcmpCode: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code Default: null IcmpType: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type Default: null Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ipv6cidrblock Default: null NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid PortRangeFrom: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-from Default: null PortRangeTo: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-portrange.html#cfn-ec2-networkaclentry-portrange-to Default: null Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: CidrBlock: !Ref 'CidrBlock' Egress: !Ref 'Egress' Icmp: Code: !Ref 'IcmpCode' Type: !Ref 'IcmpType' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' NetworkAclId: !Ref 'NetworkAclId' PortRange: From: !Ref 'PortRangeFrom' To: !Ref 'PortRangeTo' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterface/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-description Default: null InterfaceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-interfacetype Default: null Ipv6AddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-ec2-networkinterface-ipv6addresscount Default: null InstanceIpv6AddressIpv6Address: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html#cfn-ec2-networkinterface-instanceipv6address-ipv6address PrivateIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-privateipaddress Default: null SecondaryPrivateIpAddressCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-secondaryprivateipcount Default: null SourceDestCheck: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-sourcedestcheck AllowedValues: - 'true' - 'false' Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: Description: !Ref 'Description' InterfaceType: !Ref 'InterfaceType' Ipv6AddressCount: !Ref 'Ipv6AddressCount' Ipv6Addresses: Ipv6Address: !Ref 'InstanceIpv6AddressIpv6Address' PrivateIpAddress: !Ref 'PrivateIpAddress' SecondaryPrivateIpAddressCount: !Ref 'SecondaryPrivateIpAddressCount' SourceDestCheck: !Ref 'SourceDestCheck' SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeleteOnTermination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm AllowedValues: - 'true' - 'false' Default: null DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeleteOnTermination: !Ref 'DeleteOnTermination' DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PlacementGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Parameters: Strategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html#cfn-ec2-placementgroup-strategy Default: null Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Properties: Strategy: !Ref 'Strategy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-PrefixList/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Route/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationcidrblock Default: null DestinationIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-destinationipv6cidrblock Default: null EgressOnlyInternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-egressonlyinternetgatewayid Default: null GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-gatewayid Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-instanceid Default: null NatGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-natgatewayid Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-networkinterfaceid Default: null RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-transitgatewayid Default: null VpcPeeringConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-vpcpeeringconnectionid Default: null Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' DestinationIpv6CidrBlock: !Ref 'DestinationIpv6CidrBlock' EgressOnlyInternetGatewayId: !Ref 'EgressOnlyInternetGatewayId' GatewayId: !Ref 'GatewayId' InstanceId: !Ref 'InstanceId' NatGatewayId: !Ref 'NatGatewayId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' RouteTableId: !Ref 'RouteTableId' TransitGatewayId: !Ref 'TransitGatewayId' VpcPeeringConnectionId: !Ref 'VpcPeeringConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-RouteTable/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupname Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-vpcid Default: null Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' GroupName: !Ref 'GroupName' VpcId: !Ref 'VpcId' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-description Default: null DestinationPrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationprefixlistid Default: null DestinationSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' DestinationPrefixListId: !Ref 'DestinationPrefixListId' DestinationSecurityGroupId: !Ref 'DestinationSecurityGroupId' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: CidrIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidrip Default: null CidrIpv6: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-cidripv6 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-description Default: null FromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-fromport Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupid Default: null GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-groupname Default: null IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol SourcePrefixListId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-securitygroupingress-sourceprefixlistid Default: null SourceSecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupid Default: null SourceSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupname Default: null SourceSecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-sourcesecuritygroupownerid Default: null ToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-toport Default: null Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: CidrIp: !Ref 'CidrIp' CidrIpv6: !Ref 'CidrIpv6' Description: !Ref 'Description' FromPort: !Ref 'FromPort' GroupId: !Ref 'GroupId' GroupName: !Ref 'GroupName' IpProtocol: !Ref 'IpProtocol' SourcePrefixListId: !Ref 'SourcePrefixListId' SourceSecurityGroupId: !Ref 'SourceSecurityGroupId' SourceSecurityGroupName: !Ref 'SourceSecurityGroupName' SourceSecurityGroupOwnerId: !Ref 'SourceSecurityGroupOwnerId' ToPort: !Ref 'ToPort' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SpotFleet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataAllocationStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-allocationstrategy Default: null SpotFleetRequestConfigDataExcessCapacityTerminationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-excesscapacityterminationpolicy Default: null SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataInstanceInterruptionBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-instanceinterruptionbehavior Default: null SpotFleetRequestConfigDataReplaceUnhealthyInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-replaceunhealthyinstances AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataSpotPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-spotprice Default: null SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity SpotFleetRequestConfigDataTerminateInstancesWithExpiration: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-terminateinstanceswithexpiration AllowedValues: - 'true' - 'false' Default: null SpotFleetRequestConfigDataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-type Default: null SpotFleetRequestConfigDataValidFrom: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validfrom Default: null SpotFleetRequestConfigDataValidUntil: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-validuntil Default: null Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: AllocationStrategy: !Ref 'SpotFleetRequestConfigDataAllocationStrategy' ExcessCapacityTerminationPolicy: !Ref 'SpotFleetRequestConfigDataExcessCapacityTerminationPolicy' IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' InstanceInterruptionBehavior: !Ref 'SpotFleetRequestConfigDataInstanceInterruptionBehavior' LoadBalancersConfig: ClassicLoadBalancersConfig: {} TargetGroupsConfig: {} ReplaceUnhealthyInstances: !Ref 'SpotFleetRequestConfigDataReplaceUnhealthyInstances' SpotPrice: !Ref 'SpotFleetRequestConfigDataSpotPrice' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' TerminateInstancesWithExpiration: !Ref 'SpotFleetRequestConfigDataTerminateInstancesWithExpiration' Type: !Ref 'SpotFleetRequestConfigDataType' ValidFrom: !Ref 'SpotFleetRequestConfigDataValidFrom' ValidUntil: !Ref 'SpotFleetRequestConfigDataValidUntil' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Subnet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: AssignIpv6AddressOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-assignipv6addressoncreation AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-availabilityzone Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblock Default: null MapPublicIpOnLaunch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-mappubliciponlaunch AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: AssignIpv6AddressOnCreation: !Ref 'AssignIpv6AddressOnCreation' AvailabilityZone: !Ref 'AvailabilityZone' CidrBlock: !Ref 'CidrBlock' Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' MapPublicIpOnLaunch: !Ref 'MapPublicIpOnLaunch' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: TrafficMirrorPortRangeFromPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-fromport TrafficMirrorPortRangeToPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorportrange-toport Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-description Default: null RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-protocol Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: DestinationPortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' Description: !Ref 'Description' SourcePortRange: FromPort: !Ref 'TrafficMirrorPortRangeFromPort' ToPort: !Ref 'TrafficMirrorPortRangeToPort' RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-description Default: null SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber VirtualNetworkId: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-virtualnetworkid Default: null PacketLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-packetlength Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' Description: !Ref 'Description' SessionNumber: !Ref 'SessionNumber' VirtualNetworkId: !Ref 'VirtualNetworkId' PacketLength: !Ref 'PacketLength' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Parameters: NetworkLoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkloadbalancerarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-description Default: null NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html#cfn-ec2-trafficmirrortarget-networkinterfaceid Default: null Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Properties: NetworkLoadBalancerArn: !Ref 'NetworkLoadBalancerArn' Description: !Ref 'Description' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGateway/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Parameters: DefaultRouteTablePropagation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-description Default: null AutoAcceptSharedAttachments: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-autoacceptsharedattachments Default: null DefaultRouteTableAssociation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation Default: null VpnEcmpSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-vpnecmpsupport Default: null DnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-dnssupport Default: null AmazonSideAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-amazonsideasn Default: null Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Properties: DefaultRouteTablePropagation: !Ref 'DefaultRouteTablePropagation' Description: !Ref 'Description' AutoAcceptSharedAttachments: !Ref 'AutoAcceptSharedAttachments' DefaultRouteTableAssociation: !Ref 'DefaultRouteTableAssociation' VpnEcmpSupport: !Ref 'VpnEcmpSupport' DnsSupport: !Ref 'DnsSupport' AmazonSideAsn: !Ref 'AmazonSideAsn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-destinationcidrblock Default: null Blackhole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-blackhole AllowedValues: - 'true' - 'false' Default: null TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayattachmentid Default: null Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' Blackhole: !Ref 'Blackhole' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPC/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock EnableDnsHostnames: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsHostnames AllowedValues: - 'true' - 'false' Default: null EnableDnsSupport: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-EnableDnsSupport AllowedValues: - 'true' - 'false' Default: null InstanceTenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-instancetenancy Default: null Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' EnableDnsHostnames: !Ref 'EnableDnsHostnames' EnableDnsSupport: !Ref 'EnableDnsSupport' InstanceTenancy: !Ref 'InstanceTenancy' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCCidrBlock/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: AmazonProvidedIpv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-amazonprovidedipv6cidrblock AllowedValues: - 'true' - 'false' Default: null CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-cidrblock Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: AmazonProvidedIpv6CidrBlock: !Ref 'AmazonProvidedIpv6CidrBlock' CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument Default: null PrivateDnsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled AllowedValues: - 'true' - 'false' Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcEndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: PolicyDocument: !Ref 'PolicyDocument' PrivateDnsEnabled: !Ref 'PrivateDnsEnabled' ServiceName: !Ref 'ServiceName' VpcEndpointType: !Ref 'VpcEndpointType' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointConnectionNotification/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Parameters: VPCEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-vpcendpointid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-serviceid Default: null ConnectionNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-connectionnotificationarn Resources: Resource: Type: AWS::EC2::VPCEndpointConnectionNotification Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Properties: VPCEndpointId: !Ref 'VPCEndpointId' ServiceId: !Ref 'ServiceId' ConnectionNotificationArn: !Ref 'ConnectionNotificationArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointConnectionNotification/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Parameters: VPCEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-vpcendpointid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-serviceid Default: null ConnectionNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-connectionnotificationarn Resources: Resource: Type: AWS::EC2::VPCEndpointConnectionNotification Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Properties: VPCEndpointId: !Ref 'VPCEndpointId' ServiceId: !Ref 'ServiceId' ConnectionNotificationArn: !Ref 'ConnectionNotificationArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointConnectionNotification/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Parameters: VPCEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-vpcendpointid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-serviceid Default: null ConnectionNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-connectionnotificationarn Resources: Resource: Type: AWS::EC2::VPCEndpointConnectionNotification Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Properties: VPCEndpointId: !Ref 'VPCEndpointId' ServiceId: !Ref 'ServiceId' ConnectionNotificationArn: !Ref 'ConnectionNotificationArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointConnectionNotification/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Parameters: VPCEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-vpcendpointid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-serviceid Default: null ConnectionNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-connectionnotificationarn Resources: Resource: Type: AWS::EC2::VPCEndpointConnectionNotification Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Properties: VPCEndpointId: !Ref 'VPCEndpointId' ServiceId: !Ref 'ServiceId' ConnectionNotificationArn: !Ref 'ConnectionNotificationArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointService/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Parameters: AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Properties: AcceptanceRequired: !Ref 'AcceptanceRequired' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: InternetGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: InternetGatewayId: !Ref 'InternetGatewayId' VpcId: !Ref 'VpcId' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid Default: null PeerRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion Default: null PeerRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerOwnerId: !Ref 'PeerOwnerId' PeerRegion: !Ref 'PeerRegion' PeerRoleArn: !Ref 'PeerRoleArn' PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnection/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid StaticRoutesOnly: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-StaticRoutesOnly AllowedValues: - 'true' - 'false' Default: null TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-transitgatewayid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-vpngatewayid Default: null Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' StaticRoutesOnly: !Ref 'StaticRoutesOnly' TransitGatewayId: !Ref 'TransitGatewayId' Type: !Ref 'Type' VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGateway/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: AmazonSideAsn: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: AmazonSideAsn: !Ref 'AmazonSideAsn' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-Volume/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AutoEnableIO: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-autoenableio AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-encrypted AllowedValues: - 'true' - 'false' Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-kmskeyid Default: null MultiAttachEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-multiattachenabled AllowedValues: - 'true' - 'false' Default: null OutpostArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-outpostarn Default: null Size: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-size Default: null SnapshotId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-snapshotid Default: null VolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-volumetype Default: null Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AutoEnableIO: !Ref 'AutoEnableIO' AvailabilityZone: !Ref 'AvailabilityZone' Encrypted: !Ref 'Encrypted' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' MultiAttachEnabled: !Ref 'MultiAttachEnabled' OutpostArn: !Ref 'OutpostArn' Size: !Ref 'Size' SnapshotId: !Ref 'SnapshotId' VolumeType: !Ref 'VolumeType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EC2-VolumeAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECR-Repository/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Parameters: LifecyclePolicyLifecyclePolicyText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-lifecyclepolicytext Default: null LifecyclePolicyRegistryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html#cfn-ecr-repository-lifecyclepolicy-registryid Default: null RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositoryname Default: null RepositoryPolicyText: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-repositorypolicytext Default: null Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Properties: LifecyclePolicy: LifecyclePolicyText: !Ref 'LifecyclePolicyLifecyclePolicyText' RegistryId: !Ref 'LifecyclePolicyRegistryId' RepositoryName: !Ref 'RepositoryName' RepositoryPolicyText: !Ref 'RepositoryPolicyText' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-CapacityProvider/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn AutoScalingGroupProviderManagedScalingMinimumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-minimumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingMaximumScalingStepSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-maximumscalingstepsize Default: null AutoScalingGroupProviderManagedScalingStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-status Default: null AutoScalingGroupProviderManagedScalingTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedscaling.html#cfn-ecs-capacityprovider-managedscaling-targetcapacity Default: null AutoScalingGroupProviderManagedTerminationProtection: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-managedterminationprotection Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html#cfn-ecs-capacityprovider-name Default: null Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ManagedScaling: MinimumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMinimumScalingStepSize' MaximumScalingStepSize: !Ref 'AutoScalingGroupProviderManagedScalingMaximumScalingStepSize' Status: !Ref 'AutoScalingGroupProviderManagedScalingStatus' TargetCapacity: !Ref 'AutoScalingGroupProviderManagedScalingTargetCapacity' ManagedTerminationProtection: !Ref 'AutoScalingGroupProviderManagedTerminationProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Cluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Parameters: ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html#cfn-ecs-cluster-clustername Default: null Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Properties: ClusterName: !Ref 'ClusterName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-Service/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-cluster Default: null DeploymentConfigurationMaximumPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-maximumpercent Default: null DeploymentConfigurationMinimumHealthyPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html#cfn-ecs-service-deploymentconfiguration-minimumhealthypercent Default: null DeploymentControllerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html#cfn-ecs-service-deploymentcontroller-type Default: null DesiredCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-desiredcount Default: null EnableECSManagedTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableecsmanagedtags AllowedValues: - 'true' - 'false' Default: null HealthCheckGracePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-platformversion Default: null PropagateTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-propagatetags Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-role Default: null SchedulingStrategy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy Default: null ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicename Default: null TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-taskdefinition Default: null Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Properties: Cluster: !Ref 'Cluster' DeploymentConfiguration: MaximumPercent: !Ref 'DeploymentConfigurationMaximumPercent' MinimumHealthyPercent: !Ref 'DeploymentConfigurationMinimumHealthyPercent' DeploymentController: Type: !Ref 'DeploymentControllerType' DesiredCount: !Ref 'DesiredCount' EnableECSManagedTags: !Ref 'EnableECSManagedTags' HealthCheckGracePeriodSeconds: !Ref 'HealthCheckGracePeriodSeconds' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsvpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' PropagateTags: !Ref 'PropagateTags' Role: !Ref 'Role' SchedulingStrategy: !Ref 'SchedulingStrategy' ServiceName: !Ref 'ServiceName' TaskDefinition: !Ref 'TaskDefinition' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Parameters: Cpu: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-executionrolearn Default: null Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-family Default: null IpcMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-ipcmode Default: null Memory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory Default: null NetworkMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-networkmode Default: null PidMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-pidmode Default: null ProxyConfigurationContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-containername ProxyConfigurationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-proxyconfiguration.html#cfn-ecs-taskdefinition-proxyconfiguration-type Default: null TaskRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-taskrolearn Default: null Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Properties: Cpu: !Ref 'Cpu' ExecutionRoleArn: !Ref 'ExecutionRoleArn' Family: !Ref 'Family' IpcMode: !Ref 'IpcMode' Memory: !Ref 'Memory' NetworkMode: !Ref 'NetworkMode' PidMode: !Ref 'PidMode' ProxyConfiguration: ContainerName: !Ref 'ProxyConfigurationContainerName' Type: !Ref 'ProxyConfigurationType' TaskRoleArn: !Ref 'TaskRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ECS-TaskSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster ExternalId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-externalid Default: null LaunchType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-launchtype Default: null NetworkConfigurationAwsVpcConfigurationAssignPublicIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-awsvpcconfiguration.html#cfn-ecs-taskset-awsvpcconfiguration-assignpublicip Default: null PlatformVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-platformversion Default: null ScaleUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-unit Default: null ScaleValue: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html#cfn-ecs-taskset-scale-value Default: null Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' ExternalId: !Ref 'ExternalId' LaunchType: !Ref 'LaunchType' NetworkConfiguration: AwsVpcConfiguration: AssignPublicIp: !Ref 'NetworkConfigurationAwsVpcConfigurationAssignPublicIp' PlatformVersion: !Ref 'PlatformVersion' Scale: Unit: !Ref 'ScaleUnit' Value: !Ref 'ScaleValue' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-AccessPoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: ClientToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken Default: null FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid PosixUserUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-uid PosixUserGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.html#cfn-efs-accesspoint-posixuser-gid RootDirectoryPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-rootdirectory.html#cfn-efs-accesspoint-rootdirectory-path Default: null RootDirectoryCreationInfoOwnerUid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-owneruid RootDirectoryCreationInfoOwnerGid: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-ownergid RootDirectoryCreationInfoPermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-creationinfo.html#cfn-efs-accesspoint-creationinfo-permissions Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: ClientToken: !Ref 'ClientToken' FileSystemId: !Ref 'FileSystemId' PosixUser: Uid: !Ref 'PosixUserUid' Gid: !Ref 'PosixUserGid' RootDirectory: Path: !Ref 'RootDirectoryPath' CreationInfo: OwnerUid: !Ref 'RootDirectoryCreationInfoOwnerUid' OwnerGid: !Ref 'RootDirectoryCreationInfoOwnerGid' Permissions: !Ref 'RootDirectoryCreationInfoPermissions' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-elasticfilesystem-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-elasticfilesystem-filesystem-throughputmode Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-elasticfilesystem-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-elasticfilesystem-filesystem-throughputmode Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-elasticfilesystem-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-elasticfilesystem-filesystem-throughputmode Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-FileSystem/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Parameters: Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid Default: null PerformanceMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode Default: null ProvisionedThroughputInMibps: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-provisionedthroughputinmibps Default: null ThroughputMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-throughputmode Default: null FileSystemPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystempolicy Default: null Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Properties: Encrypted: !Ref 'Encrypted' KmsKeyId: !Ref 'KmsKeyId' PerformanceMode: !Ref 'PerformanceMode' ProvisionedThroughputInMibps: !Ref 'ProvisionedThroughputInMibps' ThroughputMode: !Ref 'ThroughputMode' FileSystemPolicy: !Ref 'FileSystemPolicy' Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EFS-MountTarget/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' IpAddress: !Ref 'IpAddress' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Cluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-version Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-name Default: null Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: Version: !Ref 'Version' RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Name: !Ref 'Name' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EKS-Nodegroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: ScalingConfigMinSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-minsize Default: null ScalingConfigDesiredSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-desiredsize Default: null ScalingConfigMaxSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-scalingconfig.html#cfn-eks-nodegroup-scalingconfig-maxsize Default: null Labels: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-labels Default: null ReleaseVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-releaseversion Default: null NodegroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-nodegroupname Default: null NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole AmiType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype Default: null ForceUpdateEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-forceupdateenabled AllowedValues: - 'true' - 'false' Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-version Default: null RemoteAccessEc2SshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey DiskSize: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-disksize Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-tags Default: null Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: ScalingConfig: MinSize: !Ref 'ScalingConfigMinSize' DesiredSize: !Ref 'ScalingConfigDesiredSize' MaxSize: !Ref 'ScalingConfigMaxSize' Labels: !Ref 'Labels' ReleaseVersion: !Ref 'ReleaseVersion' NodegroupName: !Ref 'NodegroupName' NodeRole: !Ref 'NodeRole' AmiType: !Ref 'AmiType' ForceUpdateEnabled: !Ref 'ForceUpdateEnabled' Version: !Ref 'Version' RemoteAccess: Ec2SshKey: !Ref 'RemoteAccessEc2SshKey' DiskSize: !Ref 'DiskSize' ClusterName: !Ref 'ClusterName' Tags: !Ref 'Tags' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Cluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: AdditionalInfo: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo Default: null AutoScalingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole Default: null CustomAmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid Default: null EbsRootVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize Default: null ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-blockdurationminutes Default: null JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutaction ? JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes : Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-spotprovisioningspecification.html#cfn-elasticmapreduce-cluster-spotprovisioningspecification-timeoutdurationminutes JobFlowInstancesConfigInstanceFleetConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name Default: null JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity Default: null JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity Default: null JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-maxcapacity JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingconstraints.html#cfn-elasticmapreduce-cluster-scalingconstraints-mincapacity JobFlowInstancesConfigInstanceGroupConfigBidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice Default: null JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsconfiguration.html#cfn-elasticmapreduce-cluster-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigInstanceGroupConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount JobFlowInstancesConfigInstanceGroupConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype JobFlowInstancesConfigInstanceGroupConfigMarket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market Default: null JobFlowInstancesConfigInstanceGroupConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name Default: null JobFlowInstancesConfigEc2KeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname Default: null JobFlowInstancesConfigEc2SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid Default: null JobFlowInstancesConfigEmrManagedMasterSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup Default: null JobFlowInstancesConfigEmrManagedSlaveSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup Default: null JobFlowInstancesConfigHadoopVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion Default: null JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-keepjobflowalivewhennosteps AllowedValues: - 'true' - 'false' Default: null JobFlowInstancesConfigPlacementTypeAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone JobFlowInstancesConfigServiceAccessSecurityGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup Default: null JobFlowInstancesConfigTerminationProtected: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected AllowedValues: - 'true' - 'false' Default: null JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole KerberosAttributesADDomainJoinPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinpassword Default: null KerberosAttributesADDomainJoinUser: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-addomainjoinuser Default: null KerberosAttributesCrossRealmTrustPrincipalPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-crossrealmtrustprincipalpassword Default: null KerberosAttributesKdcAdminPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-kdcadminpassword KerberosAttributesRealm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-kerberosattributes.html#cfn-elasticmapreduce-cluster-kerberosattributes-realm LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ReleaseLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel Default: null ScaleDownBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration Default: null ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole VisibleToAllUsers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: AdditionalInfo: !Ref 'AdditionalInfo' AutoScalingRole: !Ref 'AutoScalingRole' CustomAmiId: !Ref 'CustomAmiId' EbsRootVolumeSize: !Ref 'EbsRootVolumeSize' Instances: CoreInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' CoreInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Ec2KeyName: !Ref 'JobFlowInstancesConfigEc2KeyName' Ec2SubnetId: !Ref 'JobFlowInstancesConfigEc2SubnetId' EmrManagedMasterSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedMasterSecurityGroup' EmrManagedSlaveSecurityGroup: !Ref 'JobFlowInstancesConfigEmrManagedSlaveSecurityGroup' HadoopVersion: !Ref 'JobFlowInstancesConfigHadoopVersion' KeepJobFlowAliveWhenNoSteps: !Ref 'JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps' MasterInstanceFleet: LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'JobFlowInstancesConfigInstanceFleetConfigInstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'JobFlowInstancesConfigInstanceFleetConfigName' TargetOnDemandCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetOnDemandCapacity' TargetSpotCapacity: !Ref 'JobFlowInstancesConfigInstanceFleetConfigTargetSpotCapacity' MasterInstanceGroup: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'JobFlowInstancesConfigInstanceGroupConfigAutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'JobFlowInstancesConfigInstanceGroupConfigBidPrice' EbsConfiguration: EbsOptimized: !Ref 'JobFlowInstancesConfigInstanceGroupConfigEbsConfigurationEbsOptimized' InstanceCount: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceCount' InstanceType: !Ref 'JobFlowInstancesConfigInstanceGroupConfigInstanceType' Market: !Ref 'JobFlowInstancesConfigInstanceGroupConfigMarket' Name: !Ref 'JobFlowInstancesConfigInstanceGroupConfigName' Placement: AvailabilityZone: !Ref 'JobFlowInstancesConfigPlacementTypeAvailabilityZone' ServiceAccessSecurityGroup: !Ref 'JobFlowInstancesConfigServiceAccessSecurityGroup' TerminationProtected: !Ref 'JobFlowInstancesConfigTerminationProtected' JobFlowRole: !Ref 'JobFlowRole' KerberosAttributes: ADDomainJoinPassword: !Ref 'KerberosAttributesADDomainJoinPassword' ADDomainJoinUser: !Ref 'KerberosAttributesADDomainJoinUser' CrossRealmTrustPrincipalPassword: !Ref 'KerberosAttributesCrossRealmTrustPrincipalPassword' KdcAdminPassword: !Ref 'KerberosAttributesKdcAdminPassword' Realm: !Ref 'KerberosAttributesRealm' LogUri: !Ref 'LogUri' Name: !Ref 'Name' ReleaseLabel: !Ref 'ReleaseLabel' ScaleDownBehavior: !Ref 'ScaleDownBehavior' SecurityConfiguration: !Ref 'SecurityConfiguration' ServiceRole: !Ref 'ServiceRole' VisibleToAllUsers: !Ref 'VisibleToAllUsers' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes Default: null InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name Default: null TargetOnDemandCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity Default: null TargetSpotCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity Default: null Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' LaunchSpecifications: SpotSpecification: BlockDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationBlockDurationMinutes' TimeoutAction: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutAction' TimeoutDurationMinutes: !Ref 'InstanceFleetProvisioningSpecificationsSpotProvisioningSpecificationTimeoutDurationMinutes' Name: !Ref 'Name' TargetOnDemandCapacity: !Ref 'TargetOnDemandCapacity' TargetSpotCapacity: !Ref 'TargetSpotCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: AutoScalingPolicyScalingConstraintsMaxCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity AutoScalingPolicyScalingConstraintsMinCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity BidPrice: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice Default: null EbsConfigurationEbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized AllowedValues: - 'true' - 'false' Default: null InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Market: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name Default: null Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: AutoScalingPolicy: Constraints: MaxCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMaxCapacity' MinCapacity: !Ref 'AutoScalingPolicyScalingConstraintsMinCapacity' BidPrice: !Ref 'BidPrice' EbsConfiguration: EbsOptimized: !Ref 'EbsConfigurationEbsOptimized' InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' Market: !Ref 'Market' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-SecurityConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name Default: null SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: Name: !Ref 'Name' SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EMR-Step/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar HadoopJarStepConfigMainClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass Default: null JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' MainClass: !Ref 'HadoopJarStepConfigMainClass' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-CacheCluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: AZMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname Default: null ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn Default: null NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port Default: null PreferredAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow Default: null Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: AZMode: !Ref 'AZMode' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' ClusterName: !Ref 'ClusterName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheNodes: !Ref 'NumCacheNodes' Port: !Ref 'Port' PreferredAvailabilityZone: !Ref 'PreferredAvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: AtRestEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled AllowedValues: - 'true' - 'false' Default: null AuthToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomaticFailoverEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled AllowedValues: - 'true' - 'false' Default: null CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype Default: null CacheParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname Default: null CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-kmskeyid Default: null MultiAZEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-multiazenabled AllowedValues: - 'true' - 'false' Default: null NotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn Default: null NumCacheClusters: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters Default: null NumNodeGroups: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow Default: null PrimaryClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid Default: null ReplicasPerNodeGroup: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup Default: null ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription ReplicationGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid Default: null SnapshotName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname Default: null SnapshotRetentionLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit Default: null SnapshotWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow Default: null SnapshottingClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid Default: null TransitEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: AtRestEncryptionEnabled: !Ref 'AtRestEncryptionEnabled' AuthToken: !Ref 'AuthToken' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AutomaticFailoverEnabled: !Ref 'AutomaticFailoverEnabled' CacheNodeType: !Ref 'CacheNodeType' CacheParameterGroupName: !Ref 'CacheParameterGroupName' CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MultiAZEnabled: !Ref 'MultiAZEnabled' NotificationTopicArn: !Ref 'NotificationTopicArn' NumCacheClusters: !Ref 'NumCacheClusters' NumNodeGroups: !Ref 'NumNodeGroups' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PrimaryClusterId: !Ref 'PrimaryClusterId' ReplicasPerNodeGroup: !Ref 'ReplicasPerNodeGroup' ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' ReplicationGroupId: !Ref 'ReplicationGroupId' SnapshotName: !Ref 'SnapshotName' SnapshotRetentionLimit: !Ref 'SnapshotRetentionLimit' SnapshotWindow: !Ref 'SnapshotWindow' SnapshottingClusterId: !Ref 'SnapshottingClusterId' TransitEncryptionEnabled: !Ref 'TransitEncryptionEnabled' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: CacheSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: CacheSubnetGroupName: !Ref 'CacheSubnetGroupName' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Application/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description Default: null ApplicationResourceLifecycleConfigServiceRole: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' ResourceLifecycleConfig: ServiceRole: !Ref 'ApplicationResourceLifecycleConfigServiceRole' VersionLifecycleConfig: MaxAgeRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleEnabled' MaxAgeInDays: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxAgeRuleMaxAgeInDays' MaxCountRule: DeleteSourceFromS3: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleDeleteSourceFromS3' Enabled: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleEnabled' MaxCount: !Ref 'ApplicationResourceLifecycleConfigApplicationVersionLifecycleConfigMaxCountRuleMaxCount' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description Default: null SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description Default: null EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname Default: null SourceConfigurationApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname SourceConfigurationTemplateName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' Description: !Ref 'Description' EnvironmentId: !Ref 'EnvironmentId' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' SourceConfiguration: ApplicationName: !Ref 'SourceConfigurationApplicationName' TemplateName: !Ref 'SourceConfigurationTemplateName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname CNAMEPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description Default: null EnvironmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name Default: null PlatformArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn Default: null SolutionStackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename Default: null TierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name Default: null TierType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type Default: null TierVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version Default: null VersionLabel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel Default: null Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' CNAMEPrefix: !Ref 'CNAMEPrefix' Description: !Ref 'Description' EnvironmentName: !Ref 'EnvironmentName' PlatformArn: !Ref 'PlatformArn' SolutionStackName: !Ref 'SolutionStackName' TemplateName: !Ref 'TemplateName' Tier: Name: !Ref 'TierName' Type: !Ref 'TierType' Version: !Ref 'TierVersion' VersionLabel: !Ref 'VersionLabel' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Parameters: AccessLoggingPolicyEmitInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval Default: null AccessLoggingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled AllowedValues: - 'true' - 'false' AccessLoggingPolicyS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname AccessLoggingPolicyS3BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix Default: null ConnectionDrainingPolicyEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled AllowedValues: - 'true' - 'false' ConnectionDrainingPolicyTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout Default: null ConnectionSettingsIdleTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout CrossZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone AllowedValues: - 'true' - 'false' Default: null HealthCheckHealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold HealthCheckInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval HealthCheckTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target HealthCheckTimeout: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout HealthCheckUnhealthyThreshold: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold LoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme Default: null Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Properties: AccessLoggingPolicy: EmitInterval: !Ref 'AccessLoggingPolicyEmitInterval' Enabled: !Ref 'AccessLoggingPolicyEnabled' S3BucketName: !Ref 'AccessLoggingPolicyS3BucketName' S3BucketPrefix: !Ref 'AccessLoggingPolicyS3BucketPrefix' ConnectionDrainingPolicy: Enabled: !Ref 'ConnectionDrainingPolicyEnabled' Timeout: !Ref 'ConnectionDrainingPolicyTimeout' ConnectionSettings: IdleTimeout: !Ref 'ConnectionSettingsIdleTimeout' CrossZone: !Ref 'CrossZone' HealthCheck: HealthyThreshold: !Ref 'HealthCheckHealthyThreshold' Interval: !Ref 'HealthCheckInterval' Target: !Ref 'HealthCheckTarget' Timeout: !Ref 'HealthCheckTimeout' UnhealthyThreshold: !Ref 'HealthCheckUnhealthyThreshold' LoadBalancerName: !Ref 'LoadBalancerName' Scheme: !Ref 'Scheme' Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol SslPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' SslPolicy: !Ref 'SslPolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Parameters: IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name Default: null Scheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Properties: IpAddressType: !Ref 'IpAddressType' Name: !Ref 'Name' Scheme: !Ref 'Scheme' Type: !Ref 'Type' Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Parameters: HealthCheckEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled AllowedValues: - 'true' - 'false' Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath Default: null HealthCheckPort: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol Default: null HealthCheckTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds Default: null HealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount Default: null MatcherHttpCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol Default: null TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype Default: null UnhealthyThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid Default: null Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Properties: HealthCheckEnabled: !Ref 'HealthCheckEnabled' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckTimeoutSeconds: !Ref 'HealthCheckTimeoutSeconds' HealthyThresholdCount: !Ref 'HealthyThresholdCount' Matcher: HttpCode: !Ref 'MatcherHttpCode' Name: !Ref 'Name' Port: !Ref 'Port' Protocol: !Ref 'Protocol' TargetType: !Ref 'TargetType' UnhealthyThresholdCount: !Ref 'UnhealthyThresholdCount' VpcId: !Ref 'VpcId' Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Elasticsearch-Domain/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Parameters: AccessPolicies: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies Default: null AdvancedSecurityOptionsInputEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputInternalUserDatabaseEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled AllowedValues: - 'true' - 'false' Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserarn Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masterusername Default: null AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-masteruseroptions.html#cfn-elasticsearch-domain-masteruseroptions-masteruserpassword Default: null CognitoOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-enabled AllowedValues: - 'true' - 'false' Default: null CognitoOptionsIdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-identitypoolid Default: null CognitoOptionsRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-rolearn Default: null CognitoOptionsUserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-cognitooptions.html#cfn-elasticsearch-domain-cognitooptions-userpoolid Default: null DomainEndpointOptionsEnforceHTTPS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-enforcehttps AllowedValues: - 'true' - 'false' Default: null DomainEndpointOptionsTLSSecurityPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-domainendpointoptions.html#cfn-elasticsearch-domain-domainendpointoptions-tlssecuritypolicy Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname Default: null EBSOptionsEBSEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled AllowedValues: - 'true' - 'false' Default: null EBSOptionsIops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops Default: null EBSOptionsVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize Default: null EBSOptionsVolumeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype Default: null ElasticsearchClusterConfigDedicatedMasterCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount Default: null ElasticsearchClusterConfigDedicatedMasterEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchClusterConfigDedicatedMasterType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype Default: null ElasticsearchClusterConfigInstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount Default: null ElasticsearchClusterConfigInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype Default: null ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-zoneawarenessconfig.html#cfn-elasticsearch-domain-zoneawarenessconfig-availabilityzonecount Default: null ElasticsearchClusterConfigZoneAwarenessEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion Default: null EncryptionAtRestOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-enabled AllowedValues: - 'true' - 'false' Default: null EncryptionAtRestOptionsKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-encryptionatrestoptions.html#cfn-elasticsearch-domain-encryptionatrestoptions-kmskeyid Default: null NodeToNodeEncryptionOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-nodetonodeencryptionoptions.html#cfn-elasticsearch-domain-nodetonodeencryptionoptions-enabled AllowedValues: - 'true' - 'false' Default: null SnapshotOptionsAutomatedSnapshotStartHour: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour Default: null Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Properties: AccessPolicies: !Ref 'AccessPolicies' AdvancedSecurityOptions: Enabled: !Ref 'AdvancedSecurityOptionsInputEnabled' InternalUserDatabaseEnabled: !Ref 'AdvancedSecurityOptionsInputInternalUserDatabaseEnabled' MasterUserOptions: MasterUserARN: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserARN' MasterUserName: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserName' MasterUserPassword: !Ref 'AdvancedSecurityOptionsInputMasterUserOptionsMasterUserPassword' CognitoOptions: Enabled: !Ref 'CognitoOptionsEnabled' IdentityPoolId: !Ref 'CognitoOptionsIdentityPoolId' RoleArn: !Ref 'CognitoOptionsRoleArn' UserPoolId: !Ref 'CognitoOptionsUserPoolId' DomainEndpointOptions: EnforceHTTPS: !Ref 'DomainEndpointOptionsEnforceHTTPS' TLSSecurityPolicy: !Ref 'DomainEndpointOptionsTLSSecurityPolicy' DomainName: !Ref 'DomainName' EBSOptions: EBSEnabled: !Ref 'EBSOptionsEBSEnabled' Iops: !Ref 'EBSOptionsIops' VolumeSize: !Ref 'EBSOptionsVolumeSize' VolumeType: !Ref 'EBSOptionsVolumeType' ElasticsearchClusterConfig: DedicatedMasterCount: !Ref 'ElasticsearchClusterConfigDedicatedMasterCount' DedicatedMasterEnabled: !Ref 'ElasticsearchClusterConfigDedicatedMasterEnabled' DedicatedMasterType: !Ref 'ElasticsearchClusterConfigDedicatedMasterType' InstanceCount: !Ref 'ElasticsearchClusterConfigInstanceCount' InstanceType: !Ref 'ElasticsearchClusterConfigInstanceType' ZoneAwarenessConfig: AvailabilityZoneCount: !Ref 'ElasticsearchClusterConfigZoneAwarenessConfigAvailabilityZoneCount' ZoneAwarenessEnabled: !Ref 'ElasticsearchClusterConfigZoneAwarenessEnabled' ElasticsearchVersion: !Ref 'ElasticsearchVersion' EncryptionAtRestOptions: Enabled: !Ref 'EncryptionAtRestOptionsEnabled' KmsKeyId: !Ref 'EncryptionAtRestOptionsKmsKeyId' NodeToNodeEncryptionOptions: Enabled: !Ref 'NodeToNodeEncryptionOptionsEnabled' SnapshotOptions: AutomatedSnapshotStartHour: !Ref 'SnapshotOptionsAutomatedSnapshotStartHour' VPCOptions: {} Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Discoverer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-description Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-sourcearn Resources: Resource: Type: AWS::EventSchemas::Discoverer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Properties: Description: !Ref 'Description' SourceArn: !Ref 'SourceArn' Outputs: DiscovererArn: Value: GetAtt: - Resource - DiscovererArn DiscovererId: Value: GetAtt: - Resource - DiscovererId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Discoverer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-description Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-sourcearn Resources: Resource: Type: AWS::EventSchemas::Discoverer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Properties: Description: !Ref 'Description' SourceArn: !Ref 'SourceArn' Outputs: DiscovererArn: Value: GetAtt: - Resource - DiscovererArn DiscovererId: Value: GetAtt: - Resource - DiscovererId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Discoverer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-description Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-sourcearn Resources: Resource: Type: AWS::EventSchemas::Discoverer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Properties: Description: !Ref 'Description' SourceArn: !Ref 'SourceArn' Outputs: DiscovererArn: Value: GetAtt: - Resource - DiscovererArn DiscovererId: Value: GetAtt: - Resource - DiscovererId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Discoverer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-description Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-sourcearn Resources: Resource: Type: AWS::EventSchemas::Discoverer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Properties: Description: !Ref 'Description' SourceArn: !Ref 'SourceArn' Outputs: DiscovererArn: Value: GetAtt: - Resource - DiscovererArn DiscovererId: Value: GetAtt: - Resource - DiscovererId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Discoverer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-description Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-sourcearn Resources: Resource: Type: AWS::EventSchemas::Discoverer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Properties: Description: !Ref 'Description' SourceArn: !Ref 'SourceArn' Outputs: DiscovererArn: Value: GetAtt: - Resource - DiscovererArn DiscovererId: Value: GetAtt: - Resource - DiscovererId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Registry/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-description Default: null RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-registryname Default: null Resources: Resource: Type: AWS::EventSchemas::Registry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Properties: Description: !Ref 'Description' RegistryName: !Ref 'RegistryName' Outputs: RegistryName: Value: GetAtt: - Resource - RegistryName RegistryArn: Value: GetAtt: - Resource - RegistryArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Registry/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-description Default: null RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-registryname Default: null Resources: Resource: Type: AWS::EventSchemas::Registry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Properties: Description: !Ref 'Description' RegistryName: !Ref 'RegistryName' Outputs: RegistryName: Value: GetAtt: - Resource - RegistryName RegistryArn: Value: GetAtt: - Resource - RegistryArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Registry/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-description Default: null RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-registryname Default: null Resources: Resource: Type: AWS::EventSchemas::Registry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Properties: Description: !Ref 'Description' RegistryName: !Ref 'RegistryName' Outputs: RegistryName: Value: GetAtt: - Resource - RegistryName RegistryArn: Value: GetAtt: - Resource - RegistryArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Registry/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-description Default: null RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-registryname Default: null Resources: Resource: Type: AWS::EventSchemas::Registry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Properties: Description: !Ref 'Description' RegistryName: !Ref 'RegistryName' Outputs: RegistryName: Value: GetAtt: - Resource - RegistryName RegistryArn: Value: GetAtt: - Resource - RegistryArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Registry/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-description Default: null RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-registryname Default: null Resources: Resource: Type: AWS::EventSchemas::Registry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Properties: Description: !Ref 'Description' RegistryName: !Ref 'RegistryName' Outputs: RegistryName: Value: GetAtt: - Resource - RegistryName RegistryArn: Value: GetAtt: - Resource - RegistryArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname RevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid Default: null Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' RevisionId: !Ref 'RevisionId' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Schema/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-description Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-content RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-registryname SchemaName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-schemaname Default: null Resources: Resource: Type: AWS::EventSchemas::Schema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Content: !Ref 'Content' RegistryName: !Ref 'RegistryName' SchemaName: !Ref 'SchemaName' Outputs: SchemaVersion: Value: GetAtt: - Resource - SchemaVersion SchemaArn: Value: GetAtt: - Resource - SchemaArn SchemaName: Value: GetAtt: - Resource - SchemaName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Schema/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-description Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-content RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-registryname SchemaName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-schemaname Default: null Resources: Resource: Type: AWS::EventSchemas::Schema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Content: !Ref 'Content' RegistryName: !Ref 'RegistryName' SchemaName: !Ref 'SchemaName' Outputs: SchemaVersion: Value: GetAtt: - Resource - SchemaVersion SchemaArn: Value: GetAtt: - Resource - SchemaArn SchemaName: Value: GetAtt: - Resource - SchemaName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Schema/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-description Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-content RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-registryname SchemaName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-schemaname Default: null Resources: Resource: Type: AWS::EventSchemas::Schema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Content: !Ref 'Content' RegistryName: !Ref 'RegistryName' SchemaName: !Ref 'SchemaName' Outputs: SchemaVersion: Value: GetAtt: - Resource - SchemaVersion SchemaArn: Value: GetAtt: - Resource - SchemaArn SchemaName: Value: GetAtt: - Resource - SchemaName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Schema/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-description Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-content RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-registryname SchemaName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-schemaname Default: null Resources: Resource: Type: AWS::EventSchemas::Schema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Content: !Ref 'Content' RegistryName: !Ref 'RegistryName' SchemaName: !Ref 'SchemaName' Outputs: SchemaVersion: Value: GetAtt: - Resource - SchemaVersion SchemaArn: Value: GetAtt: - Resource - SchemaArn SchemaName: Value: GetAtt: - Resource - SchemaName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-EventSchemas-Schema/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-description Default: null Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-content RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-registryname SchemaName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-schemaname Default: null Resources: Resource: Type: AWS::EventSchemas::Schema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Content: !Ref 'Content' RegistryName: !Ref 'RegistryName' SchemaName: !Ref 'SchemaName' Outputs: SchemaVersion: Value: GetAtt: - Resource - SchemaVersion SchemaArn: Value: GetAtt: - Resource - SchemaArn SchemaName: Value: GetAtt: - Resource - SchemaName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBus/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: EventSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: EventSourceName: !Ref 'EventSourceName' Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-EventBusPolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname Default: null ConditionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type Default: null ConditionValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value Default: null ConditionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: EventBusName: !Ref 'EventBusName' Condition: Type: !Ref 'ConditionType' Value: !Ref 'ConditionValue' Key: !Ref 'ConditionKey' Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Events-Rule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description Default: null EventBusName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname Default: null EventPattern: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression Default: null State: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state Default: null Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Properties: Description: !Ref 'Description' EventBusName: !Ref 'EventBusName' EventPattern: !Ref 'EventPattern' Name: !Ref 'Name' RoleArn: !Ref 'RoleArn' ScheduleExpression: !Ref 'ScheduleExpression' State: !Ref 'State' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-NotificationChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FMS-Policy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata DeleteAllPolicyResources: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-deleteallpolicyresources AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeMap: {} ExcludeResourceTags: !Ref 'ExcludeResourceTags' IncludeMap: {} PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' DeleteAllPolicyResources: !Ref 'DeleteAllPolicyResources' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FSx-FileSystem/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagetype Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-kmskeyid Default: null StorageCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagecapacity Default: null FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype LustreConfigurationImportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importpath Default: null LustreConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-weeklymaintenancestarttime Default: null LustreConfigurationImportedFileChunkSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importedfilechunksize Default: null LustreConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-deploymenttype Default: null LustreConfigurationExportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-exportpath Default: null LustreConfigurationPerUnitStorageThroughput: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-perunitstoragethroughput Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-backupid Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-filesystemadministratorsgroup Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-username Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-domainname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-organizationalunitdistinguishedname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-password Default: null WindowsConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-weeklymaintenancestarttime Default: null WindowsConfigurationActiveDirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-activedirectoryid Default: null WindowsConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-deploymenttype Default: null WindowsConfigurationThroughputCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-throughputcapacity Default: null WindowsConfigurationCopyTagsToBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-copytagstobackups AllowedValues: - 'true' - 'false' Default: null WindowsConfigurationDailyAutomaticBackupStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-dailyautomaticbackupstarttime Default: null WindowsConfigurationAutomaticBackupRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-automaticbackupretentiondays Default: null WindowsConfigurationPreferredSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-preferredsubnetid Default: null Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: StorageType: !Ref 'StorageType' KmsKeyId: !Ref 'KmsKeyId' StorageCapacity: !Ref 'StorageCapacity' FileSystemType: !Ref 'FileSystemType' LustreConfiguration: ImportPath: !Ref 'LustreConfigurationImportPath' WeeklyMaintenanceStartTime: !Ref 'LustreConfigurationWeeklyMaintenanceStartTime' ImportedFileChunkSize: !Ref 'LustreConfigurationImportedFileChunkSize' DeploymentType: !Ref 'LustreConfigurationDeploymentType' ExportPath: !Ref 'LustreConfigurationExportPath' PerUnitStorageThroughput: !Ref 'LustreConfigurationPerUnitStorageThroughput' BackupId: !Ref 'BackupId' WindowsConfiguration: SelfManagedActiveDirectoryConfiguration: FileSystemAdministratorsGroup: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup' UserName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName' DomainName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName' OrganizationalUnitDistinguishedName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName' Password: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword' WeeklyMaintenanceStartTime: !Ref 'WindowsConfigurationWeeklyMaintenanceStartTime' ActiveDirectoryId: !Ref 'WindowsConfigurationActiveDirectoryId' DeploymentType: !Ref 'WindowsConfigurationDeploymentType' ThroughputCapacity: !Ref 'WindowsConfigurationThroughputCapacity' CopyTagsToBackups: !Ref 'WindowsConfigurationCopyTagsToBackups' DailyAutomaticBackupStartTime: !Ref 'WindowsConfigurationDailyAutomaticBackupStartTime' AutomaticBackupRetentionDays: !Ref 'WindowsConfigurationAutomaticBackupRetentionDays' PreferredSubnetId: !Ref 'WindowsConfigurationPreferredSubnetId' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FSx-FileSystem/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagetype Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-kmskeyid Default: null StorageCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagecapacity Default: null FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype LustreConfigurationImportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importpath Default: null LustreConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-weeklymaintenancestarttime Default: null LustreConfigurationImportedFileChunkSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importedfilechunksize Default: null LustreConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-deploymenttype Default: null LustreConfigurationExportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-exportpath Default: null LustreConfigurationPerUnitStorageThroughput: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-perunitstoragethroughput Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-backupid Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-filesystemadministratorsgroup Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-username Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-domainname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-organizationalunitdistinguishedname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-password Default: null WindowsConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-weeklymaintenancestarttime Default: null WindowsConfigurationActiveDirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-activedirectoryid Default: null WindowsConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-deploymenttype Default: null WindowsConfigurationThroughputCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-throughputcapacity Default: null WindowsConfigurationCopyTagsToBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-copytagstobackups AllowedValues: - 'true' - 'false' Default: null WindowsConfigurationDailyAutomaticBackupStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-dailyautomaticbackupstarttime Default: null WindowsConfigurationAutomaticBackupRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-automaticbackupretentiondays Default: null WindowsConfigurationPreferredSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-preferredsubnetid Default: null Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: StorageType: !Ref 'StorageType' KmsKeyId: !Ref 'KmsKeyId' StorageCapacity: !Ref 'StorageCapacity' FileSystemType: !Ref 'FileSystemType' LustreConfiguration: ImportPath: !Ref 'LustreConfigurationImportPath' WeeklyMaintenanceStartTime: !Ref 'LustreConfigurationWeeklyMaintenanceStartTime' ImportedFileChunkSize: !Ref 'LustreConfigurationImportedFileChunkSize' DeploymentType: !Ref 'LustreConfigurationDeploymentType' ExportPath: !Ref 'LustreConfigurationExportPath' PerUnitStorageThroughput: !Ref 'LustreConfigurationPerUnitStorageThroughput' BackupId: !Ref 'BackupId' WindowsConfiguration: SelfManagedActiveDirectoryConfiguration: FileSystemAdministratorsGroup: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup' UserName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName' DomainName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName' OrganizationalUnitDistinguishedName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName' Password: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword' WeeklyMaintenanceStartTime: !Ref 'WindowsConfigurationWeeklyMaintenanceStartTime' ActiveDirectoryId: !Ref 'WindowsConfigurationActiveDirectoryId' DeploymentType: !Ref 'WindowsConfigurationDeploymentType' ThroughputCapacity: !Ref 'WindowsConfigurationThroughputCapacity' CopyTagsToBackups: !Ref 'WindowsConfigurationCopyTagsToBackups' DailyAutomaticBackupStartTime: !Ref 'WindowsConfigurationDailyAutomaticBackupStartTime' AutomaticBackupRetentionDays: !Ref 'WindowsConfigurationAutomaticBackupRetentionDays' PreferredSubnetId: !Ref 'WindowsConfigurationPreferredSubnetId' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FSx-FileSystem/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagetype Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-kmskeyid Default: null StorageCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagecapacity Default: null FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype LustreConfigurationImportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importpath Default: null LustreConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-weeklymaintenancestarttime Default: null LustreConfigurationImportedFileChunkSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importedfilechunksize Default: null LustreConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-deploymenttype Default: null LustreConfigurationExportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-exportpath Default: null LustreConfigurationPerUnitStorageThroughput: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-perunitstoragethroughput Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-backupid Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-filesystemadministratorsgroup Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-username Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-domainname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-organizationalunitdistinguishedname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-password Default: null WindowsConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-weeklymaintenancestarttime Default: null WindowsConfigurationActiveDirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-activedirectoryid Default: null WindowsConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-deploymenttype Default: null WindowsConfigurationThroughputCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-throughputcapacity Default: null WindowsConfigurationCopyTagsToBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-copytagstobackups AllowedValues: - 'true' - 'false' Default: null WindowsConfigurationDailyAutomaticBackupStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-dailyautomaticbackupstarttime Default: null WindowsConfigurationAutomaticBackupRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-automaticbackupretentiondays Default: null WindowsConfigurationPreferredSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-preferredsubnetid Default: null Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: StorageType: !Ref 'StorageType' KmsKeyId: !Ref 'KmsKeyId' StorageCapacity: !Ref 'StorageCapacity' FileSystemType: !Ref 'FileSystemType' LustreConfiguration: ImportPath: !Ref 'LustreConfigurationImportPath' WeeklyMaintenanceStartTime: !Ref 'LustreConfigurationWeeklyMaintenanceStartTime' ImportedFileChunkSize: !Ref 'LustreConfigurationImportedFileChunkSize' DeploymentType: !Ref 'LustreConfigurationDeploymentType' ExportPath: !Ref 'LustreConfigurationExportPath' PerUnitStorageThroughput: !Ref 'LustreConfigurationPerUnitStorageThroughput' BackupId: !Ref 'BackupId' WindowsConfiguration: SelfManagedActiveDirectoryConfiguration: FileSystemAdministratorsGroup: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup' UserName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName' DomainName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName' OrganizationalUnitDistinguishedName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName' Password: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword' WeeklyMaintenanceStartTime: !Ref 'WindowsConfigurationWeeklyMaintenanceStartTime' ActiveDirectoryId: !Ref 'WindowsConfigurationActiveDirectoryId' DeploymentType: !Ref 'WindowsConfigurationDeploymentType' ThroughputCapacity: !Ref 'WindowsConfigurationThroughputCapacity' CopyTagsToBackups: !Ref 'WindowsConfigurationCopyTagsToBackups' DailyAutomaticBackupStartTime: !Ref 'WindowsConfigurationDailyAutomaticBackupStartTime' AutomaticBackupRetentionDays: !Ref 'WindowsConfigurationAutomaticBackupRetentionDays' PreferredSubnetId: !Ref 'WindowsConfigurationPreferredSubnetId' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FSx-FileSystem/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagetype Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-kmskeyid Default: null StorageCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagecapacity Default: null FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype LustreConfigurationImportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importpath Default: null LustreConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-weeklymaintenancestarttime Default: null LustreConfigurationImportedFileChunkSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importedfilechunksize Default: null LustreConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-deploymenttype Default: null LustreConfigurationExportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-exportpath Default: null LustreConfigurationPerUnitStorageThroughput: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-perunitstoragethroughput Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-backupid Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-filesystemadministratorsgroup Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-username Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-domainname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-organizationalunitdistinguishedname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-password Default: null WindowsConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-weeklymaintenancestarttime Default: null WindowsConfigurationActiveDirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-activedirectoryid Default: null WindowsConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-deploymenttype Default: null WindowsConfigurationThroughputCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-throughputcapacity Default: null WindowsConfigurationCopyTagsToBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-copytagstobackups AllowedValues: - 'true' - 'false' Default: null WindowsConfigurationDailyAutomaticBackupStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-dailyautomaticbackupstarttime Default: null WindowsConfigurationAutomaticBackupRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-automaticbackupretentiondays Default: null WindowsConfigurationPreferredSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-preferredsubnetid Default: null Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: StorageType: !Ref 'StorageType' KmsKeyId: !Ref 'KmsKeyId' StorageCapacity: !Ref 'StorageCapacity' FileSystemType: !Ref 'FileSystemType' LustreConfiguration: ImportPath: !Ref 'LustreConfigurationImportPath' WeeklyMaintenanceStartTime: !Ref 'LustreConfigurationWeeklyMaintenanceStartTime' ImportedFileChunkSize: !Ref 'LustreConfigurationImportedFileChunkSize' DeploymentType: !Ref 'LustreConfigurationDeploymentType' ExportPath: !Ref 'LustreConfigurationExportPath' PerUnitStorageThroughput: !Ref 'LustreConfigurationPerUnitStorageThroughput' BackupId: !Ref 'BackupId' WindowsConfiguration: SelfManagedActiveDirectoryConfiguration: FileSystemAdministratorsGroup: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup' UserName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName' DomainName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName' OrganizationalUnitDistinguishedName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName' Password: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword' WeeklyMaintenanceStartTime: !Ref 'WindowsConfigurationWeeklyMaintenanceStartTime' ActiveDirectoryId: !Ref 'WindowsConfigurationActiveDirectoryId' DeploymentType: !Ref 'WindowsConfigurationDeploymentType' ThroughputCapacity: !Ref 'WindowsConfigurationThroughputCapacity' CopyTagsToBackups: !Ref 'WindowsConfigurationCopyTagsToBackups' DailyAutomaticBackupStartTime: !Ref 'WindowsConfigurationDailyAutomaticBackupStartTime' AutomaticBackupRetentionDays: !Ref 'WindowsConfigurationAutomaticBackupRetentionDays' PreferredSubnetId: !Ref 'WindowsConfigurationPreferredSubnetId' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FSx-FileSystem/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagetype Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-kmskeyid Default: null StorageCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagecapacity Default: null FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype LustreConfigurationImportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importpath Default: null LustreConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-weeklymaintenancestarttime Default: null LustreConfigurationImportedFileChunkSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importedfilechunksize Default: null LustreConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-deploymenttype Default: null LustreConfigurationDailyAutomaticBackupStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-dailyautomaticbackupstarttime Default: null LustreConfigurationCopyTagsToBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-copytagstobackups AllowedValues: - 'true' - 'false' Default: null LustreConfigurationExportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-exportpath Default: null LustreConfigurationPerUnitStorageThroughput: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-perunitstoragethroughput Default: null LustreConfigurationAutomaticBackupRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-automaticbackupretentiondays Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-backupid Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-filesystemadministratorsgroup Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-username Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-domainname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-organizationalunitdistinguishedname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-password Default: null WindowsConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-weeklymaintenancestarttime Default: null WindowsConfigurationActiveDirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-activedirectoryid Default: null WindowsConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-deploymenttype Default: null WindowsConfigurationThroughputCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-throughputcapacity Default: null WindowsConfigurationCopyTagsToBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-copytagstobackups AllowedValues: - 'true' - 'false' Default: null WindowsConfigurationDailyAutomaticBackupStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-dailyautomaticbackupstarttime Default: null WindowsConfigurationAutomaticBackupRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-automaticbackupretentiondays Default: null WindowsConfigurationPreferredSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-preferredsubnetid Default: null Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: StorageType: !Ref 'StorageType' KmsKeyId: !Ref 'KmsKeyId' StorageCapacity: !Ref 'StorageCapacity' FileSystemType: !Ref 'FileSystemType' LustreConfiguration: ImportPath: !Ref 'LustreConfigurationImportPath' WeeklyMaintenanceStartTime: !Ref 'LustreConfigurationWeeklyMaintenanceStartTime' ImportedFileChunkSize: !Ref 'LustreConfigurationImportedFileChunkSize' DeploymentType: !Ref 'LustreConfigurationDeploymentType' DailyAutomaticBackupStartTime: !Ref 'LustreConfigurationDailyAutomaticBackupStartTime' CopyTagsToBackups: !Ref 'LustreConfigurationCopyTagsToBackups' ExportPath: !Ref 'LustreConfigurationExportPath' PerUnitStorageThroughput: !Ref 'LustreConfigurationPerUnitStorageThroughput' AutomaticBackupRetentionDays: !Ref 'LustreConfigurationAutomaticBackupRetentionDays' BackupId: !Ref 'BackupId' WindowsConfiguration: SelfManagedActiveDirectoryConfiguration: FileSystemAdministratorsGroup: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup' UserName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName' DomainName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName' OrganizationalUnitDistinguishedName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName' Password: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword' WeeklyMaintenanceStartTime: !Ref 'WindowsConfigurationWeeklyMaintenanceStartTime' ActiveDirectoryId: !Ref 'WindowsConfigurationActiveDirectoryId' DeploymentType: !Ref 'WindowsConfigurationDeploymentType' ThroughputCapacity: !Ref 'WindowsConfigurationThroughputCapacity' CopyTagsToBackups: !Ref 'WindowsConfigurationCopyTagsToBackups' DailyAutomaticBackupStartTime: !Ref 'WindowsConfigurationDailyAutomaticBackupStartTime' AutomaticBackupRetentionDays: !Ref 'WindowsConfigurationAutomaticBackupRetentionDays' PreferredSubnetId: !Ref 'WindowsConfigurationPreferredSubnetId' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FSx-FileSystem/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagetype Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-kmskeyid Default: null StorageCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagecapacity Default: null FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype LustreConfigurationImportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importpath Default: null LustreConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-weeklymaintenancestarttime Default: null LustreConfigurationImportedFileChunkSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importedfilechunksize Default: null LustreConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-deploymenttype Default: null LustreConfigurationExportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-exportpath Default: null LustreConfigurationPerUnitStorageThroughput: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-perunitstoragethroughput Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-backupid Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-filesystemadministratorsgroup Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-username Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-domainname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-organizationalunitdistinguishedname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-password Default: null WindowsConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-weeklymaintenancestarttime Default: null WindowsConfigurationActiveDirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-activedirectoryid Default: null WindowsConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-deploymenttype Default: null WindowsConfigurationThroughputCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-throughputcapacity Default: null WindowsConfigurationCopyTagsToBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-copytagstobackups AllowedValues: - 'true' - 'false' Default: null WindowsConfigurationDailyAutomaticBackupStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-dailyautomaticbackupstarttime Default: null WindowsConfigurationAutomaticBackupRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-automaticbackupretentiondays Default: null WindowsConfigurationPreferredSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-preferredsubnetid Default: null Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: StorageType: !Ref 'StorageType' KmsKeyId: !Ref 'KmsKeyId' StorageCapacity: !Ref 'StorageCapacity' FileSystemType: !Ref 'FileSystemType' LustreConfiguration: ImportPath: !Ref 'LustreConfigurationImportPath' WeeklyMaintenanceStartTime: !Ref 'LustreConfigurationWeeklyMaintenanceStartTime' ImportedFileChunkSize: !Ref 'LustreConfigurationImportedFileChunkSize' DeploymentType: !Ref 'LustreConfigurationDeploymentType' ExportPath: !Ref 'LustreConfigurationExportPath' PerUnitStorageThroughput: !Ref 'LustreConfigurationPerUnitStorageThroughput' BackupId: !Ref 'BackupId' WindowsConfiguration: SelfManagedActiveDirectoryConfiguration: FileSystemAdministratorsGroup: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup' UserName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName' DomainName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName' OrganizationalUnitDistinguishedName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName' Password: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword' WeeklyMaintenanceStartTime: !Ref 'WindowsConfigurationWeeklyMaintenanceStartTime' ActiveDirectoryId: !Ref 'WindowsConfigurationActiveDirectoryId' DeploymentType: !Ref 'WindowsConfigurationDeploymentType' ThroughputCapacity: !Ref 'WindowsConfigurationThroughputCapacity' CopyTagsToBackups: !Ref 'WindowsConfigurationCopyTagsToBackups' DailyAutomaticBackupStartTime: !Ref 'WindowsConfigurationDailyAutomaticBackupStartTime' AutomaticBackupRetentionDays: !Ref 'WindowsConfigurationAutomaticBackupRetentionDays' PreferredSubnetId: !Ref 'WindowsConfigurationPreferredSubnetId' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FSx-FileSystem/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagetype Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-kmskeyid Default: null StorageCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagecapacity Default: null FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype LustreConfigurationImportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importpath Default: null LustreConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-weeklymaintenancestarttime Default: null LustreConfigurationImportedFileChunkSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importedfilechunksize Default: null LustreConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-deploymenttype Default: null LustreConfigurationDailyAutomaticBackupStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-dailyautomaticbackupstarttime Default: null LustreConfigurationCopyTagsToBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-copytagstobackups AllowedValues: - 'true' - 'false' Default: null LustreConfigurationExportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-exportpath Default: null LustreConfigurationPerUnitStorageThroughput: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-perunitstoragethroughput Default: null LustreConfigurationAutomaticBackupRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-automaticbackupretentiondays Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-backupid Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-filesystemadministratorsgroup Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-username Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-domainname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-organizationalunitdistinguishedname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-password Default: null WindowsConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-weeklymaintenancestarttime Default: null WindowsConfigurationActiveDirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-activedirectoryid Default: null WindowsConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-deploymenttype Default: null WindowsConfigurationThroughputCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-throughputcapacity Default: null WindowsConfigurationCopyTagsToBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-copytagstobackups AllowedValues: - 'true' - 'false' Default: null WindowsConfigurationDailyAutomaticBackupStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-dailyautomaticbackupstarttime Default: null WindowsConfigurationAutomaticBackupRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-automaticbackupretentiondays Default: null WindowsConfigurationPreferredSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-preferredsubnetid Default: null Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: StorageType: !Ref 'StorageType' KmsKeyId: !Ref 'KmsKeyId' StorageCapacity: !Ref 'StorageCapacity' FileSystemType: !Ref 'FileSystemType' LustreConfiguration: ImportPath: !Ref 'LustreConfigurationImportPath' WeeklyMaintenanceStartTime: !Ref 'LustreConfigurationWeeklyMaintenanceStartTime' ImportedFileChunkSize: !Ref 'LustreConfigurationImportedFileChunkSize' DeploymentType: !Ref 'LustreConfigurationDeploymentType' DailyAutomaticBackupStartTime: !Ref 'LustreConfigurationDailyAutomaticBackupStartTime' CopyTagsToBackups: !Ref 'LustreConfigurationCopyTagsToBackups' ExportPath: !Ref 'LustreConfigurationExportPath' PerUnitStorageThroughput: !Ref 'LustreConfigurationPerUnitStorageThroughput' AutomaticBackupRetentionDays: !Ref 'LustreConfigurationAutomaticBackupRetentionDays' BackupId: !Ref 'BackupId' WindowsConfiguration: SelfManagedActiveDirectoryConfiguration: FileSystemAdministratorsGroup: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup' UserName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName' DomainName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName' OrganizationalUnitDistinguishedName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName' Password: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword' WeeklyMaintenanceStartTime: !Ref 'WindowsConfigurationWeeklyMaintenanceStartTime' ActiveDirectoryId: !Ref 'WindowsConfigurationActiveDirectoryId' DeploymentType: !Ref 'WindowsConfigurationDeploymentType' ThroughputCapacity: !Ref 'WindowsConfigurationThroughputCapacity' CopyTagsToBackups: !Ref 'WindowsConfigurationCopyTagsToBackups' DailyAutomaticBackupStartTime: !Ref 'WindowsConfigurationDailyAutomaticBackupStartTime' AutomaticBackupRetentionDays: !Ref 'WindowsConfigurationAutomaticBackupRetentionDays' PreferredSubnetId: !Ref 'WindowsConfigurationPreferredSubnetId' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FSx-FileSystem/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagetype Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-kmskeyid Default: null StorageCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagecapacity Default: null FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype LustreConfigurationImportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importpath Default: null LustreConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-weeklymaintenancestarttime Default: null LustreConfigurationImportedFileChunkSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importedfilechunksize Default: null LustreConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-deploymenttype Default: null LustreConfigurationDailyAutomaticBackupStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-dailyautomaticbackupstarttime Default: null LustreConfigurationCopyTagsToBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-copytagstobackups AllowedValues: - 'true' - 'false' Default: null LustreConfigurationExportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-exportpath Default: null LustreConfigurationPerUnitStorageThroughput: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-perunitstoragethroughput Default: null LustreConfigurationAutomaticBackupRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-automaticbackupretentiondays Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-backupid Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-filesystemadministratorsgroup Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-username Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-domainname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-organizationalunitdistinguishedname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-password Default: null WindowsConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-weeklymaintenancestarttime Default: null WindowsConfigurationActiveDirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-activedirectoryid Default: null WindowsConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-deploymenttype Default: null WindowsConfigurationThroughputCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-throughputcapacity Default: null WindowsConfigurationCopyTagsToBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-copytagstobackups AllowedValues: - 'true' - 'false' Default: null WindowsConfigurationDailyAutomaticBackupStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-dailyautomaticbackupstarttime Default: null WindowsConfigurationAutomaticBackupRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-automaticbackupretentiondays Default: null WindowsConfigurationPreferredSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-preferredsubnetid Default: null Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: StorageType: !Ref 'StorageType' KmsKeyId: !Ref 'KmsKeyId' StorageCapacity: !Ref 'StorageCapacity' FileSystemType: !Ref 'FileSystemType' LustreConfiguration: ImportPath: !Ref 'LustreConfigurationImportPath' WeeklyMaintenanceStartTime: !Ref 'LustreConfigurationWeeklyMaintenanceStartTime' ImportedFileChunkSize: !Ref 'LustreConfigurationImportedFileChunkSize' DeploymentType: !Ref 'LustreConfigurationDeploymentType' DailyAutomaticBackupStartTime: !Ref 'LustreConfigurationDailyAutomaticBackupStartTime' CopyTagsToBackups: !Ref 'LustreConfigurationCopyTagsToBackups' ExportPath: !Ref 'LustreConfigurationExportPath' PerUnitStorageThroughput: !Ref 'LustreConfigurationPerUnitStorageThroughput' AutomaticBackupRetentionDays: !Ref 'LustreConfigurationAutomaticBackupRetentionDays' BackupId: !Ref 'BackupId' WindowsConfiguration: SelfManagedActiveDirectoryConfiguration: FileSystemAdministratorsGroup: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup' UserName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName' DomainName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName' OrganizationalUnitDistinguishedName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName' Password: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword' WeeklyMaintenanceStartTime: !Ref 'WindowsConfigurationWeeklyMaintenanceStartTime' ActiveDirectoryId: !Ref 'WindowsConfigurationActiveDirectoryId' DeploymentType: !Ref 'WindowsConfigurationDeploymentType' ThroughputCapacity: !Ref 'WindowsConfigurationThroughputCapacity' CopyTagsToBackups: !Ref 'WindowsConfigurationCopyTagsToBackups' DailyAutomaticBackupStartTime: !Ref 'WindowsConfigurationDailyAutomaticBackupStartTime' AutomaticBackupRetentionDays: !Ref 'WindowsConfigurationAutomaticBackupRetentionDays' PreferredSubnetId: !Ref 'WindowsConfigurationPreferredSubnetId' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FSx-FileSystem/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagetype Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-kmskeyid Default: null StorageCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagecapacity Default: null FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype LustreConfigurationImportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importpath Default: null LustreConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-weeklymaintenancestarttime Default: null LustreConfigurationImportedFileChunkSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importedfilechunksize Default: null LustreConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-deploymenttype Default: null LustreConfigurationExportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-exportpath Default: null LustreConfigurationPerUnitStorageThroughput: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-perunitstoragethroughput Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-backupid Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-filesystemadministratorsgroup Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-username Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-domainname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-organizationalunitdistinguishedname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-password Default: null WindowsConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-weeklymaintenancestarttime Default: null WindowsConfigurationActiveDirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-activedirectoryid Default: null WindowsConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-deploymenttype Default: null WindowsConfigurationThroughputCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-throughputcapacity Default: null WindowsConfigurationCopyTagsToBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-copytagstobackups AllowedValues: - 'true' - 'false' Default: null WindowsConfigurationDailyAutomaticBackupStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-dailyautomaticbackupstarttime Default: null WindowsConfigurationAutomaticBackupRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-automaticbackupretentiondays Default: null WindowsConfigurationPreferredSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-preferredsubnetid Default: null Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: StorageType: !Ref 'StorageType' KmsKeyId: !Ref 'KmsKeyId' StorageCapacity: !Ref 'StorageCapacity' FileSystemType: !Ref 'FileSystemType' LustreConfiguration: ImportPath: !Ref 'LustreConfigurationImportPath' WeeklyMaintenanceStartTime: !Ref 'LustreConfigurationWeeklyMaintenanceStartTime' ImportedFileChunkSize: !Ref 'LustreConfigurationImportedFileChunkSize' DeploymentType: !Ref 'LustreConfigurationDeploymentType' ExportPath: !Ref 'LustreConfigurationExportPath' PerUnitStorageThroughput: !Ref 'LustreConfigurationPerUnitStorageThroughput' BackupId: !Ref 'BackupId' WindowsConfiguration: SelfManagedActiveDirectoryConfiguration: FileSystemAdministratorsGroup: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup' UserName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName' DomainName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName' OrganizationalUnitDistinguishedName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName' Password: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword' WeeklyMaintenanceStartTime: !Ref 'WindowsConfigurationWeeklyMaintenanceStartTime' ActiveDirectoryId: !Ref 'WindowsConfigurationActiveDirectoryId' DeploymentType: !Ref 'WindowsConfigurationDeploymentType' ThroughputCapacity: !Ref 'WindowsConfigurationThroughputCapacity' CopyTagsToBackups: !Ref 'WindowsConfigurationCopyTagsToBackups' DailyAutomaticBackupStartTime: !Ref 'WindowsConfigurationDailyAutomaticBackupStartTime' AutomaticBackupRetentionDays: !Ref 'WindowsConfigurationAutomaticBackupRetentionDays' PreferredSubnetId: !Ref 'WindowsConfigurationPreferredSubnetId' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-FSx-FileSystem/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagetype Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-kmskeyid Default: null StorageCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-storagecapacity Default: null FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype LustreConfigurationImportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importpath Default: null LustreConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-weeklymaintenancestarttime Default: null LustreConfigurationImportedFileChunkSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-importedfilechunksize Default: null LustreConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-deploymenttype Default: null LustreConfigurationDailyAutomaticBackupStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-dailyautomaticbackupstarttime Default: null LustreConfigurationCopyTagsToBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-copytagstobackups AllowedValues: - 'true' - 'false' Default: null LustreConfigurationExportPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-exportpath Default: null LustreConfigurationPerUnitStorageThroughput: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-perunitstoragethroughput Default: null LustreConfigurationAutomaticBackupRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-lustreconfiguration.html#cfn-fsx-filesystem-lustreconfiguration-automaticbackupretentiondays Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-backupid Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-filesystemadministratorsgroup Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-username Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-domainname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-organizationalunitdistinguishedname Default: null WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-selfmanagedactivedirectoryconfiguration-password Default: null WindowsConfigurationWeeklyMaintenanceStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-weeklymaintenancestarttime Default: null WindowsConfigurationActiveDirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-activedirectoryid Default: null WindowsConfigurationDeploymentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-deploymenttype Default: null WindowsConfigurationThroughputCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-throughputcapacity Default: null WindowsConfigurationCopyTagsToBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-copytagstobackups AllowedValues: - 'true' - 'false' Default: null WindowsConfigurationDailyAutomaticBackupStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-dailyautomaticbackupstarttime Default: null WindowsConfigurationAutomaticBackupRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-automaticbackupretentiondays Default: null WindowsConfigurationPreferredSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-windowsconfiguration.html#cfn-fsx-filesystem-windowsconfiguration-preferredsubnetid Default: null Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: StorageType: !Ref 'StorageType' KmsKeyId: !Ref 'KmsKeyId' StorageCapacity: !Ref 'StorageCapacity' FileSystemType: !Ref 'FileSystemType' LustreConfiguration: ImportPath: !Ref 'LustreConfigurationImportPath' WeeklyMaintenanceStartTime: !Ref 'LustreConfigurationWeeklyMaintenanceStartTime' ImportedFileChunkSize: !Ref 'LustreConfigurationImportedFileChunkSize' DeploymentType: !Ref 'LustreConfigurationDeploymentType' DailyAutomaticBackupStartTime: !Ref 'LustreConfigurationDailyAutomaticBackupStartTime' CopyTagsToBackups: !Ref 'LustreConfigurationCopyTagsToBackups' ExportPath: !Ref 'LustreConfigurationExportPath' PerUnitStorageThroughput: !Ref 'LustreConfigurationPerUnitStorageThroughput' AutomaticBackupRetentionDays: !Ref 'LustreConfigurationAutomaticBackupRetentionDays' BackupId: !Ref 'BackupId' WindowsConfiguration: SelfManagedActiveDirectoryConfiguration: FileSystemAdministratorsGroup: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationFileSystemAdministratorsGroup' UserName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationUserName' DomainName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationDomainName' OrganizationalUnitDistinguishedName: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationOrganizationalUnitDistinguishedName' Password: !Ref 'WindowsConfigurationSelfManagedActiveDirectoryConfigurationPassword' WeeklyMaintenanceStartTime: !Ref 'WindowsConfigurationWeeklyMaintenanceStartTime' ActiveDirectoryId: !Ref 'WindowsConfigurationActiveDirectoryId' DeploymentType: !Ref 'WindowsConfigurationDeploymentType' ThroughputCapacity: !Ref 'WindowsConfigurationThroughputCapacity' CopyTagsToBackups: !Ref 'WindowsConfigurationCopyTagsToBackups' DailyAutomaticBackupStartTime: !Ref 'WindowsConfigurationDailyAutomaticBackupStartTime' AutomaticBackupRetentionDays: !Ref 'WindowsConfigurationAutomaticBackupRetentionDays' PreferredSubnetId: !Ref 'WindowsConfigurationPreferredSubnetId' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Alias/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyFleetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid Default: null RoutingStrategyMessage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message Default: null RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' RoutingStrategy: FleetId: !Ref 'RoutingStrategyFleetId' Message: !Ref 'RoutingStrategyMessage' Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Build/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name Default: null OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-operatingsystem Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-object-verison Default: null S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version Default: null Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Properties: Name: !Ref 'Name' OperatingSystem: !Ref 'OperatingSystem' StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' ObjectVersion: !Ref 'S3LocationObjectVersion' RoleArn: !Ref 'S3LocationRoleArn' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Fleet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: BuildId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid Default: null CertificateConfigurationCertificateType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-certificateconfiguration.html#cfn-gamelift-fleet-certificateconfiguration-certificatetype Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description Default: null DesiredEC2Instances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances Default: null EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype FleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-fleettype Default: null InstanceRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn Default: null MaxSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize Default: null MinSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name NewGameSessionProtectionPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-newgamesessionprotectionpolicy Default: null PeerVpcAwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcawsaccountid Default: null PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-peervpcid Default: null ResourceCreationLimitPolicyNewGameSessionsPerCreator: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-newgamesessionspercreator Default: null ResourceCreationLimitPolicyPolicyPeriodInMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-resourcecreationlimitpolicy.html#cfn-gamelift-fleet-resourcecreationlimitpolicy-policyperiodinminutes Default: null RuntimeConfigurationGameSessionActivationTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-gamesessionactivationtimeoutseconds Default: null RuntimeConfigurationMaxConcurrentGameSessionActivations: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-runtimeconfiguration.html#cfn-gamelift-fleet-runtimeconfiguration-maxconcurrentgamesessionactivations Default: null ScriptId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid Default: null ServerLaunchParameters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters Default: null ServerLaunchPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath Default: null Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: BuildId: !Ref 'BuildId' CertificateConfiguration: CertificateType: !Ref 'CertificateConfigurationCertificateType' Description: !Ref 'Description' DesiredEC2Instances: !Ref 'DesiredEC2Instances' EC2InstanceType: !Ref 'EC2InstanceType' FleetType: !Ref 'FleetType' InstanceRoleARN: !Ref 'InstanceRoleARN' MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' Name: !Ref 'Name' NewGameSessionProtectionPolicy: !Ref 'NewGameSessionProtectionPolicy' PeerVpcAwsAccountId: !Ref 'PeerVpcAwsAccountId' PeerVpcId: !Ref 'PeerVpcId' ResourceCreationLimitPolicy: NewGameSessionsPerCreator: !Ref 'ResourceCreationLimitPolicyNewGameSessionsPerCreator' PolicyPeriodInMinutes: !Ref 'ResourceCreationLimitPolicyPolicyPeriodInMinutes' RuntimeConfiguration: GameSessionActivationTimeoutSeconds: !Ref 'RuntimeConfigurationGameSessionActivationTimeoutSeconds' MaxConcurrentGameSessionActivations: !Ref 'RuntimeConfigurationMaxConcurrentGameSessionActivations' ScriptId: !Ref 'ScriptId' ServerLaunchParameters: !Ref 'ServerLaunchParameters' ServerLaunchPath: !Ref 'ServerLaunchPath' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-GameSessionQueue/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: TimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: TimeoutInSeconds: !Ref 'TimeoutInSeconds' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-GameSessionQueue/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: TimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: TimeoutInSeconds: !Ref 'TimeoutInSeconds' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-GameSessionQueue/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: TimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: TimeoutInSeconds: !Ref 'TimeoutInSeconds' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-GameSessionQueue/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: TimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: TimeoutInSeconds: !Ref 'TimeoutInSeconds' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-GameSessionQueue/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: TimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: TimeoutInSeconds: !Ref 'TimeoutInSeconds' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-GameSessionQueue/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: TimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: TimeoutInSeconds: !Ref 'TimeoutInSeconds' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-GameSessionQueue/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: TimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: TimeoutInSeconds: !Ref 'TimeoutInSeconds' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-GameSessionQueue/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: TimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: TimeoutInSeconds: !Ref 'TimeoutInSeconds' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-GameSessionQueue/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: TimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: TimeoutInSeconds: !Ref 'TimeoutInSeconds' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-GameSessionQueue/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: TimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: TimeoutInSeconds: !Ref 'TimeoutInSeconds' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-GameSessionQueue/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: TimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: TimeoutInSeconds: !Ref 'TimeoutInSeconds' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-GameSessionQueue/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: TimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: TimeoutInSeconds: !Ref 'TimeoutInSeconds' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-GameSessionQueue/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: TimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: TimeoutInSeconds: !Ref 'TimeoutInSeconds' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-GameSessionQueue/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: TimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: TimeoutInSeconds: !Ref 'TimeoutInSeconds' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: GameSessionData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-gamesessiondata Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-description Default: null AcceptanceTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancetimeoutseconds Default: null NotificationTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-notificationtarget Default: null CustomEventData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-customeventdata Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name AdditionalPlayerCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-additionalplayercount Default: null BackfillMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-backfillmode Default: null RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: GameSessionData: !Ref 'GameSessionData' Description: !Ref 'Description' AcceptanceTimeoutSeconds: !Ref 'AcceptanceTimeoutSeconds' NotificationTarget: !Ref 'NotificationTarget' CustomEventData: !Ref 'CustomEventData' Name: !Ref 'Name' AdditionalPlayerCount: !Ref 'AdditionalPlayerCount' BackfillMode: !Ref 'BackfillMode' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: GameSessionData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-gamesessiondata Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-description Default: null AcceptanceTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancetimeoutseconds Default: null NotificationTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-notificationtarget Default: null CustomEventData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-customeventdata Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name AdditionalPlayerCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-additionalplayercount Default: null BackfillMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-backfillmode Default: null RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: GameSessionData: !Ref 'GameSessionData' Description: !Ref 'Description' AcceptanceTimeoutSeconds: !Ref 'AcceptanceTimeoutSeconds' NotificationTarget: !Ref 'NotificationTarget' CustomEventData: !Ref 'CustomEventData' Name: !Ref 'Name' AdditionalPlayerCount: !Ref 'AdditionalPlayerCount' BackfillMode: !Ref 'BackfillMode' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: GameSessionData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-gamesessiondata Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-description Default: null AcceptanceTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancetimeoutseconds Default: null NotificationTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-notificationtarget Default: null CustomEventData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-customeventdata Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name AdditionalPlayerCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-additionalplayercount Default: null BackfillMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-backfillmode Default: null RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: GameSessionData: !Ref 'GameSessionData' Description: !Ref 'Description' AcceptanceTimeoutSeconds: !Ref 'AcceptanceTimeoutSeconds' NotificationTarget: !Ref 'NotificationTarget' CustomEventData: !Ref 'CustomEventData' Name: !Ref 'Name' AdditionalPlayerCount: !Ref 'AdditionalPlayerCount' BackfillMode: !Ref 'BackfillMode' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: GameSessionData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-gamesessiondata Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-description Default: null AcceptanceTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancetimeoutseconds Default: null NotificationTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-notificationtarget Default: null CustomEventData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-customeventdata Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name AdditionalPlayerCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-additionalplayercount Default: null BackfillMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-backfillmode Default: null RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: GameSessionData: !Ref 'GameSessionData' Description: !Ref 'Description' AcceptanceTimeoutSeconds: !Ref 'AcceptanceTimeoutSeconds' NotificationTarget: !Ref 'NotificationTarget' CustomEventData: !Ref 'CustomEventData' Name: !Ref 'Name' AdditionalPlayerCount: !Ref 'AdditionalPlayerCount' BackfillMode: !Ref 'BackfillMode' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: GameSessionData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-gamesessiondata Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-description Default: null AcceptanceTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancetimeoutseconds Default: null NotificationTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-notificationtarget Default: null CustomEventData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-customeventdata Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name AdditionalPlayerCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-additionalplayercount Default: null BackfillMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-backfillmode Default: null RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: GameSessionData: !Ref 'GameSessionData' Description: !Ref 'Description' AcceptanceTimeoutSeconds: !Ref 'AcceptanceTimeoutSeconds' NotificationTarget: !Ref 'NotificationTarget' CustomEventData: !Ref 'CustomEventData' Name: !Ref 'Name' AdditionalPlayerCount: !Ref 'AdditionalPlayerCount' BackfillMode: !Ref 'BackfillMode' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: GameSessionData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-gamesessiondata Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-description Default: null AcceptanceTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancetimeoutseconds Default: null NotificationTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-notificationtarget Default: null CustomEventData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-customeventdata Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name AdditionalPlayerCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-additionalplayercount Default: null BackfillMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-backfillmode Default: null RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: GameSessionData: !Ref 'GameSessionData' Description: !Ref 'Description' AcceptanceTimeoutSeconds: !Ref 'AcceptanceTimeoutSeconds' NotificationTarget: !Ref 'NotificationTarget' CustomEventData: !Ref 'CustomEventData' Name: !Ref 'Name' AdditionalPlayerCount: !Ref 'AdditionalPlayerCount' BackfillMode: !Ref 'BackfillMode' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: GameSessionData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-gamesessiondata Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-description Default: null AcceptanceTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancetimeoutseconds Default: null NotificationTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-notificationtarget Default: null CustomEventData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-customeventdata Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name AdditionalPlayerCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-additionalplayercount Default: null BackfillMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-backfillmode Default: null RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: GameSessionData: !Ref 'GameSessionData' Description: !Ref 'Description' AcceptanceTimeoutSeconds: !Ref 'AcceptanceTimeoutSeconds' NotificationTarget: !Ref 'NotificationTarget' CustomEventData: !Ref 'CustomEventData' Name: !Ref 'Name' AdditionalPlayerCount: !Ref 'AdditionalPlayerCount' BackfillMode: !Ref 'BackfillMode' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: GameSessionData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-gamesessiondata Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-description Default: null AcceptanceTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancetimeoutseconds Default: null NotificationTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-notificationtarget Default: null CustomEventData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-customeventdata Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name AdditionalPlayerCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-additionalplayercount Default: null BackfillMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-backfillmode Default: null RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: GameSessionData: !Ref 'GameSessionData' Description: !Ref 'Description' AcceptanceTimeoutSeconds: !Ref 'AcceptanceTimeoutSeconds' NotificationTarget: !Ref 'NotificationTarget' CustomEventData: !Ref 'CustomEventData' Name: !Ref 'Name' AdditionalPlayerCount: !Ref 'AdditionalPlayerCount' BackfillMode: !Ref 'BackfillMode' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: GameSessionData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-gamesessiondata Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-description Default: null AcceptanceTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancetimeoutseconds Default: null NotificationTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-notificationtarget Default: null CustomEventData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-customeventdata Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name AdditionalPlayerCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-additionalplayercount Default: null BackfillMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-backfillmode Default: null RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: GameSessionData: !Ref 'GameSessionData' Description: !Ref 'Description' AcceptanceTimeoutSeconds: !Ref 'AcceptanceTimeoutSeconds' NotificationTarget: !Ref 'NotificationTarget' CustomEventData: !Ref 'CustomEventData' Name: !Ref 'Name' AdditionalPlayerCount: !Ref 'AdditionalPlayerCount' BackfillMode: !Ref 'BackfillMode' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: GameSessionData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-gamesessiondata Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-description Default: null AcceptanceTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancetimeoutseconds Default: null NotificationTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-notificationtarget Default: null CustomEventData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-customeventdata Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name AdditionalPlayerCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-additionalplayercount Default: null BackfillMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-backfillmode Default: null RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: GameSessionData: !Ref 'GameSessionData' Description: !Ref 'Description' AcceptanceTimeoutSeconds: !Ref 'AcceptanceTimeoutSeconds' NotificationTarget: !Ref 'NotificationTarget' CustomEventData: !Ref 'CustomEventData' Name: !Ref 'Name' AdditionalPlayerCount: !Ref 'AdditionalPlayerCount' BackfillMode: !Ref 'BackfillMode' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: GameSessionData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-gamesessiondata Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-description Default: null AcceptanceTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancetimeoutseconds Default: null NotificationTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-notificationtarget Default: null CustomEventData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-customeventdata Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name AdditionalPlayerCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-additionalplayercount Default: null BackfillMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-backfillmode Default: null RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: GameSessionData: !Ref 'GameSessionData' Description: !Ref 'Description' AcceptanceTimeoutSeconds: !Ref 'AcceptanceTimeoutSeconds' NotificationTarget: !Ref 'NotificationTarget' CustomEventData: !Ref 'CustomEventData' Name: !Ref 'Name' AdditionalPlayerCount: !Ref 'AdditionalPlayerCount' BackfillMode: !Ref 'BackfillMode' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: GameSessionData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-gamesessiondata Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-description Default: null AcceptanceTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancetimeoutseconds Default: null NotificationTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-notificationtarget Default: null CustomEventData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-customeventdata Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name AdditionalPlayerCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-additionalplayercount Default: null BackfillMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-backfillmode Default: null RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: GameSessionData: !Ref 'GameSessionData' Description: !Ref 'Description' AcceptanceTimeoutSeconds: !Ref 'AcceptanceTimeoutSeconds' NotificationTarget: !Ref 'NotificationTarget' CustomEventData: !Ref 'CustomEventData' Name: !Ref 'Name' AdditionalPlayerCount: !Ref 'AdditionalPlayerCount' BackfillMode: !Ref 'BackfillMode' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: GameSessionData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-gamesessiondata Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-description Default: null AcceptanceTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancetimeoutseconds Default: null NotificationTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-notificationtarget Default: null CustomEventData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-customeventdata Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name AdditionalPlayerCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-additionalplayercount Default: null BackfillMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-backfillmode Default: null RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: GameSessionData: !Ref 'GameSessionData' Description: !Ref 'Description' AcceptanceTimeoutSeconds: !Ref 'AcceptanceTimeoutSeconds' NotificationTarget: !Ref 'NotificationTarget' CustomEventData: !Ref 'CustomEventData' Name: !Ref 'Name' AdditionalPlayerCount: !Ref 'AdditionalPlayerCount' BackfillMode: !Ref 'BackfillMode' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: GameSessionData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-gamesessiondata Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-description Default: null AcceptanceTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancetimeoutseconds Default: null NotificationTarget: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-notificationtarget Default: null CustomEventData: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-customeventdata Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name AdditionalPlayerCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-additionalplayercount Default: null BackfillMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-backfillmode Default: null RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: GameSessionData: !Ref 'GameSessionData' Description: !Ref 'Description' AcceptanceTimeoutSeconds: !Ref 'AcceptanceTimeoutSeconds' NotificationTarget: !Ref 'NotificationTarget' CustomEventData: !Ref 'CustomEventData' Name: !Ref 'Name' AdditionalPlayerCount: !Ref 'AdditionalPlayerCount' BackfillMode: !Ref 'BackfillMode' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Script/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-version Default: null S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-objectversion Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name Default: null Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: Version: !Ref 'Version' StorageLocation: ObjectVersion: !Ref 'S3LocationObjectVersion' Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Script/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-version Default: null S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-objectversion Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name Default: null Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: Version: !Ref 'Version' StorageLocation: ObjectVersion: !Ref 'S3LocationObjectVersion' Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Script/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-version Default: null S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-objectversion Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name Default: null Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: Version: !Ref 'Version' StorageLocation: ObjectVersion: !Ref 'S3LocationObjectVersion' Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Script/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-version Default: null S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-objectversion Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name Default: null Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: Version: !Ref 'Version' StorageLocation: ObjectVersion: !Ref 'S3LocationObjectVersion' Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Script/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-version Default: null S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-objectversion Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name Default: null Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: Version: !Ref 'Version' StorageLocation: ObjectVersion: !Ref 'S3LocationObjectVersion' Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Script/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-version Default: null S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-objectversion Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name Default: null Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: Version: !Ref 'Version' StorageLocation: ObjectVersion: !Ref 'S3LocationObjectVersion' Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Script/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-version Default: null S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-objectversion Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name Default: null Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: Version: !Ref 'Version' StorageLocation: ObjectVersion: !Ref 'S3LocationObjectVersion' Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Script/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-version Default: null S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-objectversion Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name Default: null Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: Version: !Ref 'Version' StorageLocation: ObjectVersion: !Ref 'S3LocationObjectVersion' Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Script/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-version Default: null S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-objectversion Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name Default: null Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: Version: !Ref 'Version' StorageLocation: ObjectVersion: !Ref 'S3LocationObjectVersion' Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Script/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-version Default: null S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-objectversion Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name Default: null Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: Version: !Ref 'Version' StorageLocation: ObjectVersion: !Ref 'S3LocationObjectVersion' Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Script/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-version Default: null S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-objectversion Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name Default: null Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: Version: !Ref 'Version' StorageLocation: ObjectVersion: !Ref 'S3LocationObjectVersion' Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Script/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-version Default: null S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-objectversion Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name Default: null Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: Version: !Ref 'Version' StorageLocation: ObjectVersion: !Ref 'S3LocationObjectVersion' Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Script/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-version Default: null S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-objectversion Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name Default: null Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: Version: !Ref 'Version' StorageLocation: ObjectVersion: !Ref 'S3LocationObjectVersion' Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GameLift-Script/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-version Default: null S3LocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-objectversion Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name Default: null Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: Version: !Ref 'Version' StorageLocation: ObjectVersion: !Ref 'S3LocationObjectVersion' Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name IpAddressType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-ipaddresstype Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-enabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' IpAddressType: !Ref 'IpAddressType' Enabled: !Ref 'Enabled' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion TrafficDialPercentage: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-trafficdialpercentage Default: null HealthCheckPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckport Default: null HealthCheckProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckprotocol Default: null HealthCheckPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckpath Default: null HealthCheckIntervalSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-healthcheckintervalseconds Default: null ThresholdCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-thresholdcount Default: null Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' TrafficDialPercentage: !Ref 'TrafficDialPercentage' HealthCheckPort: !Ref 'HealthCheckPort' HealthCheckProtocol: !Ref 'HealthCheckProtocol' HealthCheckPath: !Ref 'HealthCheckPath' HealthCheckIntervalSeconds: !Ref 'HealthCheckIntervalSeconds' ThresholdCount: !Ref 'ThresholdCount' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GlobalAccelerator-Listener/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol ClientAffinity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-clientaffinity Default: null Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' ClientAffinity: !Ref 'ClientAffinity' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Classifier/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Parameters: XMLClassifierRowTag: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-rowtag XMLClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-classification XMLClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html#cfn-glue-classifier-xmlclassifier-name Default: null JsonClassifierJsonPath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-jsonpath JsonClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html#cfn-glue-classifier-jsonclassifier-name Default: null CsvClassifierQuoteSymbol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-quotesymbol Default: null CsvClassifierContainsHeader: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containsheader Default: null CsvClassifierDelimiter: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-delimiter Default: null CsvClassifierAllowSingleColumn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-allowsinglecolumn AllowedValues: - 'true' - 'false' Default: null CsvClassifierDisableValueTrimming: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-disablevaluetrimming AllowedValues: - 'true' - 'false' Default: null CsvClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-name Default: null GrokClassifierCustomPatterns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns Default: null GrokClassifierGrokPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern GrokClassifierClassification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification GrokClassifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name Default: null Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Properties: XMLClassifier: RowTag: !Ref 'XMLClassifierRowTag' Classification: !Ref 'XMLClassifierClassification' Name: !Ref 'XMLClassifierName' JsonClassifier: JsonPath: !Ref 'JsonClassifierJsonPath' Name: !Ref 'JsonClassifierName' CsvClassifier: QuoteSymbol: !Ref 'CsvClassifierQuoteSymbol' ContainsHeader: !Ref 'CsvClassifierContainsHeader' Delimiter: !Ref 'CsvClassifierDelimiter' AllowSingleColumn: !Ref 'CsvClassifierAllowSingleColumn' DisableValueTrimming: !Ref 'CsvClassifierDisableValueTrimming' Name: !Ref 'CsvClassifierName' GrokClassifier: CustomPatterns: !Ref 'GrokClassifierCustomPatterns' GrokPattern: !Ref 'GrokClassifierGrokPattern' Classification: !Ref 'GrokClassifierClassification' Name: !Ref 'GrokClassifierName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Connection/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description Default: null ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputPhysicalConnectionRequirementsAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone Default: null ConnectionInputPhysicalConnectionRequirementsSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid Default: null ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties ConnectionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: Description: !Ref 'ConnectionInputDescription' ConnectionType: !Ref 'ConnectionInputConnectionType' PhysicalConnectionRequirements: AvailabilityZone: !Ref 'ConnectionInputPhysicalConnectionRequirementsAvailabilityZone' SubnetId: !Ref 'ConnectionInputPhysicalConnectionRequirementsSubnetId' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' Name: !Ref 'ConnectionInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Crawler/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description Default: null SchemaChangePolicyUpdateBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior Default: null SchemaChangePolicyDeleteBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior Default: null Configuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-configuration Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename Default: null CrawlerSecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-crawlersecurityconfiguration Default: null TablePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name Default: null Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Description: !Ref 'Description' SchemaChangePolicy: UpdateBehavior: !Ref 'SchemaChangePolicyUpdateBehavior' DeleteBehavior: !Ref 'SchemaChangePolicyDeleteBehavior' Configuration: !Ref 'Configuration' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' DatabaseName: !Ref 'DatabaseName' Targets: {} CrawlerSecurityConfiguration: !Ref 'CrawlerSecurityConfiguration' TablePrefix: !Ref 'TablePrefix' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-returnconnectionpasswordencrypted AllowedValues: - 'true' - 'false' Default: null DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-connectionpasswordencryption.html#cfn-glue-datacatalogencryptionsettings-connectionpasswordencryption-kmskeyid Default: null DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionmode Default: null DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-sseawskmskeyid Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: ConnectionPasswordEncryption: ReturnConnectionPasswordEncrypted: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionReturnConnectionPasswordEncrypted' KmsKeyId: !Ref 'DataCatalogEncryptionSettingsConnectionPasswordEncryptionKmsKeyId' EncryptionAtRest: CatalogEncryptionMode: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestCatalogEncryptionMode' SseAwsKmsKeyId: !Ref 'DataCatalogEncryptionSettingsEncryptionAtRestSseAwsKmsKeyId' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Database/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: DatabaseInputLocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri Default: null DatabaseInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description Default: null DatabaseInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters Default: null DatabaseInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name Default: null CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: LocationUri: !Ref 'DatabaseInputLocationUri' Description: !Ref 'DatabaseInputDescription' Parameters: !Ref 'DatabaseInputParameters' Name: !Ref 'DatabaseInputName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-DevEndpoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: ExtraJarsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path Default: null PublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey Default: null NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes Default: null Arguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-arguments Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-workertype Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-glueversion Default: null ExtraPythonLibsS3Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-tags Default: null Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: ExtraJarsS3Path: !Ref 'ExtraJarsS3Path' PublicKey: !Ref 'PublicKey' NumberOfNodes: !Ref 'NumberOfNodes' Arguments: !Ref 'Arguments' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' WorkerType: !Ref 'WorkerType' EndpointName: !Ref 'EndpointName' GlueVersion: !Ref 'GlueVersion' ExtraPythonLibsS3Path: !Ref 'ExtraPythonLibsS3Path' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Job/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: MaxRetries: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-timeout Default: null AllocatedCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role DefaultArguments: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments Default: null NotificationPropertyNotifyDelayAfter: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html#cfn-glue-job-notificationproperty-notifydelayafter Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype Default: null LogUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri Default: null JobCommandPythonVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-pythonversion Default: null JobCommandScriptLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation Default: null JobCommandName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-glueversion Default: null ExecutionPropertyMaxConcurrentRuns: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns Default: null SecurityConfiguration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-securityconfiguration Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-tags Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Connections: {} MaxRetries: !Ref 'MaxRetries' Description: !Ref 'Description' Timeout: !Ref 'Timeout' AllocatedCapacity: !Ref 'AllocatedCapacity' Name: !Ref 'Name' Role: !Ref 'Role' DefaultArguments: !Ref 'DefaultArguments' NotificationProperty: NotifyDelayAfter: !Ref 'NotificationPropertyNotifyDelayAfter' WorkerType: !Ref 'WorkerType' LogUri: !Ref 'LogUri' Command: PythonVersion: !Ref 'JobCommandPythonVersion' ScriptLocation: !Ref 'JobCommandScriptLocation' Name: !Ref 'JobCommandName' GlueVersion: !Ref 'GlueVersion' ExecutionProperty: MaxConcurrentRuns: !Ref 'ExecutionPropertyMaxConcurrentRuns' SecurityConfiguration: !Ref 'SecurityConfiguration' NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-MLTransform/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role MaxRetries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxretries Default: null WorkerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-workertype Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-description Default: null Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-timeout Default: null GlueVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-glueversion Default: null TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype TransformParametersFindMatchesParametersPrecisionRecallTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-precisionrecalltradeoff Default: null TransformParametersFindMatchesParametersEnforceProvidedLabels: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-enforceprovidedlabels AllowedValues: - 'true' - 'false' Default: null TransformParametersFindMatchesParametersPrimaryKeyColumnName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-primarykeycolumnname TransformParametersFindMatchesParametersAccuracyCostTradeoff: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters-findmatchesparameters.html#cfn-glue-mltransform-transformparameters-findmatchesparameters-accuracycosttradeoff Default: null NumberOfWorkers: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-numberofworkers Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-name Default: null MaxCapacity: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-maxcapacity Default: null Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' MaxRetries: !Ref 'MaxRetries' WorkerType: !Ref 'WorkerType' Description: !Ref 'Description' Timeout: !Ref 'Timeout' GlueVersion: !Ref 'GlueVersion' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' FindMatchesParameters: PrecisionRecallTradeoff: !Ref 'TransformParametersFindMatchesParametersPrecisionRecallTradeoff' EnforceProvidedLabels: !Ref 'TransformParametersFindMatchesParametersEnforceProvidedLabels' PrimaryKeyColumnName: !Ref 'TransformParametersFindMatchesParametersPrimaryKeyColumnName' AccuracyCostTradeoff: !Ref 'TransformParametersFindMatchesParametersAccuracyCostTradeoff' InputRecordTables: {} NumberOfWorkers: !Ref 'NumberOfWorkers' Tags: !Ref 'Tags' Name: !Ref 'Name' MaxCapacity: !Ref 'MaxCapacity' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Partition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid PartitionInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters Default: null PartitionInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-parameters Default: null PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-skewedinfo.html#cfn-glue-partition-skewedinfo-skewedcolumnvaluelocationmaps Default: null PartitionInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-inputformat Default: null PartitionInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-numberofbuckets Default: null PartitionInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-outputformat Default: null PartitionInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-parameters Default: null PartitionInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-serializationlibrary Default: null PartitionInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-serdeinfo.html#cfn-glue-partition-serdeinfo-name Default: null PartitionInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null PartitionInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-storagedescriptor.html#cfn-glue-partition-storagedescriptor-location Default: null Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: Parameters: !Ref 'PartitionInputParameters' StorageDescriptor: StoredAsSubDirectories: !Ref 'PartitionInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'PartitionInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'PartitionInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'PartitionInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'PartitionInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'PartitionInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'PartitionInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'PartitionInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'PartitionInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'PartitionInputStorageDescriptorCompressed' Location: !Ref 'PartitionInputStorageDescriptorLocation' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-SecurityConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: EncryptionConfigurationCloudWatchEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-kmskeyarn Default: null EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-cloudwatchencryption.html#cfn-glue-securityconfiguration-cloudwatchencryption-cloudwatchencryptionmode Default: null EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-kmskeyarn Default: null EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-securityconfiguration-jobbookmarksencryption.html#cfn-glue-securityconfiguration-jobbookmarksencryption-jobbookmarksencryptionmode Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: S3Encryptions: {} CloudWatchEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationCloudWatchEncryptionKmsKeyArn' CloudWatchEncryptionMode: !Ref 'EncryptionConfigurationCloudWatchEncryptionCloudWatchEncryptionMode' JobBookmarksEncryption: KmsKeyArn: !Ref 'EncryptionConfigurationJobBookmarksEncryptionKmsKeyArn' JobBookmarksEncryptionMode: !Ref 'EncryptionConfigurationJobBookmarksEncryptionJobBookmarksEncryptionMode' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Table/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: TableInputOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner Default: null TableInputViewOriginalText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext Default: null TableInputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description Default: null TableInputTableType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype Default: null TableInputParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters Default: null TableInputViewExpandedText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext Default: null TableInputStorageDescriptorStoredAsSubDirectories: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters Default: null TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps Default: null TableInputStorageDescriptorInputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat Default: null TableInputStorageDescriptorNumberOfBuckets: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets Default: null TableInputStorageDescriptorOutputFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat Default: null TableInputStorageDescriptorSerdeInfoParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters Default: null TableInputStorageDescriptorSerdeInfoSerializationLibrary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary Default: null TableInputStorageDescriptorSerdeInfoName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name Default: null TableInputStorageDescriptorCompressed: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed AllowedValues: - 'true' - 'false' Default: null TableInputStorageDescriptorLocation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location Default: null TableInputRetention: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention Default: null TableInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: Owner: !Ref 'TableInputOwner' ViewOriginalText: !Ref 'TableInputViewOriginalText' Description: !Ref 'TableInputDescription' TableType: !Ref 'TableInputTableType' Parameters: !Ref 'TableInputParameters' ViewExpandedText: !Ref 'TableInputViewExpandedText' StorageDescriptor: StoredAsSubDirectories: !Ref 'TableInputStorageDescriptorStoredAsSubDirectories' Parameters: !Ref 'TableInputStorageDescriptorParameters' SkewedInfo: SkewedColumnValueLocationMaps: !Ref 'TableInputStorageDescriptorSkewedInfoSkewedColumnValueLocationMaps' InputFormat: !Ref 'TableInputStorageDescriptorInputFormat' NumberOfBuckets: !Ref 'TableInputStorageDescriptorNumberOfBuckets' OutputFormat: !Ref 'TableInputStorageDescriptorOutputFormat' SerdeInfo: Parameters: !Ref 'TableInputStorageDescriptorSerdeInfoParameters' SerializationLibrary: !Ref 'TableInputStorageDescriptorSerdeInfoSerializationLibrary' Name: !Ref 'TableInputStorageDescriptorSerdeInfoName' Compressed: !Ref 'TableInputStorageDescriptorCompressed' Location: !Ref 'TableInputStorageDescriptorLocation' Retention: !Ref 'TableInputRetention' Name: !Ref 'TableInputName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Trigger/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type StartOnCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-startoncreation AllowedValues: - 'true' - 'false' Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description Default: null WorkflowName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-workflowname Default: null Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name Default: null PredicateLogical: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical Default: null Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' StartOnCreation: !Ref 'StartOnCreation' Description: !Ref 'Description' WorkflowName: !Ref 'WorkflowName' Schedule: !Ref 'Schedule' Tags: !Ref 'Tags' Name: !Ref 'Name' Predicate: Logical: !Ref 'PredicateLogical' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Glue-Workflow/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description Default: null DefaultRunProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name Default: null Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Properties: Description: !Ref 'Description' DefaultRunProperties: !Ref 'DefaultRunProperties' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: FunctionDefinitionVersionDefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-execution.html#cfn-greengrass-functiondefinition-execution-isolationmode Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-uid Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-gid Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: InitialVersion: DefaultConfig: Execution: IsolationMode: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsUid' Gid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsGid' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: FunctionDefinitionVersionDefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-execution.html#cfn-greengrass-functiondefinition-execution-isolationmode Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-uid Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-gid Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: InitialVersion: DefaultConfig: Execution: IsolationMode: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsUid' Gid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsGid' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: FunctionDefinitionVersionDefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-execution.html#cfn-greengrass-functiondefinition-execution-isolationmode Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-uid Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-gid Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: InitialVersion: DefaultConfig: Execution: IsolationMode: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsUid' Gid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsGid' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: FunctionDefinitionVersionDefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-execution.html#cfn-greengrass-functiondefinition-execution-isolationmode Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-uid Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-gid Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: InitialVersion: DefaultConfig: Execution: IsolationMode: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsUid' Gid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsGid' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: FunctionDefinitionVersionDefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-execution.html#cfn-greengrass-functiondefinition-execution-isolationmode Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-uid Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-gid Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: InitialVersion: DefaultConfig: Execution: IsolationMode: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsUid' Gid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsGid' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: FunctionDefinitionVersionDefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-execution.html#cfn-greengrass-functiondefinition-execution-isolationmode Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-uid Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-gid Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: InitialVersion: DefaultConfig: Execution: IsolationMode: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsUid' Gid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsGid' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: FunctionDefinitionVersionDefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-execution.html#cfn-greengrass-functiondefinition-execution-isolationmode Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-uid Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-gid Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: InitialVersion: DefaultConfig: Execution: IsolationMode: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsUid' Gid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsGid' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: FunctionDefinitionVersionDefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-execution.html#cfn-greengrass-functiondefinition-execution-isolationmode Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-uid Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-gid Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: InitialVersion: DefaultConfig: Execution: IsolationMode: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsUid' Gid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsGid' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: FunctionDefinitionVersionDefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-execution.html#cfn-greengrass-functiondefinition-execution-isolationmode Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-uid Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-gid Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: InitialVersion: DefaultConfig: Execution: IsolationMode: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsUid' Gid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsGid' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: FunctionDefinitionVersionDefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-execution.html#cfn-greengrass-functiondefinition-execution-isolationmode Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-uid Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-gid Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: InitialVersion: DefaultConfig: Execution: IsolationMode: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsUid' Gid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsGid' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: FunctionDefinitionVersionDefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-execution.html#cfn-greengrass-functiondefinition-execution-isolationmode Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-uid Default: null FunctionDefinitionVersionDefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinition-runas.html#cfn-greengrass-functiondefinition-runas-gid Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: InitialVersion: DefaultConfig: Execution: IsolationMode: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsUid' Gid: !Ref 'FunctionDefinitionVersionDefaultConfigExecutionRunAsGid' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: DefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-execution.html#cfn-greengrass-functiondefinitionversion-execution-isolationmode Default: null DefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-uid Default: null DefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-gid Default: null FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: DefaultConfig: Execution: IsolationMode: !Ref 'DefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'DefaultConfigExecutionRunAsUid' Gid: !Ref 'DefaultConfigExecutionRunAsGid' FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: DefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-execution.html#cfn-greengrass-functiondefinitionversion-execution-isolationmode Default: null DefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-uid Default: null DefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-gid Default: null FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: DefaultConfig: Execution: IsolationMode: !Ref 'DefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'DefaultConfigExecutionRunAsUid' Gid: !Ref 'DefaultConfigExecutionRunAsGid' FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: DefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-execution.html#cfn-greengrass-functiondefinitionversion-execution-isolationmode Default: null DefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-uid Default: null DefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-gid Default: null FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: DefaultConfig: Execution: IsolationMode: !Ref 'DefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'DefaultConfigExecutionRunAsUid' Gid: !Ref 'DefaultConfigExecutionRunAsGid' FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: DefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-execution.html#cfn-greengrass-functiondefinitionversion-execution-isolationmode Default: null DefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-uid Default: null DefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-gid Default: null FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: DefaultConfig: Execution: IsolationMode: !Ref 'DefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'DefaultConfigExecutionRunAsUid' Gid: !Ref 'DefaultConfigExecutionRunAsGid' FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: DefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-execution.html#cfn-greengrass-functiondefinitionversion-execution-isolationmode Default: null DefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-uid Default: null DefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-gid Default: null FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: DefaultConfig: Execution: IsolationMode: !Ref 'DefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'DefaultConfigExecutionRunAsUid' Gid: !Ref 'DefaultConfigExecutionRunAsGid' FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: DefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-execution.html#cfn-greengrass-functiondefinitionversion-execution-isolationmode Default: null DefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-uid Default: null DefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-gid Default: null FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: DefaultConfig: Execution: IsolationMode: !Ref 'DefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'DefaultConfigExecutionRunAsUid' Gid: !Ref 'DefaultConfigExecutionRunAsGid' FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: DefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-execution.html#cfn-greengrass-functiondefinitionversion-execution-isolationmode Default: null DefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-uid Default: null DefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-gid Default: null FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: DefaultConfig: Execution: IsolationMode: !Ref 'DefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'DefaultConfigExecutionRunAsUid' Gid: !Ref 'DefaultConfigExecutionRunAsGid' FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: DefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-execution.html#cfn-greengrass-functiondefinitionversion-execution-isolationmode Default: null DefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-uid Default: null DefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-gid Default: null FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: DefaultConfig: Execution: IsolationMode: !Ref 'DefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'DefaultConfigExecutionRunAsUid' Gid: !Ref 'DefaultConfigExecutionRunAsGid' FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: DefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-execution.html#cfn-greengrass-functiondefinitionversion-execution-isolationmode Default: null DefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-uid Default: null DefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-gid Default: null FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: DefaultConfig: Execution: IsolationMode: !Ref 'DefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'DefaultConfigExecutionRunAsUid' Gid: !Ref 'DefaultConfigExecutionRunAsGid' FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: DefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-execution.html#cfn-greengrass-functiondefinitionversion-execution-isolationmode Default: null DefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-uid Default: null DefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-gid Default: null FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: DefaultConfig: Execution: IsolationMode: !Ref 'DefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'DefaultConfigExecutionRunAsUid' Gid: !Ref 'DefaultConfigExecutionRunAsGid' FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: DefaultConfigExecutionIsolationMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-execution.html#cfn-greengrass-functiondefinitionversion-execution-isolationmode Default: null DefaultConfigExecutionRunAsUid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-uid Default: null DefaultConfigExecutionRunAsGid: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-functiondefinitionversion-runas.html#cfn-greengrass-functiondefinitionversion-runas-gid Default: null FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: DefaultConfig: Execution: IsolationMode: !Ref 'DefaultConfigExecutionIsolationMode' RunAs: Uid: !Ref 'DefaultConfigExecutionRunAsUid' Gid: !Ref 'DefaultConfigExecutionRunAsGid' FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-Group/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: GroupVersionLoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-loggerdefinitionversionarn Default: null GroupVersionDeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-devicedefinitionversionarn Default: null GroupVersionFunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-functiondefinitionversionarn Default: null GroupVersionCoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-coredefinitionversionarn Default: null GroupVersionResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-resourcedefinitionversionarn Default: null GroupVersionConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-connectordefinitionversionarn Default: null GroupVersionSubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-subscriptiondefinitionversionarn Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: InitialVersion: LoggerDefinitionVersionArn: !Ref 'GroupVersionLoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'GroupVersionDeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'GroupVersionFunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'GroupVersionCoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'GroupVersionResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'GroupVersionConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'GroupVersionSubscriptionDefinitionVersionArn' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-Group/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: GroupVersionLoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-loggerdefinitionversionarn Default: null GroupVersionDeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-devicedefinitionversionarn Default: null GroupVersionFunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-functiondefinitionversionarn Default: null GroupVersionCoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-coredefinitionversionarn Default: null GroupVersionResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-resourcedefinitionversionarn Default: null GroupVersionConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-connectordefinitionversionarn Default: null GroupVersionSubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-subscriptiondefinitionversionarn Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: InitialVersion: LoggerDefinitionVersionArn: !Ref 'GroupVersionLoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'GroupVersionDeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'GroupVersionFunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'GroupVersionCoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'GroupVersionResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'GroupVersionConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'GroupVersionSubscriptionDefinitionVersionArn' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-Group/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: GroupVersionLoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-loggerdefinitionversionarn Default: null GroupVersionDeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-devicedefinitionversionarn Default: null GroupVersionFunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-functiondefinitionversionarn Default: null GroupVersionCoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-coredefinitionversionarn Default: null GroupVersionResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-resourcedefinitionversionarn Default: null GroupVersionConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-connectordefinitionversionarn Default: null GroupVersionSubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-subscriptiondefinitionversionarn Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: InitialVersion: LoggerDefinitionVersionArn: !Ref 'GroupVersionLoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'GroupVersionDeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'GroupVersionFunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'GroupVersionCoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'GroupVersionResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'GroupVersionConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'GroupVersionSubscriptionDefinitionVersionArn' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-Group/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: GroupVersionLoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-loggerdefinitionversionarn Default: null GroupVersionDeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-devicedefinitionversionarn Default: null GroupVersionFunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-functiondefinitionversionarn Default: null GroupVersionCoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-coredefinitionversionarn Default: null GroupVersionResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-resourcedefinitionversionarn Default: null GroupVersionConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-connectordefinitionversionarn Default: null GroupVersionSubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-subscriptiondefinitionversionarn Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: InitialVersion: LoggerDefinitionVersionArn: !Ref 'GroupVersionLoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'GroupVersionDeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'GroupVersionFunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'GroupVersionCoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'GroupVersionResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'GroupVersionConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'GroupVersionSubscriptionDefinitionVersionArn' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-Group/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: GroupVersionLoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-loggerdefinitionversionarn Default: null GroupVersionDeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-devicedefinitionversionarn Default: null GroupVersionFunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-functiondefinitionversionarn Default: null GroupVersionCoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-coredefinitionversionarn Default: null GroupVersionResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-resourcedefinitionversionarn Default: null GroupVersionConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-connectordefinitionversionarn Default: null GroupVersionSubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-subscriptiondefinitionversionarn Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: InitialVersion: LoggerDefinitionVersionArn: !Ref 'GroupVersionLoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'GroupVersionDeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'GroupVersionFunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'GroupVersionCoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'GroupVersionResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'GroupVersionConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'GroupVersionSubscriptionDefinitionVersionArn' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-Group/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: GroupVersionLoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-loggerdefinitionversionarn Default: null GroupVersionDeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-devicedefinitionversionarn Default: null GroupVersionFunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-functiondefinitionversionarn Default: null GroupVersionCoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-coredefinitionversionarn Default: null GroupVersionResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-resourcedefinitionversionarn Default: null GroupVersionConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-connectordefinitionversionarn Default: null GroupVersionSubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-subscriptiondefinitionversionarn Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: InitialVersion: LoggerDefinitionVersionArn: !Ref 'GroupVersionLoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'GroupVersionDeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'GroupVersionFunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'GroupVersionCoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'GroupVersionResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'GroupVersionConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'GroupVersionSubscriptionDefinitionVersionArn' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-Group/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: GroupVersionLoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-loggerdefinitionversionarn Default: null GroupVersionDeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-devicedefinitionversionarn Default: null GroupVersionFunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-functiondefinitionversionarn Default: null GroupVersionCoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-coredefinitionversionarn Default: null GroupVersionResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-resourcedefinitionversionarn Default: null GroupVersionConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-connectordefinitionversionarn Default: null GroupVersionSubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-subscriptiondefinitionversionarn Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: InitialVersion: LoggerDefinitionVersionArn: !Ref 'GroupVersionLoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'GroupVersionDeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'GroupVersionFunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'GroupVersionCoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'GroupVersionResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'GroupVersionConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'GroupVersionSubscriptionDefinitionVersionArn' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-Group/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: GroupVersionLoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-loggerdefinitionversionarn Default: null GroupVersionDeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-devicedefinitionversionarn Default: null GroupVersionFunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-functiondefinitionversionarn Default: null GroupVersionCoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-coredefinitionversionarn Default: null GroupVersionResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-resourcedefinitionversionarn Default: null GroupVersionConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-connectordefinitionversionarn Default: null GroupVersionSubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-subscriptiondefinitionversionarn Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: InitialVersion: LoggerDefinitionVersionArn: !Ref 'GroupVersionLoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'GroupVersionDeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'GroupVersionFunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'GroupVersionCoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'GroupVersionResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'GroupVersionConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'GroupVersionSubscriptionDefinitionVersionArn' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-Group/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: GroupVersionLoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-loggerdefinitionversionarn Default: null GroupVersionDeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-devicedefinitionversionarn Default: null GroupVersionFunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-functiondefinitionversionarn Default: null GroupVersionCoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-coredefinitionversionarn Default: null GroupVersionResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-resourcedefinitionversionarn Default: null GroupVersionConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-connectordefinitionversionarn Default: null GroupVersionSubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-subscriptiondefinitionversionarn Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: InitialVersion: LoggerDefinitionVersionArn: !Ref 'GroupVersionLoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'GroupVersionDeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'GroupVersionFunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'GroupVersionCoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'GroupVersionResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'GroupVersionConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'GroupVersionSubscriptionDefinitionVersionArn' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-Group/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: GroupVersionLoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-loggerdefinitionversionarn Default: null GroupVersionDeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-devicedefinitionversionarn Default: null GroupVersionFunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-functiondefinitionversionarn Default: null GroupVersionCoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-coredefinitionversionarn Default: null GroupVersionResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-resourcedefinitionversionarn Default: null GroupVersionConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-connectordefinitionversionarn Default: null GroupVersionSubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-subscriptiondefinitionversionarn Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: InitialVersion: LoggerDefinitionVersionArn: !Ref 'GroupVersionLoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'GroupVersionDeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'GroupVersionFunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'GroupVersionCoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'GroupVersionResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'GroupVersionConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'GroupVersionSubscriptionDefinitionVersionArn' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-Group/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: GroupVersionLoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-loggerdefinitionversionarn Default: null GroupVersionDeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-devicedefinitionversionarn Default: null GroupVersionFunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-functiondefinitionversionarn Default: null GroupVersionCoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-coredefinitionversionarn Default: null GroupVersionResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-resourcedefinitionversionarn Default: null GroupVersionConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-connectordefinitionversionarn Default: null GroupVersionSubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-group-groupversion.html#cfn-greengrass-group-groupversion-subscriptiondefinitionversionarn Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: InitialVersion: LoggerDefinitionVersionArn: !Ref 'GroupVersionLoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'GroupVersionDeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'GroupVersionFunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'GroupVersionCoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'GroupVersionResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'GroupVersionConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'GroupVersionSubscriptionDefinitionVersionArn' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-GroupVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: LoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-loggerdefinitionversionarn Default: null DeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-devicedefinitionversionarn Default: null FunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-functiondefinitionversionarn Default: null CoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-coredefinitionversionarn Default: null ResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-resourcedefinitionversionarn Default: null ConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-connectordefinitionversionarn Default: null SubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-subscriptiondefinitionversionarn Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: LoggerDefinitionVersionArn: !Ref 'LoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'DeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'FunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'CoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'ResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'ConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'SubscriptionDefinitionVersionArn' GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-GroupVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: LoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-loggerdefinitionversionarn Default: null DeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-devicedefinitionversionarn Default: null FunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-functiondefinitionversionarn Default: null CoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-coredefinitionversionarn Default: null ResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-resourcedefinitionversionarn Default: null ConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-connectordefinitionversionarn Default: null SubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-subscriptiondefinitionversionarn Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: LoggerDefinitionVersionArn: !Ref 'LoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'DeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'FunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'CoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'ResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'ConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'SubscriptionDefinitionVersionArn' GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-GroupVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: LoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-loggerdefinitionversionarn Default: null DeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-devicedefinitionversionarn Default: null FunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-functiondefinitionversionarn Default: null CoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-coredefinitionversionarn Default: null ResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-resourcedefinitionversionarn Default: null ConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-connectordefinitionversionarn Default: null SubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-subscriptiondefinitionversionarn Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: LoggerDefinitionVersionArn: !Ref 'LoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'DeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'FunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'CoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'ResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'ConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'SubscriptionDefinitionVersionArn' GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-GroupVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: LoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-loggerdefinitionversionarn Default: null DeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-devicedefinitionversionarn Default: null FunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-functiondefinitionversionarn Default: null CoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-coredefinitionversionarn Default: null ResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-resourcedefinitionversionarn Default: null ConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-connectordefinitionversionarn Default: null SubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-subscriptiondefinitionversionarn Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: LoggerDefinitionVersionArn: !Ref 'LoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'DeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'FunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'CoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'ResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'ConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'SubscriptionDefinitionVersionArn' GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-GroupVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: LoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-loggerdefinitionversionarn Default: null DeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-devicedefinitionversionarn Default: null FunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-functiondefinitionversionarn Default: null CoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-coredefinitionversionarn Default: null ResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-resourcedefinitionversionarn Default: null ConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-connectordefinitionversionarn Default: null SubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-subscriptiondefinitionversionarn Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: LoggerDefinitionVersionArn: !Ref 'LoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'DeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'FunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'CoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'ResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'ConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'SubscriptionDefinitionVersionArn' GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-GroupVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: LoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-loggerdefinitionversionarn Default: null DeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-devicedefinitionversionarn Default: null FunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-functiondefinitionversionarn Default: null CoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-coredefinitionversionarn Default: null ResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-resourcedefinitionversionarn Default: null ConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-connectordefinitionversionarn Default: null SubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-subscriptiondefinitionversionarn Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: LoggerDefinitionVersionArn: !Ref 'LoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'DeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'FunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'CoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'ResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'ConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'SubscriptionDefinitionVersionArn' GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-GroupVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: LoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-loggerdefinitionversionarn Default: null DeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-devicedefinitionversionarn Default: null FunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-functiondefinitionversionarn Default: null CoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-coredefinitionversionarn Default: null ResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-resourcedefinitionversionarn Default: null ConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-connectordefinitionversionarn Default: null SubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-subscriptiondefinitionversionarn Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: LoggerDefinitionVersionArn: !Ref 'LoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'DeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'FunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'CoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'ResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'ConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'SubscriptionDefinitionVersionArn' GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-GroupVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: LoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-loggerdefinitionversionarn Default: null DeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-devicedefinitionversionarn Default: null FunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-functiondefinitionversionarn Default: null CoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-coredefinitionversionarn Default: null ResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-resourcedefinitionversionarn Default: null ConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-connectordefinitionversionarn Default: null SubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-subscriptiondefinitionversionarn Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: LoggerDefinitionVersionArn: !Ref 'LoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'DeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'FunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'CoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'ResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'ConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'SubscriptionDefinitionVersionArn' GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-GroupVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: LoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-loggerdefinitionversionarn Default: null DeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-devicedefinitionversionarn Default: null FunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-functiondefinitionversionarn Default: null CoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-coredefinitionversionarn Default: null ResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-resourcedefinitionversionarn Default: null ConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-connectordefinitionversionarn Default: null SubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-subscriptiondefinitionversionarn Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: LoggerDefinitionVersionArn: !Ref 'LoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'DeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'FunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'CoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'ResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'ConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'SubscriptionDefinitionVersionArn' GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-GroupVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: LoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-loggerdefinitionversionarn Default: null DeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-devicedefinitionversionarn Default: null FunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-functiondefinitionversionarn Default: null CoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-coredefinitionversionarn Default: null ResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-resourcedefinitionversionarn Default: null ConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-connectordefinitionversionarn Default: null SubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-subscriptiondefinitionversionarn Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: LoggerDefinitionVersionArn: !Ref 'LoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'DeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'FunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'CoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'ResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'ConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'SubscriptionDefinitionVersionArn' GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-GroupVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: LoggerDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-loggerdefinitionversionarn Default: null DeviceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-devicedefinitionversionarn Default: null FunctionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-functiondefinitionversionarn Default: null CoreDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-coredefinitionversionarn Default: null ResourceDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-resourcedefinitionversionarn Default: null ConnectorDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-connectordefinitionversionarn Default: null SubscriptionDefinitionVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-subscriptiondefinitionversionarn Default: null GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: LoggerDefinitionVersionArn: !Ref 'LoggerDefinitionVersionArn' DeviceDefinitionVersionArn: !Ref 'DeviceDefinitionVersionArn' FunctionDefinitionVersionArn: !Ref 'FunctionDefinitionVersionArn' CoreDefinitionVersionArn: !Ref 'CoreDefinitionVersionArn' ResourceDefinitionVersionArn: !Ref 'ResourceDefinitionVersionArn' ConnectorDefinitionVersionArn: !Ref 'ConnectorDefinitionVersionArn' SubscriptionDefinitionVersionArn: !Ref 'SubscriptionDefinitionVersionArn' GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: InitialVersion: {} Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-Config/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-name ConfigData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-configdata Resources: Resource: Type: AWS::GroundStation::Config Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Properties: Name: !Ref 'Name' ConfigData: !Ref 'ConfigData' Outputs: Type: Value: GetAtt: - Resource - Type Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-Config/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-name ConfigData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-configdata Resources: Resource: Type: AWS::GroundStation::Config Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Properties: Name: !Ref 'Name' ConfigData: !Ref 'ConfigData' Outputs: Type: Value: GetAtt: - Resource - Type Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-Config/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-name ConfigData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-configdata Resources: Resource: Type: AWS::GroundStation::Config Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Properties: Name: !Ref 'Name' ConfigData: !Ref 'ConfigData' Outputs: Type: Value: GetAtt: - Resource - Type Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-Config/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-name ConfigData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-configdata Resources: Resource: Type: AWS::GroundStation::Config Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Properties: Name: !Ref 'Name' ConfigData: !Ref 'ConfigData' Outputs: Type: Value: GetAtt: - Resource - Type Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-Config/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-name ConfigData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-configdata Resources: Resource: Type: AWS::GroundStation::Config Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Properties: Name: !Ref 'Name' ConfigData: !Ref 'ConfigData' Outputs: Type: Value: GetAtt: - Resource - Type Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-Config/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-name ConfigData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-configdata Resources: Resource: Type: AWS::GroundStation::Config Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Properties: Name: !Ref 'Name' ConfigData: !Ref 'ConfigData' Outputs: Type: Value: GetAtt: - Resource - Type Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-DataflowEndpointGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Resources: Resource: Type: AWS::GroundStation::DataflowEndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Status: Value: GetAtt: - Resource - Status ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-DataflowEndpointGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Resources: Resource: Type: AWS::GroundStation::DataflowEndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Status: Value: GetAtt: - Resource - Status ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-DataflowEndpointGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Resources: Resource: Type: AWS::GroundStation::DataflowEndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Status: Value: GetAtt: - Resource - Status ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-DataflowEndpointGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Resources: Resource: Type: AWS::GroundStation::DataflowEndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Status: Value: GetAtt: - Resource - Status ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-DataflowEndpointGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Resources: Resource: Type: AWS::GroundStation::DataflowEndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Status: Value: GetAtt: - Resource - Status ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-DataflowEndpointGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Resources: Resource: Type: AWS::GroundStation::DataflowEndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Status: Value: GetAtt: - Resource - Status ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-MissionProfile/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-name ContactPrePassDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-contactprepassdurationseconds Default: null ContactPostPassDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-contactpostpassdurationseconds Default: null MinimumViableContactDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-minimumviablecontactdurationseconds TrackingConfigArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-trackingconfigarn Resources: Resource: Type: AWS::GroundStation::MissionProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Properties: Name: !Ref 'Name' ContactPrePassDurationSeconds: !Ref 'ContactPrePassDurationSeconds' ContactPostPassDurationSeconds: !Ref 'ContactPostPassDurationSeconds' MinimumViableContactDurationSeconds: !Ref 'MinimumViableContactDurationSeconds' TrackingConfigArn: !Ref 'TrackingConfigArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Region: Value: GetAtt: - Resource - Region ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-MissionProfile/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-name ContactPrePassDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-contactprepassdurationseconds Default: null ContactPostPassDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-contactpostpassdurationseconds Default: null MinimumViableContactDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-minimumviablecontactdurationseconds TrackingConfigArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-trackingconfigarn Resources: Resource: Type: AWS::GroundStation::MissionProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Properties: Name: !Ref 'Name' ContactPrePassDurationSeconds: !Ref 'ContactPrePassDurationSeconds' ContactPostPassDurationSeconds: !Ref 'ContactPostPassDurationSeconds' MinimumViableContactDurationSeconds: !Ref 'MinimumViableContactDurationSeconds' TrackingConfigArn: !Ref 'TrackingConfigArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Region: Value: GetAtt: - Resource - Region ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-MissionProfile/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-name ContactPrePassDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-contactprepassdurationseconds Default: null ContactPostPassDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-contactpostpassdurationseconds Default: null MinimumViableContactDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-minimumviablecontactdurationseconds TrackingConfigArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-trackingconfigarn Resources: Resource: Type: AWS::GroundStation::MissionProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Properties: Name: !Ref 'Name' ContactPrePassDurationSeconds: !Ref 'ContactPrePassDurationSeconds' ContactPostPassDurationSeconds: !Ref 'ContactPostPassDurationSeconds' MinimumViableContactDurationSeconds: !Ref 'MinimumViableContactDurationSeconds' TrackingConfigArn: !Ref 'TrackingConfigArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Region: Value: GetAtt: - Resource - Region ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-MissionProfile/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-name ContactPrePassDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-contactprepassdurationseconds Default: null ContactPostPassDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-contactpostpassdurationseconds Default: null MinimumViableContactDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-minimumviablecontactdurationseconds TrackingConfigArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-trackingconfigarn Resources: Resource: Type: AWS::GroundStation::MissionProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Properties: Name: !Ref 'Name' ContactPrePassDurationSeconds: !Ref 'ContactPrePassDurationSeconds' ContactPostPassDurationSeconds: !Ref 'ContactPostPassDurationSeconds' MinimumViableContactDurationSeconds: !Ref 'MinimumViableContactDurationSeconds' TrackingConfigArn: !Ref 'TrackingConfigArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Region: Value: GetAtt: - Resource - Region ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-MissionProfile/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-name ContactPrePassDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-contactprepassdurationseconds Default: null ContactPostPassDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-contactpostpassdurationseconds Default: null MinimumViableContactDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-minimumviablecontactdurationseconds TrackingConfigArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-trackingconfigarn Resources: Resource: Type: AWS::GroundStation::MissionProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Properties: Name: !Ref 'Name' ContactPrePassDurationSeconds: !Ref 'ContactPrePassDurationSeconds' ContactPostPassDurationSeconds: !Ref 'ContactPostPassDurationSeconds' MinimumViableContactDurationSeconds: !Ref 'MinimumViableContactDurationSeconds' TrackingConfigArn: !Ref 'TrackingConfigArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Region: Value: GetAtt: - Resource - Region ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GroundStation-MissionProfile/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-name ContactPrePassDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-contactprepassdurationseconds Default: null ContactPostPassDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-contactpostpassdurationseconds Default: null MinimumViableContactDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-minimumviablecontactdurationseconds TrackingConfigArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-trackingconfigarn Resources: Resource: Type: AWS::GroundStation::MissionProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Properties: Name: !Ref 'Name' ContactPrePassDurationSeconds: !Ref 'ContactPrePassDurationSeconds' ContactPostPassDurationSeconds: !Ref 'ContactPostPassDurationSeconds' MinimumViableContactDurationSeconds: !Ref 'MinimumViableContactDurationSeconds' TrackingConfigArn: !Ref 'TrackingConfigArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Region: Value: GetAtt: - Resource - Region ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Detector/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-findingpublishingfrequency Default: null Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Filter/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid FindingCriteriaCriterion: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-findingcriteria.html#cfn-guardduty-filter-findingcriteria-criterion Default: null FindingCriteriaConditionLt: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lt Default: null FindingCriteriaConditionGte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-gte Default: null FindingCriteriaConditionLte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lte Default: null Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: Criterion: !Ref 'FindingCriteriaCriterion' ItemType: Lt: !Ref 'FindingCriteriaConditionLt' Gte: !Ref 'FindingCriteriaConditionGte' Lte: !Ref 'FindingCriteriaConditionLte' Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Filter/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid FindingCriteriaCriterion: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-findingcriteria.html#cfn-guardduty-filter-findingcriteria-criterion Default: null FindingCriteriaConditionLt: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lt Default: null FindingCriteriaConditionGte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-gte Default: null FindingCriteriaConditionLte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lte Default: null Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: Criterion: !Ref 'FindingCriteriaCriterion' ItemType: Lt: !Ref 'FindingCriteriaConditionLt' Gte: !Ref 'FindingCriteriaConditionGte' Lte: !Ref 'FindingCriteriaConditionLte' Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Filter/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid FindingCriteriaCriterion: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-findingcriteria.html#cfn-guardduty-filter-findingcriteria-criterion Default: null FindingCriteriaConditionLt: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lt Default: null FindingCriteriaConditionGte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-gte Default: null FindingCriteriaConditionLte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lte Default: null Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: Criterion: !Ref 'FindingCriteriaCriterion' ItemType: Lt: !Ref 'FindingCriteriaConditionLt' Gte: !Ref 'FindingCriteriaConditionGte' Lte: !Ref 'FindingCriteriaConditionLte' Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Filter/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid FindingCriteriaCriterion: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-findingcriteria.html#cfn-guardduty-filter-findingcriteria-criterion Default: null FindingCriteriaConditionLt: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lt Default: null FindingCriteriaConditionGte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-gte Default: null FindingCriteriaConditionLte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lte Default: null Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: Criterion: !Ref 'FindingCriteriaCriterion' ItemType: Lt: !Ref 'FindingCriteriaConditionLt' Gte: !Ref 'FindingCriteriaConditionGte' Lte: !Ref 'FindingCriteriaConditionLte' Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Filter/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid FindingCriteriaCriterion: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-findingcriteria.html#cfn-guardduty-filter-findingcriteria-criterion Default: null FindingCriteriaConditionLt: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lt Default: null FindingCriteriaConditionGte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-gte Default: null FindingCriteriaConditionLte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lte Default: null Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: Criterion: !Ref 'FindingCriteriaCriterion' ItemType: Lt: !Ref 'FindingCriteriaConditionLt' Gte: !Ref 'FindingCriteriaConditionGte' Lte: !Ref 'FindingCriteriaConditionLte' Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Filter/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid FindingCriteriaCriterion: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-findingcriteria.html#cfn-guardduty-filter-findingcriteria-criterion Default: null FindingCriteriaConditionLt: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lt Default: null FindingCriteriaConditionGte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-gte Default: null FindingCriteriaConditionLte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lte Default: null Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: Criterion: !Ref 'FindingCriteriaCriterion' ItemType: Lt: !Ref 'FindingCriteriaConditionLt' Gte: !Ref 'FindingCriteriaConditionGte' Lte: !Ref 'FindingCriteriaConditionLte' Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Filter/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid FindingCriteriaCriterion: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-findingcriteria.html#cfn-guardduty-filter-findingcriteria-criterion Default: null FindingCriteriaConditionLt: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lt Default: null FindingCriteriaConditionGte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-gte Default: null FindingCriteriaConditionLte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lte Default: null Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: Criterion: !Ref 'FindingCriteriaCriterion' ItemType: Lt: !Ref 'FindingCriteriaConditionLt' Gte: !Ref 'FindingCriteriaConditionGte' Lte: !Ref 'FindingCriteriaConditionLte' Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Filter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid FindingCriteriaCriterion: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-findingcriteria.html#cfn-guardduty-filter-findingcriteria-criterion Default: null FindingCriteriaConditionLt: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lt Default: null FindingCriteriaConditionGte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-gte Default: null FindingCriteriaConditionLte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lte Default: null Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: Criterion: !Ref 'FindingCriteriaCriterion' ItemType: Lt: !Ref 'FindingCriteriaConditionLt' Gte: !Ref 'FindingCriteriaConditionGte' Lte: !Ref 'FindingCriteriaConditionLte' Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Filter/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid FindingCriteriaCriterion: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-findingcriteria.html#cfn-guardduty-filter-findingcriteria-criterion Default: null FindingCriteriaConditionLt: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lt Default: null FindingCriteriaConditionGte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-gte Default: null FindingCriteriaConditionLte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lte Default: null Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: Criterion: !Ref 'FindingCriteriaCriterion' ItemType: Lt: !Ref 'FindingCriteriaConditionLt' Gte: !Ref 'FindingCriteriaConditionGte' Lte: !Ref 'FindingCriteriaConditionLte' Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Filter/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid FindingCriteriaCriterion: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-findingcriteria.html#cfn-guardduty-filter-findingcriteria-criterion Default: null FindingCriteriaConditionLt: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lt Default: null FindingCriteriaConditionGte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-gte Default: null FindingCriteriaConditionLte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lte Default: null Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: Criterion: !Ref 'FindingCriteriaCriterion' ItemType: Lt: !Ref 'FindingCriteriaConditionLt' Gte: !Ref 'FindingCriteriaConditionGte' Lte: !Ref 'FindingCriteriaConditionLte' Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Filter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid FindingCriteriaCriterion: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-findingcriteria.html#cfn-guardduty-filter-findingcriteria-criterion Default: null FindingCriteriaConditionLt: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lt Default: null FindingCriteriaConditionGte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-gte Default: null FindingCriteriaConditionLte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lte Default: null Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: Criterion: !Ref 'FindingCriteriaCriterion' ItemType: Lt: !Ref 'FindingCriteriaConditionLt' Gte: !Ref 'FindingCriteriaConditionGte' Lte: !Ref 'FindingCriteriaConditionLte' Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Filter/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid FindingCriteriaCriterion: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-findingcriteria.html#cfn-guardduty-filter-findingcriteria-criterion Default: null FindingCriteriaConditionLt: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lt Default: null FindingCriteriaConditionGte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-gte Default: null FindingCriteriaConditionLte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lte Default: null Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: Criterion: !Ref 'FindingCriteriaCriterion' ItemType: Lt: !Ref 'FindingCriteriaConditionLt' Gte: !Ref 'FindingCriteriaConditionGte' Lte: !Ref 'FindingCriteriaConditionLte' Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Filter/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid FindingCriteriaCriterion: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-findingcriteria.html#cfn-guardduty-filter-findingcriteria-criterion Default: null FindingCriteriaConditionLt: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lt Default: null FindingCriteriaConditionGte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-gte Default: null FindingCriteriaConditionLte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lte Default: null Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: Criterion: !Ref 'FindingCriteriaCriterion' ItemType: Lt: !Ref 'FindingCriteriaConditionLt' Gte: !Ref 'FindingCriteriaConditionGte' Lte: !Ref 'FindingCriteriaConditionLte' Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Filter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid FindingCriteriaCriterion: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-findingcriteria.html#cfn-guardduty-filter-findingcriteria-criterion Default: null FindingCriteriaConditionLt: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lt Default: null FindingCriteriaConditionGte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-gte Default: null FindingCriteriaConditionLte: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-filter-condition.html#cfn-guardduty-filter-condition-lte Default: null Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: Criterion: !Ref 'FindingCriteriaCriterion' ItemType: Lt: !Ref 'FindingCriteriaConditionLt' Gte: !Ref 'FindingCriteriaConditionGte' Lte: !Ref 'FindingCriteriaConditionLte' Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-IPSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-IPSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-IPSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-IPSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-IPSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-IPSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-IPSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-IPSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-IPSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-IPSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-IPSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-IPSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-IPSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-IPSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Master/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid Default: null Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' InvitationId: !Ref 'InvitationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Master/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid Default: null Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' InvitationId: !Ref 'InvitationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Master/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid Default: null Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' InvitationId: !Ref 'InvitationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Master/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid Default: null Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' InvitationId: !Ref 'InvitationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Master/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid Default: null Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' InvitationId: !Ref 'InvitationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Master/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid Default: null Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' InvitationId: !Ref 'InvitationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Master/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid Default: null Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' InvitationId: !Ref 'InvitationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Master/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid Default: null Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' InvitationId: !Ref 'InvitationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Master/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid Default: null Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' InvitationId: !Ref 'InvitationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Master/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid Default: null Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' InvitationId: !Ref 'InvitationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Master/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid Default: null Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' InvitationId: !Ref 'InvitationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Master/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid Default: null Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' InvitationId: !Ref 'InvitationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Master/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid Default: null Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' InvitationId: !Ref 'InvitationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Master/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid Default: null Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' InvitationId: !Ref 'InvitationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Member/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status Default: null MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message Default: null DisableEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification AllowedValues: - 'true' - 'false' Default: null DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: Status: !Ref 'Status' MemberId: !Ref 'MemberId' Email: !Ref 'Email' Message: !Ref 'Message' DisableEmailNotification: !Ref 'DisableEmailNotification' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Member/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status Default: null MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message Default: null DisableEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification AllowedValues: - 'true' - 'false' Default: null DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: Status: !Ref 'Status' MemberId: !Ref 'MemberId' Email: !Ref 'Email' Message: !Ref 'Message' DisableEmailNotification: !Ref 'DisableEmailNotification' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Member/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status Default: null MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message Default: null DisableEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification AllowedValues: - 'true' - 'false' Default: null DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: Status: !Ref 'Status' MemberId: !Ref 'MemberId' Email: !Ref 'Email' Message: !Ref 'Message' DisableEmailNotification: !Ref 'DisableEmailNotification' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Member/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status Default: null MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message Default: null DisableEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification AllowedValues: - 'true' - 'false' Default: null DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: Status: !Ref 'Status' MemberId: !Ref 'MemberId' Email: !Ref 'Email' Message: !Ref 'Message' DisableEmailNotification: !Ref 'DisableEmailNotification' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Member/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status Default: null MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message Default: null DisableEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification AllowedValues: - 'true' - 'false' Default: null DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: Status: !Ref 'Status' MemberId: !Ref 'MemberId' Email: !Ref 'Email' Message: !Ref 'Message' DisableEmailNotification: !Ref 'DisableEmailNotification' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Member/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status Default: null MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message Default: null DisableEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification AllowedValues: - 'true' - 'false' Default: null DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: Status: !Ref 'Status' MemberId: !Ref 'MemberId' Email: !Ref 'Email' Message: !Ref 'Message' DisableEmailNotification: !Ref 'DisableEmailNotification' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Member/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status Default: null MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message Default: null DisableEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification AllowedValues: - 'true' - 'false' Default: null DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: Status: !Ref 'Status' MemberId: !Ref 'MemberId' Email: !Ref 'Email' Message: !Ref 'Message' DisableEmailNotification: !Ref 'DisableEmailNotification' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Member/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status Default: null MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message Default: null DisableEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification AllowedValues: - 'true' - 'false' Default: null DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: Status: !Ref 'Status' MemberId: !Ref 'MemberId' Email: !Ref 'Email' Message: !Ref 'Message' DisableEmailNotification: !Ref 'DisableEmailNotification' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Member/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status Default: null MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message Default: null DisableEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification AllowedValues: - 'true' - 'false' Default: null DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: Status: !Ref 'Status' MemberId: !Ref 'MemberId' Email: !Ref 'Email' Message: !Ref 'Message' DisableEmailNotification: !Ref 'DisableEmailNotification' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Member/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status Default: null MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message Default: null DisableEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification AllowedValues: - 'true' - 'false' Default: null DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: Status: !Ref 'Status' MemberId: !Ref 'MemberId' Email: !Ref 'Email' Message: !Ref 'Message' DisableEmailNotification: !Ref 'DisableEmailNotification' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Member/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status Default: null MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message Default: null DisableEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification AllowedValues: - 'true' - 'false' Default: null DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: Status: !Ref 'Status' MemberId: !Ref 'MemberId' Email: !Ref 'Email' Message: !Ref 'Message' DisableEmailNotification: !Ref 'DisableEmailNotification' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Member/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status Default: null MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message Default: null DisableEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification AllowedValues: - 'true' - 'false' Default: null DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: Status: !Ref 'Status' MemberId: !Ref 'MemberId' Email: !Ref 'Email' Message: !Ref 'Message' DisableEmailNotification: !Ref 'DisableEmailNotification' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Member/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status Default: null MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message Default: null DisableEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification AllowedValues: - 'true' - 'false' Default: null DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: Status: !Ref 'Status' MemberId: !Ref 'MemberId' Email: !Ref 'Email' Message: !Ref 'Message' DisableEmailNotification: !Ref 'DisableEmailNotification' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-Member/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status Default: null MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email Message: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message Default: null DisableEmailNotification: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification AllowedValues: - 'true' - 'false' Default: null DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: Status: !Ref 'Status' MemberId: !Ref 'MemberId' Email: !Ref 'Email' Message: !Ref 'Message' DisableEmailNotification: !Ref 'DisableEmailNotification' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name Default: null Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Name: !Ref 'Name' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-AccessKey/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: Serial: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-serial Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-status Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: Serial: !Ref 'Serial' Status: !Ref 'Status' UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Group/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-groupname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html#cfn-iam-group-path Default: null Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Properties: GroupName: !Ref 'GroupName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-InstanceProfile/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Parameters: InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-instanceprofilename Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#cfn-iam-instanceprofile-path Default: null Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Properties: InstanceProfileName: !Ref 'InstanceProfileName' Path: !Ref 'Path' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ManagedPolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-description Default: null ManagedPolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-managedpolicyname Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-ec2-dhcpoptions-path Default: null PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: Description: !Ref 'Description' ManagedPolicyName: !Ref 'ManagedPolicyName' Path: !Ref 'Path' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Policy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-Role/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-description Default: null MaxSessionDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-maxsessionduration Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-permissionsboundary Default: null RoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-rolename Default: null Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Description: !Ref 'Description' MaxSessionDuration: !Ref 'MaxSessionDuration' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' RoleName: !Ref 'RoleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: CustomSuffix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-customsuffix Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-description Default: null AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: CustomSuffix: !Ref 'CustomSuffix' Description: !Ref 'Description' AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-User/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Parameters: LoginProfilePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password LoginProfilePasswordResetRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired AllowedValues: - 'true' - 'false' Default: null Path: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-path Default: null PermissionsBoundary: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-permissionsboundary Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html#cfn-iam-user-username Default: null Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Properties: LoginProfile: Password: !Ref 'LoginProfilePassword' PasswordResetRequired: !Ref 'LoginProfilePasswordResetRequired' Path: !Ref 'Path' PermissionsBoundary: !Ref 'PermissionsBoundary' UserName: !Ref 'UserName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IAM-UserToGroupAddition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Component/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description Default: null ChangeDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription Default: null Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid Default: null Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri Default: null Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Description: !Ref 'Description' ChangeDescription: !Ref 'ChangeDescription' Platform: !Ref 'Platform' Data: !Ref 'Data' KmsKeyId: !Ref 'KmsKeyId' Uri: !Ref 'Uri' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-description Default: null Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-Image/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageTestsConfigurationImageTestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-description Default: null ImageTestsConfigurationImageTestsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-imagetestsenabled AllowedValues: - 'true' - 'false' Default: null ImageTestsConfigurationTimeoutMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-status Default: null ScheduleScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-scheduleexpression Default: null SchedulePipelineExecutionStartCondition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition Default: null ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn DistributionConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-distributionconfigurationarn Default: null InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn EnhancedImageMetadataEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-enhancedimagemetadataenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ImageTestsConfiguration: ImageTestsEnabled: !Ref 'ImageTestsConfigurationImageTestsEnabled' TimeoutMinutes: !Ref 'ImageTestsConfigurationTimeoutMinutes' Status: !Ref 'Status' Schedule: ScheduleExpression: !Ref 'ScheduleScheduleExpression' PipelineExecutionStartCondition: !Ref 'SchedulePipelineExecutionStartCondition' ImageRecipeArn: !Ref 'ImageRecipeArn' DistributionConfigurationArn: !Ref 'DistributionConfigurationArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' EnhancedImageMetadataEnabled: !Ref 'EnhancedImageMetadataEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-description Default: null Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage WorkingDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-workingdirectory Default: null Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' WorkingDirectory: !Ref 'WorkingDirectory' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-description Default: null Logging: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid Default: null KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair Default: null TerminateInstanceOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure AllowedValues: - 'true' - 'false' Default: null InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn Default: null Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Logging: !Ref 'Logging' SubnetId: !Ref 'SubnetId' KeyPair: !Ref 'KeyPair' TerminateInstanceOnFailure: !Ref 'TerminateInstanceOnFailure' InstanceProfileName: !Ref 'InstanceProfileName' SnsTopicArn: !Ref 'SnsTopicArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTarget/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Parameters: AssessmentTargetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-assessmenttargetname Default: null ResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-resourcegrouparn Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Properties: AssessmentTargetName: !Ref 'AssessmentTargetName' ResourceGroupArn: !Ref 'ResourceGroupArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTarget/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Parameters: AssessmentTargetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-assessmenttargetname Default: null ResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-resourcegrouparn Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Properties: AssessmentTargetName: !Ref 'AssessmentTargetName' ResourceGroupArn: !Ref 'ResourceGroupArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTarget/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Parameters: AssessmentTargetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-assessmenttargetname Default: null ResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-resourcegrouparn Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Properties: AssessmentTargetName: !Ref 'AssessmentTargetName' ResourceGroupArn: !Ref 'ResourceGroupArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTarget/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Parameters: AssessmentTargetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-assessmenttargetname Default: null ResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-resourcegrouparn Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Properties: AssessmentTargetName: !Ref 'AssessmentTargetName' ResourceGroupArn: !Ref 'ResourceGroupArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTarget/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Parameters: AssessmentTargetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-assessmenttargetname Default: null ResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-resourcegrouparn Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Properties: AssessmentTargetName: !Ref 'AssessmentTargetName' ResourceGroupArn: !Ref 'ResourceGroupArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTarget/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Parameters: AssessmentTargetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-assessmenttargetname Default: null ResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-resourcegrouparn Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Properties: AssessmentTargetName: !Ref 'AssessmentTargetName' ResourceGroupArn: !Ref 'ResourceGroupArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTarget/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Parameters: AssessmentTargetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-assessmenttargetname Default: null ResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-resourcegrouparn Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Properties: AssessmentTargetName: !Ref 'AssessmentTargetName' ResourceGroupArn: !Ref 'ResourceGroupArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTarget/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Parameters: AssessmentTargetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-assessmenttargetname Default: null ResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-resourcegrouparn Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Properties: AssessmentTargetName: !Ref 'AssessmentTargetName' ResourceGroupArn: !Ref 'ResourceGroupArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTarget/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Parameters: AssessmentTargetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-assessmenttargetname Default: null ResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-resourcegrouparn Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Properties: AssessmentTargetName: !Ref 'AssessmentTargetName' ResourceGroupArn: !Ref 'ResourceGroupArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTarget/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Parameters: AssessmentTargetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-assessmenttargetname Default: null ResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-resourcegrouparn Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Properties: AssessmentTargetName: !Ref 'AssessmentTargetName' ResourceGroupArn: !Ref 'ResourceGroupArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTarget/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Parameters: AssessmentTargetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-assessmenttargetname Default: null ResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-resourcegrouparn Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Properties: AssessmentTargetName: !Ref 'AssessmentTargetName' ResourceGroupArn: !Ref 'ResourceGroupArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTarget/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Parameters: AssessmentTargetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-assessmenttargetname Default: null ResourceGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-resourcegrouparn Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Properties: AssessmentTargetName: !Ref 'AssessmentTargetName' ResourceGroupArn: !Ref 'ResourceGroupArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds AssessmentTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttemplatename Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' AssessmentTemplateName: !Ref 'AssessmentTemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds AssessmentTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttemplatename Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' AssessmentTemplateName: !Ref 'AssessmentTemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds AssessmentTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttemplatename Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' AssessmentTemplateName: !Ref 'AssessmentTemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds AssessmentTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttemplatename Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' AssessmentTemplateName: !Ref 'AssessmentTemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds AssessmentTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttemplatename Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' AssessmentTemplateName: !Ref 'AssessmentTemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds AssessmentTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttemplatename Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' AssessmentTemplateName: !Ref 'AssessmentTemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds AssessmentTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttemplatename Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' AssessmentTemplateName: !Ref 'AssessmentTemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds AssessmentTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttemplatename Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' AssessmentTemplateName: !Ref 'AssessmentTemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds AssessmentTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttemplatename Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' AssessmentTemplateName: !Ref 'AssessmentTemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds AssessmentTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttemplatename Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' AssessmentTemplateName: !Ref 'AssessmentTemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds AssessmentTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttemplatename Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' AssessmentTemplateName: !Ref 'AssessmentTemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds AssessmentTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttemplatename Default: null Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' AssessmentTemplateName: !Ref 'AssessmentTemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-ResourceGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-ResourceGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-ResourceGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-ResourceGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-ResourceGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-ResourceGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-ResourceGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-ResourceGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-ResourceGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-ResourceGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-ResourceGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Inspector-ResourceGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CACertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-cacertificatepem Default: null CertificatePem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatepem Default: null CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Default: null CertificateMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatemode Default: null Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CACertificatePem: !Ref 'CACertificatePem' CertificatePem: !Ref 'CertificatePem' CertificateSigningRequest: !Ref 'CertificateSigningRequest' CertificateMode: !Ref 'CertificateMode' Status: !Ref 'Status' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Certificate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Policy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname Default: null Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatename Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-description Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-enabled AllowedValues: - 'true' - 'false' Default: null ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody ProvisioningHookTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-targetarn Default: null ProvisioningHookPayloadVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-provisioningtemplate-provisioninghook.html#cfn-iot-provisioningtemplate-provisioninghook-payloadversion Default: null Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: TemplateName: !Ref 'TemplateName' Description: !Ref 'Description' Enabled: !Ref 'Enabled' ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' PreProvisioningHook: TargetArn: !Ref 'ProvisioningHookTargetArn' PayloadVersion: !Ref 'ProvisioningHookPayloadVersion' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-Thing/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Parameters: ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname Default: null Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Properties: AttributePayload: {} ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT-TopicRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename Default: null TopicRulePayloadAwsIotSqlVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion Default: null TopicRulePayloadDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description Default: null TopicRulePayloadActionCloudwatchAlarmActionAlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname TopicRulePayloadActionCloudwatchAlarmActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn TopicRulePayloadActionCloudwatchAlarmActionStateReason: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason TopicRulePayloadActionCloudwatchAlarmActionStateValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue TopicRulePayloadActionCloudwatchMetricActionMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname TopicRulePayloadActionCloudwatchMetricActionMetricNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp Default: null TopicRulePayloadActionCloudwatchMetricActionMetricUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit TopicRulePayloadActionCloudwatchMetricActionMetricValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue TopicRulePayloadActionCloudwatchMetricActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn TopicRulePayloadActionDynamoDBActionHashKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield TopicRulePayloadActionDynamoDBActionHashKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype Default: null TopicRulePayloadActionDynamoDBActionHashKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue TopicRulePayloadActionDynamoDBActionPayloadField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyField: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield Default: null TopicRulePayloadActionDynamoDBActionRangeKeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype Default: null TopicRulePayloadActionDynamoDBActionRangeKeyValue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue Default: null TopicRulePayloadActionDynamoDBActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn TopicRulePayloadActionDynamoDBActionTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename TopicRulePayloadActionDynamoDBv2ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn Default: null TopicRulePayloadActionElasticsearchActionEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint TopicRulePayloadActionElasticsearchActionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id TopicRulePayloadActionElasticsearchActionIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index TopicRulePayloadActionElasticsearchActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn TopicRulePayloadActionElasticsearchActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type TopicRulePayloadActionFirehoseActionDeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname TopicRulePayloadActionFirehoseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn TopicRulePayloadActionFirehoseActionSeparator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator Default: null TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-rolearn TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-servicename TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sigv4authorization.html#cfn-iot-topicrule-sigv4authorization-signingregion TopicRulePayloadActionHttpActionConfirmationUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl Default: null TopicRulePayloadActionHttpActionUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-url TopicRulePayloadActionIotAnalyticsActionChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname TopicRulePayloadActionIotAnalyticsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-rolearn TopicRulePayloadActionIotEventsActionInputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname TopicRulePayloadActionIotEventsActionMessageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-messageid Default: null TopicRulePayloadActionIotEventsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-rolearn TopicRulePayloadActionIotSiteWiseActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotsitewiseaction.html#cfn-iot-topicrule-iotsitewiseaction-rolearn TopicRulePayloadActionKinesisActionPartitionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey Default: null TopicRulePayloadActionKinesisActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn TopicRulePayloadActionKinesisActionStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname TopicRulePayloadActionLambdaActionFunctionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn Default: null TopicRulePayloadActionRepublishActionQos: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-qos Default: null TopicRulePayloadActionRepublishActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn TopicRulePayloadActionRepublishActionTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic TopicRulePayloadActionS3ActionBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname TopicRulePayloadActionS3ActionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key TopicRulePayloadActionS3ActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn TopicRulePayloadActionSnsActionMessageFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat Default: null TopicRulePayloadActionSnsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn TopicRulePayloadActionSnsActionTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn TopicRulePayloadActionSqsActionQueueUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl TopicRulePayloadActionSqsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn TopicRulePayloadActionSqsActionUseBase64: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64 AllowedValues: - 'true' - 'false' Default: null TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-executionnameprefix Default: null TopicRulePayloadActionStepFunctionsActionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-rolearn TopicRulePayloadActionStepFunctionsActionStateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-stepfunctionsaction.html#cfn-iot-topicrule-stepfunctionsaction-statemachinename TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: RuleName: !Ref 'RuleName' TopicRulePayload: AwsIotSqlVersion: !Ref 'TopicRulePayloadAwsIotSqlVersion' Description: !Ref 'TopicRulePayloadDescription' ErrorAction: CloudwatchAlarm: AlarmName: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionAlarmName' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionRoleArn' StateReason: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateReason' StateValue: !Ref 'TopicRulePayloadActionCloudwatchAlarmActionStateValue' CloudwatchMetric: MetricName: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricName' MetricNamespace: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricNamespace' MetricTimestamp: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricTimestamp' MetricUnit: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricUnit' MetricValue: !Ref 'TopicRulePayloadActionCloudwatchMetricActionMetricValue' RoleArn: !Ref 'TopicRulePayloadActionCloudwatchMetricActionRoleArn' DynamoDB: HashKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyField' HashKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyType' HashKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionHashKeyValue' PayloadField: !Ref 'TopicRulePayloadActionDynamoDBActionPayloadField' RangeKeyField: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyField' RangeKeyType: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyType' RangeKeyValue: !Ref 'TopicRulePayloadActionDynamoDBActionRangeKeyValue' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBActionRoleArn' TableName: !Ref 'TopicRulePayloadActionDynamoDBActionTableName' DynamoDBv2: PutItem: TableName: !Ref 'TopicRulePayloadActionDynamoDBv2ActionPutItemInputTableName' RoleArn: !Ref 'TopicRulePayloadActionDynamoDBv2ActionRoleArn' Elasticsearch: Endpoint: !Ref 'TopicRulePayloadActionElasticsearchActionEndpoint' Id: !Ref 'TopicRulePayloadActionElasticsearchActionId' Index: !Ref 'TopicRulePayloadActionElasticsearchActionIndex' RoleArn: !Ref 'TopicRulePayloadActionElasticsearchActionRoleArn' Type: !Ref 'TopicRulePayloadActionElasticsearchActionType' Firehose: DeliveryStreamName: !Ref 'TopicRulePayloadActionFirehoseActionDeliveryStreamName' RoleArn: !Ref 'TopicRulePayloadActionFirehoseActionRoleArn' Separator: !Ref 'TopicRulePayloadActionFirehoseActionSeparator' Http: Auth: Sigv4: RoleArn: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationRoleArn' ServiceName: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationServiceName' SigningRegion: !Ref 'TopicRulePayloadActionHttpActionHttpAuthorizationSigV4AuthorizationSigningRegion' ConfirmationUrl: !Ref 'TopicRulePayloadActionHttpActionConfirmationUrl' Url: !Ref 'TopicRulePayloadActionHttpActionUrl' IotAnalytics: ChannelName: !Ref 'TopicRulePayloadActionIotAnalyticsActionChannelName' RoleArn: !Ref 'TopicRulePayloadActionIotAnalyticsActionRoleArn' IotEvents: InputName: !Ref 'TopicRulePayloadActionIotEventsActionInputName' MessageId: !Ref 'TopicRulePayloadActionIotEventsActionMessageId' RoleArn: !Ref 'TopicRulePayloadActionIotEventsActionRoleArn' IotSiteWise: RoleArn: !Ref 'TopicRulePayloadActionIotSiteWiseActionRoleArn' Kinesis: PartitionKey: !Ref 'TopicRulePayloadActionKinesisActionPartitionKey' RoleArn: !Ref 'TopicRulePayloadActionKinesisActionRoleArn' StreamName: !Ref 'TopicRulePayloadActionKinesisActionStreamName' Lambda: FunctionArn: !Ref 'TopicRulePayloadActionLambdaActionFunctionArn' Republish: Qos: !Ref 'TopicRulePayloadActionRepublishActionQos' RoleArn: !Ref 'TopicRulePayloadActionRepublishActionRoleArn' Topic: !Ref 'TopicRulePayloadActionRepublishActionTopic' S3: BucketName: !Ref 'TopicRulePayloadActionS3ActionBucketName' Key: !Ref 'TopicRulePayloadActionS3ActionKey' RoleArn: !Ref 'TopicRulePayloadActionS3ActionRoleArn' Sns: MessageFormat: !Ref 'TopicRulePayloadActionSnsActionMessageFormat' RoleArn: !Ref 'TopicRulePayloadActionSnsActionRoleArn' TargetArn: !Ref 'TopicRulePayloadActionSnsActionTargetArn' Sqs: QueueUrl: !Ref 'TopicRulePayloadActionSqsActionQueueUrl' RoleArn: !Ref 'TopicRulePayloadActionSqsActionRoleArn' UseBase64: !Ref 'TopicRulePayloadActionSqsActionUseBase64' StepFunctions: ExecutionNamePrefix: !Ref 'TopicRulePayloadActionStepFunctionsActionExecutionNamePrefix' RoleArn: !Ref 'TopicRulePayloadActionStepFunctionsActionRoleArn' StateMachineName: !Ref 'TopicRulePayloadActionStepFunctionsActionStateMachineName' RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Device/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Parameters: DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-deviceid Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoT1Click::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Properties: DeviceId: !Ref 'DeviceId' Enabled: !Ref 'Enabled' Outputs: DeviceId: Value: GetAtt: - Resource - DeviceId Enabled: Value: GetAtt: - Resource - Enabled Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Device/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Parameters: DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-deviceid Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoT1Click::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Properties: DeviceId: !Ref 'DeviceId' Enabled: !Ref 'Enabled' Outputs: DeviceId: Value: GetAtt: - Resource - DeviceId Enabled: Value: GetAtt: - Resource - Enabled Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Device/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Parameters: DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-deviceid Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoT1Click::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Properties: DeviceId: !Ref 'DeviceId' Enabled: !Ref 'Enabled' Outputs: DeviceId: Value: GetAtt: - Resource - DeviceId Enabled: Value: GetAtt: - Resource - Enabled Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Device/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Parameters: DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-deviceid Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoT1Click::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Properties: DeviceId: !Ref 'DeviceId' Enabled: !Ref 'Enabled' Outputs: DeviceId: Value: GetAtt: - Resource - DeviceId Enabled: Value: GetAtt: - Resource - Enabled Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Device/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Parameters: DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-deviceid Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoT1Click::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Properties: DeviceId: !Ref 'DeviceId' Enabled: !Ref 'Enabled' Outputs: DeviceId: Value: GetAtt: - Resource - DeviceId Enabled: Value: GetAtt: - Resource - Enabled Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Device/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Parameters: DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-deviceid Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoT1Click::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Properties: DeviceId: !Ref 'DeviceId' Enabled: !Ref 'Enabled' Outputs: DeviceId: Value: GetAtt: - Resource - DeviceId Enabled: Value: GetAtt: - Resource - Enabled Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Device/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Parameters: DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-deviceid Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoT1Click::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Properties: DeviceId: !Ref 'DeviceId' Enabled: !Ref 'Enabled' Outputs: DeviceId: Value: GetAtt: - Resource - DeviceId Enabled: Value: GetAtt: - Resource - Enabled Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Placement/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Parameters: PlacementName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-placementname Default: null ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-projectname AssociatedDevices: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-associateddevices Default: null Attributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-attributes Default: null Resources: Resource: Type: AWS::IoT1Click::Placement Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Properties: PlacementName: !Ref 'PlacementName' ProjectName: !Ref 'ProjectName' AssociatedDevices: !Ref 'AssociatedDevices' Attributes: !Ref 'Attributes' Outputs: PlacementName: Value: GetAtt: - Resource - PlacementName ProjectName: Value: GetAtt: - Resource - ProjectName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Placement/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Parameters: PlacementName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-placementname Default: null ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-projectname AssociatedDevices: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-associateddevices Default: null Attributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-attributes Default: null Resources: Resource: Type: AWS::IoT1Click::Placement Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Properties: PlacementName: !Ref 'PlacementName' ProjectName: !Ref 'ProjectName' AssociatedDevices: !Ref 'AssociatedDevices' Attributes: !Ref 'Attributes' Outputs: PlacementName: Value: GetAtt: - Resource - PlacementName ProjectName: Value: GetAtt: - Resource - ProjectName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Placement/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Parameters: PlacementName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-placementname Default: null ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-projectname AssociatedDevices: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-associateddevices Default: null Attributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-attributes Default: null Resources: Resource: Type: AWS::IoT1Click::Placement Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Properties: PlacementName: !Ref 'PlacementName' ProjectName: !Ref 'ProjectName' AssociatedDevices: !Ref 'AssociatedDevices' Attributes: !Ref 'Attributes' Outputs: PlacementName: Value: GetAtt: - Resource - PlacementName ProjectName: Value: GetAtt: - Resource - ProjectName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Placement/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Parameters: PlacementName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-placementname Default: null ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-projectname AssociatedDevices: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-associateddevices Default: null Attributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-attributes Default: null Resources: Resource: Type: AWS::IoT1Click::Placement Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Properties: PlacementName: !Ref 'PlacementName' ProjectName: !Ref 'ProjectName' AssociatedDevices: !Ref 'AssociatedDevices' Attributes: !Ref 'Attributes' Outputs: PlacementName: Value: GetAtt: - Resource - PlacementName ProjectName: Value: GetAtt: - Resource - ProjectName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Placement/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Parameters: PlacementName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-placementname Default: null ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-projectname AssociatedDevices: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-associateddevices Default: null Attributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-attributes Default: null Resources: Resource: Type: AWS::IoT1Click::Placement Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Properties: PlacementName: !Ref 'PlacementName' ProjectName: !Ref 'ProjectName' AssociatedDevices: !Ref 'AssociatedDevices' Attributes: !Ref 'Attributes' Outputs: PlacementName: Value: GetAtt: - Resource - PlacementName ProjectName: Value: GetAtt: - Resource - ProjectName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Placement/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Parameters: PlacementName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-placementname Default: null ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-projectname AssociatedDevices: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-associateddevices Default: null Attributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-attributes Default: null Resources: Resource: Type: AWS::IoT1Click::Placement Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Properties: PlacementName: !Ref 'PlacementName' ProjectName: !Ref 'ProjectName' AssociatedDevices: !Ref 'AssociatedDevices' Attributes: !Ref 'Attributes' Outputs: PlacementName: Value: GetAtt: - Resource - PlacementName ProjectName: Value: GetAtt: - Resource - ProjectName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Placement/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Parameters: PlacementName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-placementname Default: null ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-projectname AssociatedDevices: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-associateddevices Default: null Attributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-attributes Default: null Resources: Resource: Type: AWS::IoT1Click::Placement Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Properties: PlacementName: !Ref 'PlacementName' ProjectName: !Ref 'ProjectName' AssociatedDevices: !Ref 'AssociatedDevices' Attributes: !Ref 'Attributes' Outputs: PlacementName: Value: GetAtt: - Resource - PlacementName ProjectName: Value: GetAtt: - Resource - ProjectName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Project/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#cfn-iot1click-project-description Default: null PlacementTemplateDeviceTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-devicetemplates Default: null PlacementTemplateDefaultAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-defaultattributes Default: null ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#cfn-iot1click-project-projectname Default: null Resources: Resource: Type: AWS::IoT1Click::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Properties: Description: !Ref 'Description' PlacementTemplate: DeviceTemplates: !Ref 'PlacementTemplateDeviceTemplates' DefaultAttributes: !Ref 'PlacementTemplateDefaultAttributes' ProjectName: !Ref 'ProjectName' Outputs: ProjectName: Value: GetAtt: - Resource - ProjectName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Project/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#cfn-iot1click-project-description Default: null PlacementTemplateDeviceTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-devicetemplates Default: null PlacementTemplateDefaultAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-defaultattributes Default: null ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#cfn-iot1click-project-projectname Default: null Resources: Resource: Type: AWS::IoT1Click::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Properties: Description: !Ref 'Description' PlacementTemplate: DeviceTemplates: !Ref 'PlacementTemplateDeviceTemplates' DefaultAttributes: !Ref 'PlacementTemplateDefaultAttributes' ProjectName: !Ref 'ProjectName' Outputs: ProjectName: Value: GetAtt: - Resource - ProjectName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Project/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#cfn-iot1click-project-description Default: null PlacementTemplateDeviceTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-devicetemplates Default: null PlacementTemplateDefaultAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-defaultattributes Default: null ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#cfn-iot1click-project-projectname Default: null Resources: Resource: Type: AWS::IoT1Click::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Properties: Description: !Ref 'Description' PlacementTemplate: DeviceTemplates: !Ref 'PlacementTemplateDeviceTemplates' DefaultAttributes: !Ref 'PlacementTemplateDefaultAttributes' ProjectName: !Ref 'ProjectName' Outputs: ProjectName: Value: GetAtt: - Resource - ProjectName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Project/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#cfn-iot1click-project-description Default: null PlacementTemplateDeviceTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-devicetemplates Default: null PlacementTemplateDefaultAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-defaultattributes Default: null ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#cfn-iot1click-project-projectname Default: null Resources: Resource: Type: AWS::IoT1Click::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Properties: Description: !Ref 'Description' PlacementTemplate: DeviceTemplates: !Ref 'PlacementTemplateDeviceTemplates' DefaultAttributes: !Ref 'PlacementTemplateDefaultAttributes' ProjectName: !Ref 'ProjectName' Outputs: ProjectName: Value: GetAtt: - Resource - ProjectName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Project/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#cfn-iot1click-project-description Default: null PlacementTemplateDeviceTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-devicetemplates Default: null PlacementTemplateDefaultAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-defaultattributes Default: null ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#cfn-iot1click-project-projectname Default: null Resources: Resource: Type: AWS::IoT1Click::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Properties: Description: !Ref 'Description' PlacementTemplate: DeviceTemplates: !Ref 'PlacementTemplateDeviceTemplates' DefaultAttributes: !Ref 'PlacementTemplateDefaultAttributes' ProjectName: !Ref 'ProjectName' Outputs: ProjectName: Value: GetAtt: - Resource - ProjectName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Project/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#cfn-iot1click-project-description Default: null PlacementTemplateDeviceTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-devicetemplates Default: null PlacementTemplateDefaultAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-defaultattributes Default: null ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#cfn-iot1click-project-projectname Default: null Resources: Resource: Type: AWS::IoT1Click::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Properties: Description: !Ref 'Description' PlacementTemplate: DeviceTemplates: !Ref 'PlacementTemplateDeviceTemplates' DefaultAttributes: !Ref 'PlacementTemplateDefaultAttributes' ProjectName: !Ref 'ProjectName' Outputs: ProjectName: Value: GetAtt: - Resource - ProjectName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoT1Click-Project/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#cfn-iot1click-project-description Default: null PlacementTemplateDeviceTemplates: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-devicetemplates Default: null PlacementTemplateDefaultAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-defaultattributes Default: null ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#cfn-iot1click-project-projectname Default: null Resources: Resource: Type: AWS::IoT1Click::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Properties: Description: !Ref 'Description' PlacementTemplate: DeviceTemplates: !Ref 'PlacementTemplateDeviceTemplates' DefaultAttributes: !Ref 'PlacementTemplateDefaultAttributes' ProjectName: !Ref 'ProjectName' Outputs: ProjectName: Value: GetAtt: - Resource - ProjectName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Channel/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Parameters: ChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html#cfn-iotanalytics-channel-channelname Default: null ChannelStorageCustomerManagedS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-bucket ChannelStorageCustomerManagedS3RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-rolearn ChannelStorageCustomerManagedS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-keyprefix Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-retentionperiod.html#cfn-iotanalytics-channel-retentionperiod-numberofdays Default: null RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-retentionperiod.html#cfn-iotanalytics-channel-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::IoTAnalytics::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Properties: ChannelName: !Ref 'ChannelName' ChannelStorage: CustomerManagedS3: Bucket: !Ref 'ChannelStorageCustomerManagedS3Bucket' RoleArn: !Ref 'ChannelStorageCustomerManagedS3RoleArn' KeyPrefix: !Ref 'ChannelStorageCustomerManagedS3KeyPrefix' ServiceManagedS3: {} RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Channel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Parameters: ChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html#cfn-iotanalytics-channel-channelname Default: null ChannelStorageCustomerManagedS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-bucket ChannelStorageCustomerManagedS3RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-rolearn ChannelStorageCustomerManagedS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-keyprefix Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-retentionperiod.html#cfn-iotanalytics-channel-retentionperiod-numberofdays Default: null RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-retentionperiod.html#cfn-iotanalytics-channel-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::IoTAnalytics::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Properties: ChannelName: !Ref 'ChannelName' ChannelStorage: CustomerManagedS3: Bucket: !Ref 'ChannelStorageCustomerManagedS3Bucket' RoleArn: !Ref 'ChannelStorageCustomerManagedS3RoleArn' KeyPrefix: !Ref 'ChannelStorageCustomerManagedS3KeyPrefix' ServiceManagedS3: {} RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Channel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Parameters: ChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html#cfn-iotanalytics-channel-channelname Default: null ChannelStorageCustomerManagedS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-bucket ChannelStorageCustomerManagedS3RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-rolearn ChannelStorageCustomerManagedS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-keyprefix Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-retentionperiod.html#cfn-iotanalytics-channel-retentionperiod-numberofdays Default: null RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-retentionperiod.html#cfn-iotanalytics-channel-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::IoTAnalytics::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Properties: ChannelName: !Ref 'ChannelName' ChannelStorage: CustomerManagedS3: Bucket: !Ref 'ChannelStorageCustomerManagedS3Bucket' RoleArn: !Ref 'ChannelStorageCustomerManagedS3RoleArn' KeyPrefix: !Ref 'ChannelStorageCustomerManagedS3KeyPrefix' ServiceManagedS3: {} RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Channel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Parameters: ChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html#cfn-iotanalytics-channel-channelname Default: null ChannelStorageCustomerManagedS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-bucket ChannelStorageCustomerManagedS3RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-rolearn ChannelStorageCustomerManagedS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-keyprefix Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-retentionperiod.html#cfn-iotanalytics-channel-retentionperiod-numberofdays Default: null RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-retentionperiod.html#cfn-iotanalytics-channel-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::IoTAnalytics::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Properties: ChannelName: !Ref 'ChannelName' ChannelStorage: CustomerManagedS3: Bucket: !Ref 'ChannelStorageCustomerManagedS3Bucket' RoleArn: !Ref 'ChannelStorageCustomerManagedS3RoleArn' KeyPrefix: !Ref 'ChannelStorageCustomerManagedS3KeyPrefix' ServiceManagedS3: {} RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Channel/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Parameters: ChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html#cfn-iotanalytics-channel-channelname Default: null ChannelStorageCustomerManagedS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-bucket ChannelStorageCustomerManagedS3RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-rolearn ChannelStorageCustomerManagedS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-keyprefix Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-retentionperiod.html#cfn-iotanalytics-channel-retentionperiod-numberofdays Default: null RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-retentionperiod.html#cfn-iotanalytics-channel-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::IoTAnalytics::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Properties: ChannelName: !Ref 'ChannelName' ChannelStorage: CustomerManagedS3: Bucket: !Ref 'ChannelStorageCustomerManagedS3Bucket' RoleArn: !Ref 'ChannelStorageCustomerManagedS3RoleArn' KeyPrefix: !Ref 'ChannelStorageCustomerManagedS3KeyPrefix' ServiceManagedS3: {} RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Channel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Parameters: ChannelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html#cfn-iotanalytics-channel-channelname Default: null ChannelStorageCustomerManagedS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-bucket ChannelStorageCustomerManagedS3RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-rolearn ChannelStorageCustomerManagedS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-customermanageds3.html#cfn-iotanalytics-channel-customermanageds3-keyprefix Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-retentionperiod.html#cfn-iotanalytics-channel-retentionperiod-numberofdays Default: null RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-retentionperiod.html#cfn-iotanalytics-channel-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::IoTAnalytics::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Properties: ChannelName: !Ref 'ChannelName' ChannelStorage: CustomerManagedS3: Bucket: !Ref 'ChannelStorageCustomerManagedS3Bucket' RoleArn: !Ref 'ChannelStorageCustomerManagedS3RoleArn' KeyPrefix: !Ref 'ChannelStorageCustomerManagedS3KeyPrefix' ServiceManagedS3: {} RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Dataset/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Parameters: DatasetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html#cfn-iotanalytics-dataset-datasetname Default: null VersioningConfigurationMaxVersions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-versioningconfiguration.html#cfn-iotanalytics-dataset-versioningconfiguration-maxversions Default: null VersioningConfigurationUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-versioningconfiguration.html#cfn-iotanalytics-dataset-versioningconfiguration-unlimited AllowedValues: - 'true' - 'false' Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-retentionperiod.html#cfn-iotanalytics-dataset-retentionperiod-numberofdays RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-retentionperiod.html#cfn-iotanalytics-dataset-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoTAnalytics::Dataset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Properties: DatasetName: !Ref 'DatasetName' VersioningConfiguration: MaxVersions: !Ref 'VersioningConfigurationMaxVersions' Unlimited: !Ref 'VersioningConfigurationUnlimited' RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Dataset/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Parameters: DatasetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html#cfn-iotanalytics-dataset-datasetname Default: null VersioningConfigurationMaxVersions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-versioningconfiguration.html#cfn-iotanalytics-dataset-versioningconfiguration-maxversions Default: null VersioningConfigurationUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-versioningconfiguration.html#cfn-iotanalytics-dataset-versioningconfiguration-unlimited AllowedValues: - 'true' - 'false' Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-retentionperiod.html#cfn-iotanalytics-dataset-retentionperiod-numberofdays RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-retentionperiod.html#cfn-iotanalytics-dataset-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoTAnalytics::Dataset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Properties: DatasetName: !Ref 'DatasetName' VersioningConfiguration: MaxVersions: !Ref 'VersioningConfigurationMaxVersions' Unlimited: !Ref 'VersioningConfigurationUnlimited' RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Dataset/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Parameters: DatasetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html#cfn-iotanalytics-dataset-datasetname Default: null VersioningConfigurationMaxVersions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-versioningconfiguration.html#cfn-iotanalytics-dataset-versioningconfiguration-maxversions Default: null VersioningConfigurationUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-versioningconfiguration.html#cfn-iotanalytics-dataset-versioningconfiguration-unlimited AllowedValues: - 'true' - 'false' Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-retentionperiod.html#cfn-iotanalytics-dataset-retentionperiod-numberofdays RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-retentionperiod.html#cfn-iotanalytics-dataset-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoTAnalytics::Dataset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Properties: DatasetName: !Ref 'DatasetName' VersioningConfiguration: MaxVersions: !Ref 'VersioningConfigurationMaxVersions' Unlimited: !Ref 'VersioningConfigurationUnlimited' RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Dataset/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Parameters: DatasetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html#cfn-iotanalytics-dataset-datasetname Default: null VersioningConfigurationMaxVersions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-versioningconfiguration.html#cfn-iotanalytics-dataset-versioningconfiguration-maxversions Default: null VersioningConfigurationUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-versioningconfiguration.html#cfn-iotanalytics-dataset-versioningconfiguration-unlimited AllowedValues: - 'true' - 'false' Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-retentionperiod.html#cfn-iotanalytics-dataset-retentionperiod-numberofdays RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-retentionperiod.html#cfn-iotanalytics-dataset-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoTAnalytics::Dataset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Properties: DatasetName: !Ref 'DatasetName' VersioningConfiguration: MaxVersions: !Ref 'VersioningConfigurationMaxVersions' Unlimited: !Ref 'VersioningConfigurationUnlimited' RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Dataset/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Parameters: DatasetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html#cfn-iotanalytics-dataset-datasetname Default: null VersioningConfigurationMaxVersions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-versioningconfiguration.html#cfn-iotanalytics-dataset-versioningconfiguration-maxversions Default: null VersioningConfigurationUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-versioningconfiguration.html#cfn-iotanalytics-dataset-versioningconfiguration-unlimited AllowedValues: - 'true' - 'false' Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-retentionperiod.html#cfn-iotanalytics-dataset-retentionperiod-numberofdays RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-retentionperiod.html#cfn-iotanalytics-dataset-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoTAnalytics::Dataset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Properties: DatasetName: !Ref 'DatasetName' VersioningConfiguration: MaxVersions: !Ref 'VersioningConfigurationMaxVersions' Unlimited: !Ref 'VersioningConfigurationUnlimited' RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Dataset/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Parameters: DatasetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html#cfn-iotanalytics-dataset-datasetname Default: null VersioningConfigurationMaxVersions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-versioningconfiguration.html#cfn-iotanalytics-dataset-versioningconfiguration-maxversions Default: null VersioningConfigurationUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-versioningconfiguration.html#cfn-iotanalytics-dataset-versioningconfiguration-unlimited AllowedValues: - 'true' - 'false' Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-retentionperiod.html#cfn-iotanalytics-dataset-retentionperiod-numberofdays RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-retentionperiod.html#cfn-iotanalytics-dataset-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoTAnalytics::Dataset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Properties: DatasetName: !Ref 'DatasetName' VersioningConfiguration: MaxVersions: !Ref 'VersioningConfigurationMaxVersions' Unlimited: !Ref 'VersioningConfigurationUnlimited' RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Datastore/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Parameters: DatastoreStorageCustomerManagedS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-bucket DatastoreStorageCustomerManagedS3RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-rolearn DatastoreStorageCustomerManagedS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-keyprefix Default: null DatastoreName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html#cfn-iotanalytics-datastore-datastorename Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-retentionperiod.html#cfn-iotanalytics-datastore-retentionperiod-numberofdays Default: null RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-retentionperiod.html#cfn-iotanalytics-datastore-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::IoTAnalytics::Datastore Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Properties: DatastoreStorage: CustomerManagedS3: Bucket: !Ref 'DatastoreStorageCustomerManagedS3Bucket' RoleArn: !Ref 'DatastoreStorageCustomerManagedS3RoleArn' KeyPrefix: !Ref 'DatastoreStorageCustomerManagedS3KeyPrefix' ServiceManagedS3: {} DatastoreName: !Ref 'DatastoreName' RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Datastore/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Parameters: DatastoreStorageCustomerManagedS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-bucket DatastoreStorageCustomerManagedS3RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-rolearn DatastoreStorageCustomerManagedS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-keyprefix Default: null DatastoreName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html#cfn-iotanalytics-datastore-datastorename Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-retentionperiod.html#cfn-iotanalytics-datastore-retentionperiod-numberofdays Default: null RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-retentionperiod.html#cfn-iotanalytics-datastore-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::IoTAnalytics::Datastore Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Properties: DatastoreStorage: CustomerManagedS3: Bucket: !Ref 'DatastoreStorageCustomerManagedS3Bucket' RoleArn: !Ref 'DatastoreStorageCustomerManagedS3RoleArn' KeyPrefix: !Ref 'DatastoreStorageCustomerManagedS3KeyPrefix' ServiceManagedS3: {} DatastoreName: !Ref 'DatastoreName' RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Datastore/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Parameters: DatastoreStorageCustomerManagedS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-bucket DatastoreStorageCustomerManagedS3RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-rolearn DatastoreStorageCustomerManagedS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-keyprefix Default: null DatastoreName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html#cfn-iotanalytics-datastore-datastorename Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-retentionperiod.html#cfn-iotanalytics-datastore-retentionperiod-numberofdays Default: null RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-retentionperiod.html#cfn-iotanalytics-datastore-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::IoTAnalytics::Datastore Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Properties: DatastoreStorage: CustomerManagedS3: Bucket: !Ref 'DatastoreStorageCustomerManagedS3Bucket' RoleArn: !Ref 'DatastoreStorageCustomerManagedS3RoleArn' KeyPrefix: !Ref 'DatastoreStorageCustomerManagedS3KeyPrefix' ServiceManagedS3: {} DatastoreName: !Ref 'DatastoreName' RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Datastore/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Parameters: DatastoreStorageCustomerManagedS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-bucket DatastoreStorageCustomerManagedS3RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-rolearn DatastoreStorageCustomerManagedS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-keyprefix Default: null DatastoreName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html#cfn-iotanalytics-datastore-datastorename Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-retentionperiod.html#cfn-iotanalytics-datastore-retentionperiod-numberofdays Default: null RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-retentionperiod.html#cfn-iotanalytics-datastore-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::IoTAnalytics::Datastore Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Properties: DatastoreStorage: CustomerManagedS3: Bucket: !Ref 'DatastoreStorageCustomerManagedS3Bucket' RoleArn: !Ref 'DatastoreStorageCustomerManagedS3RoleArn' KeyPrefix: !Ref 'DatastoreStorageCustomerManagedS3KeyPrefix' ServiceManagedS3: {} DatastoreName: !Ref 'DatastoreName' RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Datastore/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Parameters: DatastoreStorageCustomerManagedS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-bucket DatastoreStorageCustomerManagedS3RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-rolearn DatastoreStorageCustomerManagedS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-keyprefix Default: null DatastoreName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html#cfn-iotanalytics-datastore-datastorename Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-retentionperiod.html#cfn-iotanalytics-datastore-retentionperiod-numberofdays Default: null RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-retentionperiod.html#cfn-iotanalytics-datastore-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::IoTAnalytics::Datastore Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Properties: DatastoreStorage: CustomerManagedS3: Bucket: !Ref 'DatastoreStorageCustomerManagedS3Bucket' RoleArn: !Ref 'DatastoreStorageCustomerManagedS3RoleArn' KeyPrefix: !Ref 'DatastoreStorageCustomerManagedS3KeyPrefix' ServiceManagedS3: {} DatastoreName: !Ref 'DatastoreName' RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Datastore/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Parameters: DatastoreStorageCustomerManagedS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-bucket DatastoreStorageCustomerManagedS3RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-rolearn DatastoreStorageCustomerManagedS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html#cfn-iotanalytics-datastore-customermanageds3-keyprefix Default: null DatastoreName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html#cfn-iotanalytics-datastore-datastorename Default: null RetentionPeriodNumberOfDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-retentionperiod.html#cfn-iotanalytics-datastore-retentionperiod-numberofdays Default: null RetentionPeriodUnlimited: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-retentionperiod.html#cfn-iotanalytics-datastore-retentionperiod-unlimited AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::IoTAnalytics::Datastore Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Properties: DatastoreStorage: CustomerManagedS3: Bucket: !Ref 'DatastoreStorageCustomerManagedS3Bucket' RoleArn: !Ref 'DatastoreStorageCustomerManagedS3RoleArn' KeyPrefix: !Ref 'DatastoreStorageCustomerManagedS3KeyPrefix' ServiceManagedS3: {} DatastoreName: !Ref 'DatastoreName' RetentionPeriod: NumberOfDays: !Ref 'RetentionPeriodNumberOfDays' Unlimited: !Ref 'RetentionPeriodUnlimited' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Pipeline/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Parameters: PipelineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html#cfn-iotanalytics-pipeline-pipelinename Default: null Resources: Resource: Type: AWS::IoTAnalytics::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Properties: PipelineName: !Ref 'PipelineName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Pipeline/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Parameters: PipelineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html#cfn-iotanalytics-pipeline-pipelinename Default: null Resources: Resource: Type: AWS::IoTAnalytics::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Properties: PipelineName: !Ref 'PipelineName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Pipeline/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Parameters: PipelineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html#cfn-iotanalytics-pipeline-pipelinename Default: null Resources: Resource: Type: AWS::IoTAnalytics::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Properties: PipelineName: !Ref 'PipelineName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Pipeline/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Parameters: PipelineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html#cfn-iotanalytics-pipeline-pipelinename Default: null Resources: Resource: Type: AWS::IoTAnalytics::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Properties: PipelineName: !Ref 'PipelineName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Pipeline/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Parameters: PipelineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html#cfn-iotanalytics-pipeline-pipelinename Default: null Resources: Resource: Type: AWS::IoTAnalytics::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Properties: PipelineName: !Ref 'PipelineName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTAnalytics-Pipeline/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Parameters: PipelineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html#cfn-iotanalytics-pipeline-pipelinename Default: null Resources: Resource: Type: AWS::IoTAnalytics::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Properties: PipelineName: !Ref 'PipelineName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-DetectorModel/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Parameters: DetectorModelDefinitionInitialStateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-detectormodeldefinition.html#cfn-iotevents-detectormodel-detectormodeldefinition-initialstatename Default: null EvaluationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-evaluationmethod Default: null DetectorModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodelname Default: null DetectorModelDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodeldescription Default: null Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-key Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-rolearn Default: null Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Properties: DetectorModelDefinition: InitialStateName: !Ref 'DetectorModelDefinitionInitialStateName' EvaluationMethod: !Ref 'EvaluationMethod' DetectorModelName: !Ref 'DetectorModelName' DetectorModelDescription: !Ref 'DetectorModelDescription' Key: !Ref 'Key' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-DetectorModel/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Parameters: DetectorModelDefinitionInitialStateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-detectormodeldefinition.html#cfn-iotevents-detectormodel-detectormodeldefinition-initialstatename Default: null EvaluationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-evaluationmethod Default: null DetectorModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodelname Default: null DetectorModelDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodeldescription Default: null Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-key Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-rolearn Default: null Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Properties: DetectorModelDefinition: InitialStateName: !Ref 'DetectorModelDefinitionInitialStateName' EvaluationMethod: !Ref 'EvaluationMethod' DetectorModelName: !Ref 'DetectorModelName' DetectorModelDescription: !Ref 'DetectorModelDescription' Key: !Ref 'Key' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-DetectorModel/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Parameters: DetectorModelDefinitionInitialStateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-detectormodeldefinition.html#cfn-iotevents-detectormodel-detectormodeldefinition-initialstatename Default: null EvaluationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-evaluationmethod Default: null DetectorModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodelname Default: null DetectorModelDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodeldescription Default: null Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-key Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-rolearn Default: null Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Properties: DetectorModelDefinition: InitialStateName: !Ref 'DetectorModelDefinitionInitialStateName' EvaluationMethod: !Ref 'EvaluationMethod' DetectorModelName: !Ref 'DetectorModelName' DetectorModelDescription: !Ref 'DetectorModelDescription' Key: !Ref 'Key' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-DetectorModel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Parameters: DetectorModelDefinitionInitialStateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-detectormodeldefinition.html#cfn-iotevents-detectormodel-detectormodeldefinition-initialstatename Default: null EvaluationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-evaluationmethod Default: null DetectorModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodelname Default: null DetectorModelDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodeldescription Default: null Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-key Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-rolearn Default: null Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Properties: DetectorModelDefinition: InitialStateName: !Ref 'DetectorModelDefinitionInitialStateName' EvaluationMethod: !Ref 'EvaluationMethod' DetectorModelName: !Ref 'DetectorModelName' DetectorModelDescription: !Ref 'DetectorModelDescription' Key: !Ref 'Key' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-DetectorModel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Parameters: DetectorModelDefinitionInitialStateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-detectormodeldefinition.html#cfn-iotevents-detectormodel-detectormodeldefinition-initialstatename Default: null EvaluationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-evaluationmethod Default: null DetectorModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodelname Default: null DetectorModelDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodeldescription Default: null Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-key Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-rolearn Default: null Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Properties: DetectorModelDefinition: InitialStateName: !Ref 'DetectorModelDefinitionInitialStateName' EvaluationMethod: !Ref 'EvaluationMethod' DetectorModelName: !Ref 'DetectorModelName' DetectorModelDescription: !Ref 'DetectorModelDescription' Key: !Ref 'Key' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-DetectorModel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Parameters: DetectorModelDefinitionInitialStateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-detectormodeldefinition.html#cfn-iotevents-detectormodel-detectormodeldefinition-initialstatename Default: null EvaluationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-evaluationmethod Default: null DetectorModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodelname Default: null DetectorModelDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodeldescription Default: null Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-key Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-rolearn Default: null Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Properties: DetectorModelDefinition: InitialStateName: !Ref 'DetectorModelDefinitionInitialStateName' EvaluationMethod: !Ref 'EvaluationMethod' DetectorModelName: !Ref 'DetectorModelName' DetectorModelDescription: !Ref 'DetectorModelDescription' Key: !Ref 'Key' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-DetectorModel/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Parameters: DetectorModelDefinitionInitialStateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-detectormodeldefinition.html#cfn-iotevents-detectormodel-detectormodeldefinition-initialstatename Default: null EvaluationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-evaluationmethod Default: null DetectorModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodelname Default: null DetectorModelDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodeldescription Default: null Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-key Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-rolearn Default: null Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Properties: DetectorModelDefinition: InitialStateName: !Ref 'DetectorModelDefinitionInitialStateName' EvaluationMethod: !Ref 'EvaluationMethod' DetectorModelName: !Ref 'DetectorModelName' DetectorModelDescription: !Ref 'DetectorModelDescription' Key: !Ref 'Key' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-DetectorModel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Parameters: DetectorModelDefinitionInitialStateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-detectormodeldefinition.html#cfn-iotevents-detectormodel-detectormodeldefinition-initialstatename Default: null EvaluationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-evaluationmethod Default: null DetectorModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodelname Default: null DetectorModelDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodeldescription Default: null Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-key Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-rolearn Default: null Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Properties: DetectorModelDefinition: InitialStateName: !Ref 'DetectorModelDefinitionInitialStateName' EvaluationMethod: !Ref 'EvaluationMethod' DetectorModelName: !Ref 'DetectorModelName' DetectorModelDescription: !Ref 'DetectorModelDescription' Key: !Ref 'Key' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-DetectorModel/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Parameters: DetectorModelDefinitionInitialStateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-detectormodeldefinition.html#cfn-iotevents-detectormodel-detectormodeldefinition-initialstatename Default: null EvaluationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-evaluationmethod Default: null DetectorModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodelname Default: null DetectorModelDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodeldescription Default: null Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-key Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-rolearn Default: null Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Properties: DetectorModelDefinition: InitialStateName: !Ref 'DetectorModelDefinitionInitialStateName' EvaluationMethod: !Ref 'EvaluationMethod' DetectorModelName: !Ref 'DetectorModelName' DetectorModelDescription: !Ref 'DetectorModelDescription' Key: !Ref 'Key' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-DetectorModel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Parameters: DetectorModelDefinitionInitialStateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-detectormodeldefinition.html#cfn-iotevents-detectormodel-detectormodeldefinition-initialstatename Default: null EvaluationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-evaluationmethod Default: null DetectorModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodelname Default: null DetectorModelDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodeldescription Default: null Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-key Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-rolearn Default: null Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Properties: DetectorModelDefinition: InitialStateName: !Ref 'DetectorModelDefinitionInitialStateName' EvaluationMethod: !Ref 'EvaluationMethod' DetectorModelName: !Ref 'DetectorModelName' DetectorModelDescription: !Ref 'DetectorModelDescription' Key: !Ref 'Key' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-Input/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Parameters: InputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputname Default: null InputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputdescription Default: null Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Properties: InputDefinition: {} InputName: !Ref 'InputName' InputDescription: !Ref 'InputDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-Input/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Parameters: InputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputname Default: null InputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputdescription Default: null Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Properties: InputDefinition: {} InputName: !Ref 'InputName' InputDescription: !Ref 'InputDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-Input/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Parameters: InputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputname Default: null InputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputdescription Default: null Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Properties: InputDefinition: {} InputName: !Ref 'InputName' InputDescription: !Ref 'InputDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-Input/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Parameters: InputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputname Default: null InputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputdescription Default: null Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Properties: InputDefinition: {} InputName: !Ref 'InputName' InputDescription: !Ref 'InputDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-Input/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Parameters: InputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputname Default: null InputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputdescription Default: null Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Properties: InputDefinition: {} InputName: !Ref 'InputName' InputDescription: !Ref 'InputDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-Input/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Parameters: InputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputname Default: null InputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputdescription Default: null Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Properties: InputDefinition: {} InputName: !Ref 'InputName' InputDescription: !Ref 'InputDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-Input/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Parameters: InputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputname Default: null InputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputdescription Default: null Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Properties: InputDefinition: {} InputName: !Ref 'InputName' InputDescription: !Ref 'InputDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-Input/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Parameters: InputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputname Default: null InputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputdescription Default: null Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Properties: InputDefinition: {} InputName: !Ref 'InputName' InputDescription: !Ref 'InputDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-Input/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Parameters: InputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputname Default: null InputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputdescription Default: null Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Properties: InputDefinition: {} InputName: !Ref 'InputName' InputDescription: !Ref 'InputDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTEvents-Input/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Parameters: InputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputname Default: null InputDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputdescription Default: null Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Properties: InputDefinition: {} InputName: !Ref 'InputName' InputDescription: !Ref 'InputDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTThingsGraph-FlowTemplate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Parameters: CompatibleNamespaceVersion: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html#cfn-iotthingsgraph-flowtemplate-compatiblenamespaceversion Default: null DefinitionDocumentLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-language DefinitionDocumentText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-text Resources: Resource: Type: AWS::IoTThingsGraph::FlowTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Properties: CompatibleNamespaceVersion: !Ref 'CompatibleNamespaceVersion' Definition: Language: !Ref 'DefinitionDocumentLanguage' Text: !Ref 'DefinitionDocumentText' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTThingsGraph-FlowTemplate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Parameters: CompatibleNamespaceVersion: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html#cfn-iotthingsgraph-flowtemplate-compatiblenamespaceversion Default: null DefinitionDocumentLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-language DefinitionDocumentText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-text Resources: Resource: Type: AWS::IoTThingsGraph::FlowTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Properties: CompatibleNamespaceVersion: !Ref 'CompatibleNamespaceVersion' Definition: Language: !Ref 'DefinitionDocumentLanguage' Text: !Ref 'DefinitionDocumentText' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTThingsGraph-FlowTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Parameters: CompatibleNamespaceVersion: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html#cfn-iotthingsgraph-flowtemplate-compatiblenamespaceversion Default: null DefinitionDocumentLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-language DefinitionDocumentText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-text Resources: Resource: Type: AWS::IoTThingsGraph::FlowTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Properties: CompatibleNamespaceVersion: !Ref 'CompatibleNamespaceVersion' Definition: Language: !Ref 'DefinitionDocumentLanguage' Text: !Ref 'DefinitionDocumentText' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTThingsGraph-FlowTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Parameters: CompatibleNamespaceVersion: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html#cfn-iotthingsgraph-flowtemplate-compatiblenamespaceversion Default: null DefinitionDocumentLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-language DefinitionDocumentText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-text Resources: Resource: Type: AWS::IoTThingsGraph::FlowTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Properties: CompatibleNamespaceVersion: !Ref 'CompatibleNamespaceVersion' Definition: Language: !Ref 'DefinitionDocumentLanguage' Text: !Ref 'DefinitionDocumentText' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-IoTThingsGraph-FlowTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Parameters: CompatibleNamespaceVersion: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html#cfn-iotthingsgraph-flowtemplate-compatiblenamespaceversion Default: null DefinitionDocumentLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-language DefinitionDocumentText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-text Resources: Resource: Type: AWS::IoTThingsGraph::FlowTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Properties: CompatibleNamespaceVersion: !Ref 'CompatibleNamespaceVersion' Definition: Language: !Ref 'DefinitionDocumentLanguage' Text: !Ref 'DefinitionDocumentText' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Alias/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KMS-Key/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description Default: null EnableKeyRotation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation AllowedValues: - 'true' - 'false' Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled AllowedValues: - 'true' - 'false' Default: null KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy KeyUsage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage Default: null PendingWindowInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-pendingwindowindays Default: null Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: Description: !Ref 'Description' EnableKeyRotation: !Ref 'EnableKeyRotation' Enabled: !Ref 'Enabled' KeyPolicy: !Ref 'KeyPolicy' KeyUsage: !Ref 'KeyUsage' PendingWindowInDays: !Ref 'PendingWindowInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-Stream/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-name Default: null RetentionPeriodHours: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-retentionperiodhours Default: null ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount StreamEncryptionEncryptionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype StreamEncryptionKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: Name: !Ref 'Name' RetentionPeriodHours: !Ref 'RetentionPeriodHours' ShardCount: !Ref 'ShardCount' StreamEncryption: EncryptionType: !Ref 'StreamEncryptionEncryptionType' KeyId: !Ref 'StreamEncryptionKeyId' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Kinesis-StreamConsumer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-Application/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationname Default: null ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationdescription Default: null ApplicationCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationcode Default: null Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Properties: ApplicationName: !Ref 'ApplicationName' ApplicationDescription: !Ref 'ApplicationDescription' ApplicationCode: !Ref 'ApplicationCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-Application/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationname Default: null ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationdescription Default: null ApplicationCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationcode Default: null Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Properties: ApplicationName: !Ref 'ApplicationName' ApplicationDescription: !Ref 'ApplicationDescription' ApplicationCode: !Ref 'ApplicationCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-Application/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationname Default: null ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationdescription Default: null ApplicationCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationcode Default: null Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Properties: ApplicationName: !Ref 'ApplicationName' ApplicationDescription: !Ref 'ApplicationDescription' ApplicationCode: !Ref 'ApplicationCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-Application/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationname Default: null ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationdescription Default: null ApplicationCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationcode Default: null Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Properties: ApplicationName: !Ref 'ApplicationName' ApplicationDescription: !Ref 'ApplicationDescription' ApplicationCode: !Ref 'ApplicationCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-Application/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationname Default: null ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationdescription Default: null ApplicationCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationcode Default: null Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Properties: ApplicationName: !Ref 'ApplicationName' ApplicationDescription: !Ref 'ApplicationDescription' ApplicationCode: !Ref 'ApplicationCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-Application/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationname Default: null ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationdescription Default: null ApplicationCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationcode Default: null Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Properties: ApplicationName: !Ref 'ApplicationName' ApplicationDescription: !Ref 'ApplicationDescription' ApplicationCode: !Ref 'ApplicationCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-Application/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationname Default: null ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationdescription Default: null ApplicationCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationcode Default: null Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Properties: ApplicationName: !Ref 'ApplicationName' ApplicationDescription: !Ref 'ApplicationDescription' ApplicationCode: !Ref 'ApplicationCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-Application/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationname Default: null ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationdescription Default: null ApplicationCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationcode Default: null Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Properties: ApplicationName: !Ref 'ApplicationName' ApplicationDescription: !Ref 'ApplicationDescription' ApplicationCode: !Ref 'ApplicationCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-Application/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationname Default: null ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationdescription Default: null ApplicationCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationcode Default: null Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Properties: ApplicationName: !Ref 'ApplicationName' ApplicationDescription: !Ref 'ApplicationDescription' ApplicationCode: !Ref 'ApplicationCode' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-destinationschema.html#cfn-kinesisanalytics-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-resourcearn OutputLambdaOutputRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-rolearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisFirehoseOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-rolearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-resourcearn OutputKinesisStreamsOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-rolearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-output.html#cfn-kinesisanalytics-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' RoleARN: !Ref 'OutputLambdaOutputRoleARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' RoleARN: !Ref 'OutputKinesisFirehoseOutputRoleARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' RoleARN: !Ref 'OutputKinesisStreamsOutputRoleARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-destinationschema.html#cfn-kinesisanalytics-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-resourcearn OutputLambdaOutputRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-rolearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisFirehoseOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-rolearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-resourcearn OutputKinesisStreamsOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-rolearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-output.html#cfn-kinesisanalytics-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' RoleARN: !Ref 'OutputLambdaOutputRoleARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' RoleARN: !Ref 'OutputKinesisFirehoseOutputRoleARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' RoleARN: !Ref 'OutputKinesisStreamsOutputRoleARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-destinationschema.html#cfn-kinesisanalytics-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-resourcearn OutputLambdaOutputRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-rolearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisFirehoseOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-rolearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-resourcearn OutputKinesisStreamsOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-rolearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-output.html#cfn-kinesisanalytics-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' RoleARN: !Ref 'OutputLambdaOutputRoleARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' RoleARN: !Ref 'OutputKinesisFirehoseOutputRoleARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' RoleARN: !Ref 'OutputKinesisStreamsOutputRoleARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-destinationschema.html#cfn-kinesisanalytics-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-resourcearn OutputLambdaOutputRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-rolearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisFirehoseOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-rolearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-resourcearn OutputKinesisStreamsOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-rolearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-output.html#cfn-kinesisanalytics-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' RoleARN: !Ref 'OutputLambdaOutputRoleARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' RoleARN: !Ref 'OutputKinesisFirehoseOutputRoleARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' RoleARN: !Ref 'OutputKinesisStreamsOutputRoleARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-destinationschema.html#cfn-kinesisanalytics-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-resourcearn OutputLambdaOutputRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-rolearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisFirehoseOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-rolearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-resourcearn OutputKinesisStreamsOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-rolearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-output.html#cfn-kinesisanalytics-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' RoleARN: !Ref 'OutputLambdaOutputRoleARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' RoleARN: !Ref 'OutputKinesisFirehoseOutputRoleARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' RoleARN: !Ref 'OutputKinesisStreamsOutputRoleARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-destinationschema.html#cfn-kinesisanalytics-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-resourcearn OutputLambdaOutputRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-rolearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisFirehoseOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-rolearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-resourcearn OutputKinesisStreamsOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-rolearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-output.html#cfn-kinesisanalytics-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' RoleARN: !Ref 'OutputLambdaOutputRoleARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' RoleARN: !Ref 'OutputKinesisFirehoseOutputRoleARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' RoleARN: !Ref 'OutputKinesisStreamsOutputRoleARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-destinationschema.html#cfn-kinesisanalytics-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-resourcearn OutputLambdaOutputRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-rolearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisFirehoseOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-rolearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-resourcearn OutputKinesisStreamsOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-rolearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-output.html#cfn-kinesisanalytics-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' RoleARN: !Ref 'OutputLambdaOutputRoleARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' RoleARN: !Ref 'OutputKinesisFirehoseOutputRoleARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' RoleARN: !Ref 'OutputKinesisStreamsOutputRoleARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-destinationschema.html#cfn-kinesisanalytics-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-resourcearn OutputLambdaOutputRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-rolearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisFirehoseOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-rolearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-resourcearn OutputKinesisStreamsOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-rolearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-output.html#cfn-kinesisanalytics-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' RoleARN: !Ref 'OutputLambdaOutputRoleARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' RoleARN: !Ref 'OutputKinesisFirehoseOutputRoleARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' RoleARN: !Ref 'OutputKinesisStreamsOutputRoleARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-destinationschema.html#cfn-kinesisanalytics-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-resourcearn OutputLambdaOutputRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-lambdaoutput.html#cfn-kinesisanalytics-applicationoutput-lambdaoutput-rolearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisFirehoseOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-rolearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-resourcearn OutputKinesisStreamsOutputRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-rolearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-output.html#cfn-kinesisanalytics-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' RoleARN: !Ref 'OutputLambdaOutputRoleARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' RoleARN: !Ref 'OutputKinesisFirehoseOutputRoleARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' RoleARN: !Ref 'OutputKinesisStreamsOutputRoleARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalytics-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-filekey ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-referencerolearn Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ReferenceRoleARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalytics-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-filekey ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-referencerolearn Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ReferenceRoleARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalytics-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-filekey ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-referencerolearn Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ReferenceRoleARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalytics-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-filekey ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-referencerolearn Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ReferenceRoleARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalytics-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-filekey ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-referencerolearn Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ReferenceRoleARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalytics-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-filekey ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-referencerolearn Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ReferenceRoleARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalytics-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-filekey ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-referencerolearn Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ReferenceRoleARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalytics-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-filekey ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-referencerolearn Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ReferenceRoleARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalytics-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-filekey ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-referencerolearn Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ReferenceRoleARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceReferenceRoleARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationname Default: null RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ApplicationConfigurationApplicationCodeConfigurationCodeContentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationcodeconfiguration.html#cfn-kinesisanalyticsv2-application-applicationcodeconfiguration-codecontenttype ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-zipfilecontent Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-bucketarn Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-filekey Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-objectversion Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-textcontent Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointinterval Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-minpausebetweencheckpoints Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelismperkpu Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-autoscalingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelism Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-metricslevel Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-loglevel Default: null ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationsnapshotconfiguration.html#cfn-kinesisanalyticsv2-application-applicationsnapshotconfiguration-snapshotsenabled AllowedValues: - 'true' - 'false' ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationdescription Default: null ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: ApplicationName: !Ref 'ApplicationName' RuntimeEnvironment: !Ref 'RuntimeEnvironment' ApplicationConfiguration: ApplicationCodeConfiguration: CodeContentType: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentType' CodeContent: ZipFileContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent' S3ContentLocation: BucketARN: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN' FileKey: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey' ObjectVersion: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion' TextContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent' EnvironmentProperties: {} FlinkApplicationConfiguration: CheckpointConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType' CheckpointInterval: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval' MinPauseBetweenCheckpoints: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints' CheckpointingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled' ParallelismConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType' ParallelismPerKPU: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU' AutoScalingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled' Parallelism: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism' MonitoringConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType' MetricsLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel' LogLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel' SqlApplicationConfiguration: {} ApplicationSnapshotConfiguration: SnapshotsEnabled: !Ref 'ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled' ApplicationDescription: !Ref 'ApplicationDescription' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationname Default: null RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ApplicationConfigurationApplicationCodeConfigurationCodeContentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationcodeconfiguration.html#cfn-kinesisanalyticsv2-application-applicationcodeconfiguration-codecontenttype ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-zipfilecontent Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-bucketarn Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-filekey Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-objectversion Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-textcontent Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointinterval Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-minpausebetweencheckpoints Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelismperkpu Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-autoscalingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelism Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-metricslevel Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-loglevel Default: null ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationsnapshotconfiguration.html#cfn-kinesisanalyticsv2-application-applicationsnapshotconfiguration-snapshotsenabled AllowedValues: - 'true' - 'false' ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationdescription Default: null ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: ApplicationName: !Ref 'ApplicationName' RuntimeEnvironment: !Ref 'RuntimeEnvironment' ApplicationConfiguration: ApplicationCodeConfiguration: CodeContentType: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentType' CodeContent: ZipFileContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent' S3ContentLocation: BucketARN: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN' FileKey: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey' ObjectVersion: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion' TextContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent' EnvironmentProperties: {} FlinkApplicationConfiguration: CheckpointConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType' CheckpointInterval: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval' MinPauseBetweenCheckpoints: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints' CheckpointingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled' ParallelismConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType' ParallelismPerKPU: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU' AutoScalingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled' Parallelism: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism' MonitoringConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType' MetricsLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel' LogLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel' SqlApplicationConfiguration: {} ApplicationSnapshotConfiguration: SnapshotsEnabled: !Ref 'ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled' ApplicationDescription: !Ref 'ApplicationDescription' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationname Default: null RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ApplicationConfigurationApplicationCodeConfigurationCodeContentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationcodeconfiguration.html#cfn-kinesisanalyticsv2-application-applicationcodeconfiguration-codecontenttype ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-zipfilecontent Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-bucketarn Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-filekey Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-objectversion Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-textcontent Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointinterval Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-minpausebetweencheckpoints Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelismperkpu Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-autoscalingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelism Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-metricslevel Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-loglevel Default: null ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationsnapshotconfiguration.html#cfn-kinesisanalyticsv2-application-applicationsnapshotconfiguration-snapshotsenabled AllowedValues: - 'true' - 'false' ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationdescription Default: null ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: ApplicationName: !Ref 'ApplicationName' RuntimeEnvironment: !Ref 'RuntimeEnvironment' ApplicationConfiguration: ApplicationCodeConfiguration: CodeContentType: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentType' CodeContent: ZipFileContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent' S3ContentLocation: BucketARN: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN' FileKey: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey' ObjectVersion: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion' TextContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent' EnvironmentProperties: {} FlinkApplicationConfiguration: CheckpointConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType' CheckpointInterval: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval' MinPauseBetweenCheckpoints: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints' CheckpointingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled' ParallelismConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType' ParallelismPerKPU: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU' AutoScalingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled' Parallelism: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism' MonitoringConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType' MetricsLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel' LogLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel' SqlApplicationConfiguration: {} ApplicationSnapshotConfiguration: SnapshotsEnabled: !Ref 'ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled' ApplicationDescription: !Ref 'ApplicationDescription' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationname Default: null RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ApplicationConfigurationApplicationCodeConfigurationCodeContentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationcodeconfiguration.html#cfn-kinesisanalyticsv2-application-applicationcodeconfiguration-codecontenttype ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-zipfilecontent Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-bucketarn Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-filekey Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-objectversion Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-textcontent Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointinterval Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-minpausebetweencheckpoints Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelismperkpu Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-autoscalingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelism Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-metricslevel Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-loglevel Default: null ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationsnapshotconfiguration.html#cfn-kinesisanalyticsv2-application-applicationsnapshotconfiguration-snapshotsenabled AllowedValues: - 'true' - 'false' ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationdescription Default: null ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: ApplicationName: !Ref 'ApplicationName' RuntimeEnvironment: !Ref 'RuntimeEnvironment' ApplicationConfiguration: ApplicationCodeConfiguration: CodeContentType: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentType' CodeContent: ZipFileContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent' S3ContentLocation: BucketARN: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN' FileKey: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey' ObjectVersion: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion' TextContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent' EnvironmentProperties: {} FlinkApplicationConfiguration: CheckpointConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType' CheckpointInterval: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval' MinPauseBetweenCheckpoints: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints' CheckpointingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled' ParallelismConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType' ParallelismPerKPU: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU' AutoScalingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled' Parallelism: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism' MonitoringConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType' MetricsLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel' LogLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel' SqlApplicationConfiguration: {} ApplicationSnapshotConfiguration: SnapshotsEnabled: !Ref 'ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled' ApplicationDescription: !Ref 'ApplicationDescription' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationname Default: null RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ApplicationConfigurationApplicationCodeConfigurationCodeContentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationcodeconfiguration.html#cfn-kinesisanalyticsv2-application-applicationcodeconfiguration-codecontenttype ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-zipfilecontent Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-bucketarn Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-filekey Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-objectversion Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-textcontent Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointinterval Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-minpausebetweencheckpoints Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelismperkpu Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-autoscalingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelism Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-metricslevel Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-loglevel Default: null ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationsnapshotconfiguration.html#cfn-kinesisanalyticsv2-application-applicationsnapshotconfiguration-snapshotsenabled AllowedValues: - 'true' - 'false' ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationdescription Default: null ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: ApplicationName: !Ref 'ApplicationName' RuntimeEnvironment: !Ref 'RuntimeEnvironment' ApplicationConfiguration: ApplicationCodeConfiguration: CodeContentType: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentType' CodeContent: ZipFileContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent' S3ContentLocation: BucketARN: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN' FileKey: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey' ObjectVersion: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion' TextContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent' EnvironmentProperties: {} FlinkApplicationConfiguration: CheckpointConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType' CheckpointInterval: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval' MinPauseBetweenCheckpoints: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints' CheckpointingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled' ParallelismConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType' ParallelismPerKPU: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU' AutoScalingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled' Parallelism: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism' MonitoringConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType' MetricsLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel' LogLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel' SqlApplicationConfiguration: {} ApplicationSnapshotConfiguration: SnapshotsEnabled: !Ref 'ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled' ApplicationDescription: !Ref 'ApplicationDescription' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationname Default: null RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ApplicationConfigurationApplicationCodeConfigurationCodeContentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationcodeconfiguration.html#cfn-kinesisanalyticsv2-application-applicationcodeconfiguration-codecontenttype ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-zipfilecontent Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-bucketarn Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-filekey Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-objectversion Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-textcontent Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointinterval Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-minpausebetweencheckpoints Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelismperkpu Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-autoscalingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelism Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-metricslevel Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-loglevel Default: null ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationsnapshotconfiguration.html#cfn-kinesisanalyticsv2-application-applicationsnapshotconfiguration-snapshotsenabled AllowedValues: - 'true' - 'false' ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationdescription Default: null ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: ApplicationName: !Ref 'ApplicationName' RuntimeEnvironment: !Ref 'RuntimeEnvironment' ApplicationConfiguration: ApplicationCodeConfiguration: CodeContentType: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentType' CodeContent: ZipFileContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent' S3ContentLocation: BucketARN: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN' FileKey: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey' ObjectVersion: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion' TextContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent' EnvironmentProperties: {} FlinkApplicationConfiguration: CheckpointConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType' CheckpointInterval: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval' MinPauseBetweenCheckpoints: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints' CheckpointingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled' ParallelismConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType' ParallelismPerKPU: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU' AutoScalingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled' Parallelism: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism' MonitoringConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType' MetricsLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel' LogLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel' SqlApplicationConfiguration: {} ApplicationSnapshotConfiguration: SnapshotsEnabled: !Ref 'ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled' ApplicationDescription: !Ref 'ApplicationDescription' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationname Default: null RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ApplicationConfigurationApplicationCodeConfigurationCodeContentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationcodeconfiguration.html#cfn-kinesisanalyticsv2-application-applicationcodeconfiguration-codecontenttype ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-zipfilecontent Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-bucketarn Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-filekey Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-objectversion Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-textcontent Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointinterval Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-minpausebetweencheckpoints Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelismperkpu Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-autoscalingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelism Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-metricslevel Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-loglevel Default: null ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationsnapshotconfiguration.html#cfn-kinesisanalyticsv2-application-applicationsnapshotconfiguration-snapshotsenabled AllowedValues: - 'true' - 'false' ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationdescription Default: null ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: ApplicationName: !Ref 'ApplicationName' RuntimeEnvironment: !Ref 'RuntimeEnvironment' ApplicationConfiguration: ApplicationCodeConfiguration: CodeContentType: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentType' CodeContent: ZipFileContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent' S3ContentLocation: BucketARN: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN' FileKey: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey' ObjectVersion: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion' TextContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent' EnvironmentProperties: {} FlinkApplicationConfiguration: CheckpointConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType' CheckpointInterval: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval' MinPauseBetweenCheckpoints: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints' CheckpointingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled' ParallelismConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType' ParallelismPerKPU: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU' AutoScalingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled' Parallelism: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism' MonitoringConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType' MetricsLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel' LogLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel' SqlApplicationConfiguration: {} ApplicationSnapshotConfiguration: SnapshotsEnabled: !Ref 'ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled' ApplicationDescription: !Ref 'ApplicationDescription' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationname Default: null RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ApplicationConfigurationApplicationCodeConfigurationCodeContentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationcodeconfiguration.html#cfn-kinesisanalyticsv2-application-applicationcodeconfiguration-codecontenttype ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-zipfilecontent Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-bucketarn Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-filekey Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-objectversion Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-textcontent Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointinterval Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-minpausebetweencheckpoints Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelismperkpu Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-autoscalingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelism Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-metricslevel Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-loglevel Default: null ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationsnapshotconfiguration.html#cfn-kinesisanalyticsv2-application-applicationsnapshotconfiguration-snapshotsenabled AllowedValues: - 'true' - 'false' ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationdescription Default: null ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: ApplicationName: !Ref 'ApplicationName' RuntimeEnvironment: !Ref 'RuntimeEnvironment' ApplicationConfiguration: ApplicationCodeConfiguration: CodeContentType: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentType' CodeContent: ZipFileContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent' S3ContentLocation: BucketARN: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN' FileKey: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey' ObjectVersion: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion' TextContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent' EnvironmentProperties: {} FlinkApplicationConfiguration: CheckpointConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType' CheckpointInterval: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval' MinPauseBetweenCheckpoints: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints' CheckpointingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled' ParallelismConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType' ParallelismPerKPU: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU' AutoScalingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled' Parallelism: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism' MonitoringConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType' MetricsLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel' LogLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel' SqlApplicationConfiguration: {} ApplicationSnapshotConfiguration: SnapshotsEnabled: !Ref 'ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled' ApplicationDescription: !Ref 'ApplicationDescription' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationname Default: null RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ApplicationConfigurationApplicationCodeConfigurationCodeContentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationcodeconfiguration.html#cfn-kinesisanalyticsv2-application-applicationcodeconfiguration-codecontenttype ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-zipfilecontent Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-bucketarn Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-filekey Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-objectversion Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-textcontent Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointinterval Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-minpausebetweencheckpoints Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelismperkpu Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-autoscalingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelism Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-metricslevel Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-loglevel Default: null ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationsnapshotconfiguration.html#cfn-kinesisanalyticsv2-application-applicationsnapshotconfiguration-snapshotsenabled AllowedValues: - 'true' - 'false' ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationdescription Default: null ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: ApplicationName: !Ref 'ApplicationName' RuntimeEnvironment: !Ref 'RuntimeEnvironment' ApplicationConfiguration: ApplicationCodeConfiguration: CodeContentType: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentType' CodeContent: ZipFileContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent' S3ContentLocation: BucketARN: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN' FileKey: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey' ObjectVersion: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion' TextContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent' EnvironmentProperties: {} FlinkApplicationConfiguration: CheckpointConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType' CheckpointInterval: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval' MinPauseBetweenCheckpoints: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints' CheckpointingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled' ParallelismConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType' ParallelismPerKPU: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU' AutoScalingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled' Parallelism: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism' MonitoringConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType' MetricsLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel' LogLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel' SqlApplicationConfiguration: {} ApplicationSnapshotConfiguration: SnapshotsEnabled: !Ref 'ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled' ApplicationDescription: !Ref 'ApplicationDescription' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationname Default: null RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ApplicationConfigurationApplicationCodeConfigurationCodeContentType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationcodeconfiguration.html#cfn-kinesisanalyticsv2-application-applicationcodeconfiguration-codecontenttype ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-zipfilecontent Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-bucketarn Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-filekey Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-s3contentlocation.html#cfn-kinesisanalyticsv2-application-s3contentlocation-objectversion Default: null ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-codecontent.html#cfn-kinesisanalyticsv2-application-codecontent-textcontent Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointinterval Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-minpausebetweencheckpoints Default: null ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html#cfn-kinesisanalyticsv2-application-checkpointconfiguration-checkpointingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelismperkpu Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-autoscalingenabled AllowedValues: - 'true' - 'false' Default: null ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-parallelismconfiguration.html#cfn-kinesisanalyticsv2-application-parallelismconfiguration-parallelism Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-configurationtype ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-metricslevel Default: null ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-monitoringconfiguration.html#cfn-kinesisanalyticsv2-application-monitoringconfiguration-loglevel Default: null ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationsnapshotconfiguration.html#cfn-kinesisanalyticsv2-application-applicationsnapshotconfiguration-snapshotsenabled AllowedValues: - 'true' - 'false' ApplicationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationdescription Default: null ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: ApplicationName: !Ref 'ApplicationName' RuntimeEnvironment: !Ref 'RuntimeEnvironment' ApplicationConfiguration: ApplicationCodeConfiguration: CodeContentType: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentType' CodeContent: ZipFileContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentZipFileContent' S3ContentLocation: BucketARN: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationBucketARN' FileKey: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationFileKey' ObjectVersion: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationObjectVersion' TextContent: !Ref 'ApplicationConfigurationApplicationCodeConfigurationCodeContentTextContent' EnvironmentProperties: {} FlinkApplicationConfiguration: CheckpointConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationConfigurationType' CheckpointInterval: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointInterval' MinPauseBetweenCheckpoints: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationMinPauseBetweenCheckpoints' CheckpointingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationCheckpointConfigurationCheckpointingEnabled' ParallelismConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationConfigurationType' ParallelismPerKPU: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelismPerKPU' AutoScalingEnabled: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationAutoScalingEnabled' Parallelism: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationParallelismConfigurationParallelism' MonitoringConfiguration: ConfigurationType: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationConfigurationType' MetricsLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationMetricsLevel' LogLevel: !Ref 'ApplicationConfigurationFlinkApplicationConfigurationMonitoringConfigurationLogLevel' SqlApplicationConfiguration: {} ApplicationSnapshotConfiguration: SnapshotsEnabled: !Ref 'ApplicationConfigurationApplicationSnapshotConfigurationSnapshotsEnabled' ApplicationDescription: !Ref 'ApplicationDescription' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-destinationschema.html#cfn-kinesisanalyticsv2-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-lambdaoutput.html#cfn-kinesisanalyticsv2-applicationoutput-lambdaoutput-resourcearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput-resourcearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-output.html#cfn-kinesisanalyticsv2-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-destinationschema.html#cfn-kinesisanalyticsv2-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-lambdaoutput.html#cfn-kinesisanalyticsv2-applicationoutput-lambdaoutput-resourcearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput-resourcearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-output.html#cfn-kinesisanalyticsv2-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-destinationschema.html#cfn-kinesisanalyticsv2-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-lambdaoutput.html#cfn-kinesisanalyticsv2-applicationoutput-lambdaoutput-resourcearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput-resourcearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-output.html#cfn-kinesisanalyticsv2-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-destinationschema.html#cfn-kinesisanalyticsv2-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-lambdaoutput.html#cfn-kinesisanalyticsv2-applicationoutput-lambdaoutput-resourcearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput-resourcearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-output.html#cfn-kinesisanalyticsv2-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-destinationschema.html#cfn-kinesisanalyticsv2-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-lambdaoutput.html#cfn-kinesisanalyticsv2-applicationoutput-lambdaoutput-resourcearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput-resourcearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-output.html#cfn-kinesisanalyticsv2-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-destinationschema.html#cfn-kinesisanalyticsv2-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-lambdaoutput.html#cfn-kinesisanalyticsv2-applicationoutput-lambdaoutput-resourcearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput-resourcearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-output.html#cfn-kinesisanalyticsv2-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-destinationschema.html#cfn-kinesisanalyticsv2-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-lambdaoutput.html#cfn-kinesisanalyticsv2-applicationoutput-lambdaoutput-resourcearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput-resourcearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-output.html#cfn-kinesisanalyticsv2-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-destinationschema.html#cfn-kinesisanalyticsv2-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-lambdaoutput.html#cfn-kinesisanalyticsv2-applicationoutput-lambdaoutput-resourcearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput-resourcearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-output.html#cfn-kinesisanalyticsv2-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-destinationschema.html#cfn-kinesisanalyticsv2-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-lambdaoutput.html#cfn-kinesisanalyticsv2-applicationoutput-lambdaoutput-resourcearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput-resourcearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-output.html#cfn-kinesisanalyticsv2-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname OutputDestinationSchemaRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-destinationschema.html#cfn-kinesisanalyticsv2-applicationoutput-destinationschema-recordformattype Default: null OutputLambdaOutputResourceARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-lambdaoutput.html#cfn-kinesisanalyticsv2-applicationoutput-lambdaoutput-resourcearn OutputKinesisFirehoseOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput-resourcearn OutputKinesisStreamsOutputResourceARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisstreamsoutput-resourcearn OutputName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-output.html#cfn-kinesisanalyticsv2-applicationoutput-output-name Default: null Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: RecordFormatType: !Ref 'OutputDestinationSchemaRecordFormatType' LambdaOutput: ResourceARN: !Ref 'OutputLambdaOutputResourceARN' KinesisFirehoseOutput: ResourceARN: !Ref 'OutputKinesisFirehoseOutputResourceARN' KinesisStreamsOutput: ResourceARN: !Ref 'OutputKinesisStreamsOutputResourceARN' Name: !Ref 'OutputName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-filekey Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-filekey Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-filekey Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-filekey Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-filekey Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-filekey Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-filekey Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-filekey Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-filekey Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordEncoding: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referenceschema-recordencoding Default: null ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-jsonmappingparameters-recordrowpath ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype ReferenceDataSourceTableName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource-tablename Default: null ReferenceDataSourceS3ReferenceDataSourceBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-bucketarn ReferenceDataSourceS3ReferenceDataSourceFileKey: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-s3referencedatasource-filekey Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordEncoding: !Ref 'ReferenceDataSourceReferenceSchemaRecordEncoding' RecordFormat: MappingParameters: JSONMappingParameters: RecordRowPath: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersJSONMappingParametersRecordRowPath' CSVMappingParameters: RecordRowDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordRowDelimiter' RecordColumnDelimiter: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatMappingParametersCSVMappingParametersRecordColumnDelimiter' RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' TableName: !Ref 'ReferenceDataSourceTableName' S3ReferenceDataSource: BucketARN: !Ref 'ReferenceDataSourceS3ReferenceDataSourceBucketARN' FileKey: !Ref 'ReferenceDataSourceS3ReferenceDataSourceFileKey' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Parameters: DeliveryStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname Default: null DeliveryStreamType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationDomainARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn Default: null ElasticsearchDestinationConfigurationIndexName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname ElasticsearchDestinationConfigurationIndexRotationPeriod: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod Default: null ElasticsearchDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds Default: null ElasticsearchDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn ElasticsearchDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ElasticsearchDestinationConfigurationClusterEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-clusterendpoint Default: null ElasticsearchDestinationConfigurationTypeName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename Default: null ElasticsearchDestinationConfigurationVpcConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-vpcconfiguration.html#cfn-kinesisfirehose-deliverystream-vpcconfiguration-rolearn ExtendedS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html#cfn-kinesisfirehose-deliverystream-dataformatconversionconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-caseinsensitive AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-openxjsonserde.html#cfn-kinesisfirehose-deliverystream-openxjsonserde-convertdotsinjsonkeystounderscores AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability : Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-bloomfilterfalsepositiveprobability Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-dictionarykeythreshold Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-enablepadding AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-formatversion Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance : Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-paddingtolerance Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-rowindexstride Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-orcserde.html#cfn-kinesisfirehose-deliverystream-orcserde-stripesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-blocksizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-compression Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression : Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-enabledictionarycompression AllowedValues: - 'true' - 'false' Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-maxpaddingbytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes : Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-pagesizebytes Default: null ? ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion : Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-parquetserde.html#cfn-kinesisfirehose-deliverystream-parquetserde-writerversion Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename Default: null ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid Default: null ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn ExtendedS3DestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode Default: null KinesisStreamSourceConfigurationKinesisStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn KinesisStreamSourceConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationClusterJDBCURL: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl RedshiftDestinationConfigurationCopyCommandCopyOptions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions Default: null RedshiftDestinationConfigurationCopyCommandDataTableColumns: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns Default: null RedshiftDestinationConfigurationCopyCommandDataTableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename RedshiftDestinationConfigurationPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password RedshiftDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds Default: null RedshiftDestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn RedshiftDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3backupmode Default: null RedshiftDestinationConfigurationUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username S3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn S3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null S3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null S3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null S3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null S3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null S3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null S3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecacknowledgmenttimeoutinseconds Default: null SplunkDestinationConfigurationHECEndpoint: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpoint SplunkDestinationConfigurationHECEndpointType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hecendpointtype SplunkDestinationConfigurationHECToken: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-hectoken SplunkDestinationConfigurationProcessingConfigurationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkretryoptions.html#cfn-kinesisfirehose-deliverystream-splunkretryoptions-durationinseconds Default: null SplunkDestinationConfigurationS3BackupMode: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-splunkdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-splunkdestinationconfiguration-s3backupmode Default: null SplunkDestinationConfigurationS3DestinationConfigurationBucketARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds Default: null SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled AllowedValues: - 'true' - 'false' Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname Default: null SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat Default: null SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig Default: null SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-erroroutputprefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix Default: null SplunkDestinationConfigurationS3DestinationConfigurationRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Properties: DeliveryStreamName: !Ref 'DeliveryStreamName' DeliveryStreamType: !Ref 'DeliveryStreamType' ElasticsearchDestinationConfiguration: BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationElasticsearchBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' DomainARN: !Ref 'ElasticsearchDestinationConfigurationDomainARN' IndexName: !Ref 'ElasticsearchDestinationConfigurationIndexName' IndexRotationPeriod: !Ref 'ElasticsearchDestinationConfigurationIndexRotationPeriod' ProcessingConfiguration: Enabled: !Ref 'ElasticsearchDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'ElasticsearchDestinationConfigurationElasticsearchRetryOptionsDurationInSeconds' RoleARN: !Ref 'ElasticsearchDestinationConfigurationRoleARN' S3BackupMode: !Ref 'ElasticsearchDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ElasticsearchDestinationConfigurationS3DestinationConfigurationRoleARN' ClusterEndpoint: !Ref 'ElasticsearchDestinationConfigurationClusterEndpoint' TypeName: !Ref 'ElasticsearchDestinationConfigurationTypeName' VpcConfiguration: RoleARN: !Ref 'ElasticsearchDestinationConfigurationVpcConfigurationRoleARN' ExtendedS3DestinationConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationCompressionFormat' DataFormatConversionConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationEnabled' InputFormatConfiguration: Deserializer: HiveJsonSerDe: {} OpenXJsonSerDe: CaseInsensitive: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeCaseInsensitive' ConvertDotsInJsonKeysToUnderscores: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationInputFormatConfigurationDeserializerOpenXJsonSerDeConvertDotsInJsonKeysToUnderscores' OutputFormatConfiguration: Serializer: OrcSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBlockSizeBytes' BloomFilterFalsePositiveProbability: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeBloomFilterFalsePositiveProbability' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeCompression' DictionaryKeyThreshold: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeDictionaryKeyThreshold' EnablePadding: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeEnablePadding' FormatVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeFormatVersion' PaddingTolerance: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDePaddingTolerance' RowIndexStride: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeRowIndexStride' StripeSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerOrcSerDeStripeSizeBytes' ParquetSerDe: BlockSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeBlockSizeBytes' Compression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeCompression' EnableDictionaryCompression: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeEnableDictionaryCompression' MaxPaddingBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeMaxPaddingBytes' PageSizeBytes: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDePageSizeBytes' WriterVersion: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationOutputFormatConfigurationSerializerParquetSerDeWriterVersion' SchemaConfiguration: CatalogId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationCatalogId' DatabaseName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationDatabaseName' Region: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRegion' RoleARN: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationRoleARN' TableName: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationTableName' VersionId: !Ref 'ExtendedS3DestinationConfigurationDataFormatConversionConfigurationSchemaConfigurationVersionId' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationPrefix' ProcessingConfiguration: Enabled: !Ref 'ExtendedS3DestinationConfigurationProcessingConfigurationEnabled' RoleARN: !Ref 'ExtendedS3DestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'ExtendedS3DestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'ExtendedS3DestinationConfigurationS3BackupMode' KinesisStreamSourceConfiguration: KinesisStreamARN: !Ref 'KinesisStreamSourceConfigurationKinesisStreamARN' RoleARN: !Ref 'KinesisStreamSourceConfigurationRoleARN' RedshiftDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' ClusterJDBCURL: !Ref 'RedshiftDestinationConfigurationClusterJDBCURL' CopyCommand: CopyOptions: !Ref 'RedshiftDestinationConfigurationCopyCommandCopyOptions' DataTableColumns: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableColumns' DataTableName: !Ref 'RedshiftDestinationConfigurationCopyCommandDataTableName' Password: !Ref 'RedshiftDestinationConfigurationPassword' ProcessingConfiguration: Enabled: !Ref 'RedshiftDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'RedshiftDestinationConfigurationRedshiftRetryOptionsDurationInSeconds' RoleARN: !Ref 'RedshiftDestinationConfigurationRoleARN' S3BackupConfiguration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' S3BackupMode: !Ref 'RedshiftDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'RedshiftDestinationConfigurationS3DestinationConfigurationRoleARN' Username: !Ref 'RedshiftDestinationConfigurationUsername' S3DestinationConfiguration: BucketARN: !Ref 'S3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'S3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'S3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'S3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'S3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'S3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'S3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'S3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'S3DestinationConfigurationPrefix' RoleARN: !Ref 'S3DestinationConfigurationRoleARN' SplunkDestinationConfiguration: CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationCloudWatchLoggingOptionsLogStreamName' HECAcknowledgmentTimeoutInSeconds: !Ref 'SplunkDestinationConfigurationHECAcknowledgmentTimeoutInSeconds' HECEndpoint: !Ref 'SplunkDestinationConfigurationHECEndpoint' HECEndpointType: !Ref 'SplunkDestinationConfigurationHECEndpointType' HECToken: !Ref 'SplunkDestinationConfigurationHECToken' ProcessingConfiguration: Enabled: !Ref 'SplunkDestinationConfigurationProcessingConfigurationEnabled' RetryOptions: DurationInSeconds: !Ref 'SplunkDestinationConfigurationSplunkRetryOptionsDurationInSeconds' S3BackupMode: !Ref 'SplunkDestinationConfigurationS3BackupMode' S3Configuration: BucketARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBucketARN' BufferingHints: IntervalInSeconds: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsIntervalInSeconds' SizeInMBs: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationBufferingHintsSizeInMBs' CloudWatchLoggingOptions: Enabled: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsEnabled' LogGroupName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogGroupName' LogStreamName: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCloudWatchLoggingOptionsLogStreamName' CompressionFormat: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationCompressionFormat' EncryptionConfiguration: KMSEncryptionConfig: AWSKMSKeyARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationKMSEncryptionConfigAWSKMSKeyARN' NoEncryptionConfig: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationEncryptionConfigurationNoEncryptionConfig' ErrorOutputPrefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationErrorOutputPrefix' Prefix: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationPrefix' RoleARN: !Ref 'SplunkDestinationConfigurationS3DestinationConfigurationRoleARN' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-DataLakeSettings/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Resources: Resource: Type: AWS::LakeFormation::DataLakeSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Properties: Admins: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-DataLakeSettings/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Resources: Resource: Type: AWS::LakeFormation::DataLakeSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Properties: Admins: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-DataLakeSettings/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Resources: Resource: Type: AWS::LakeFormation::DataLakeSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Properties: Admins: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-DataLakeSettings/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Resources: Resource: Type: AWS::LakeFormation::DataLakeSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Properties: Admins: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-DataLakeSettings/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Resources: Resource: Type: AWS::LakeFormation::DataLakeSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Properties: Admins: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-Permissions/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Parameters: DataLakePrincipalDataLakePrincipalIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-datalakeprincipal.html#cfn-lakeformation-permissions-datalakeprincipal-datalakeprincipalidentifier Default: null ResourceTableResourceDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tableresource.html#cfn-lakeformation-permissions-tableresource-databasename Default: null ResourceTableResourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tableresource.html#cfn-lakeformation-permissions-tableresource-name Default: null ResourceDatabaseResourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-databaseresource.html#cfn-lakeformation-permissions-databaseresource-name Default: null ResourceDataLocationResourceS3Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-datalocationresource.html#cfn-lakeformation-permissions-datalocationresource-s3resource Default: null ResourceTableWithColumnsResourceDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tablewithcolumnsresource.html#cfn-lakeformation-permissions-tablewithcolumnsresource-databasename Default: null ResourceTableWithColumnsResourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tablewithcolumnsresource.html#cfn-lakeformation-permissions-tablewithcolumnsresource-name Default: null Resources: Resource: Type: AWS::LakeFormation::Permissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Properties: DataLakePrincipal: DataLakePrincipalIdentifier: !Ref 'DataLakePrincipalDataLakePrincipalIdentifier' Resource: TableResource: DatabaseName: !Ref 'ResourceTableResourceDatabaseName' Name: !Ref 'ResourceTableResourceName' DatabaseResource: Name: !Ref 'ResourceDatabaseResourceName' DataLocationResource: S3Resource: !Ref 'ResourceDataLocationResourceS3Resource' TableWithColumnsResource: DatabaseName: !Ref 'ResourceTableWithColumnsResourceDatabaseName' Name: !Ref 'ResourceTableWithColumnsResourceName' ColumnWildcard: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-Permissions/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Parameters: DataLakePrincipalDataLakePrincipalIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-datalakeprincipal.html#cfn-lakeformation-permissions-datalakeprincipal-datalakeprincipalidentifier Default: null ResourceTableResourceDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tableresource.html#cfn-lakeformation-permissions-tableresource-databasename Default: null ResourceTableResourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tableresource.html#cfn-lakeformation-permissions-tableresource-name Default: null ResourceDatabaseResourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-databaseresource.html#cfn-lakeformation-permissions-databaseresource-name Default: null ResourceDataLocationResourceS3Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-datalocationresource.html#cfn-lakeformation-permissions-datalocationresource-s3resource Default: null ResourceTableWithColumnsResourceDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tablewithcolumnsresource.html#cfn-lakeformation-permissions-tablewithcolumnsresource-databasename Default: null ResourceTableWithColumnsResourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tablewithcolumnsresource.html#cfn-lakeformation-permissions-tablewithcolumnsresource-name Default: null Resources: Resource: Type: AWS::LakeFormation::Permissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Properties: DataLakePrincipal: DataLakePrincipalIdentifier: !Ref 'DataLakePrincipalDataLakePrincipalIdentifier' Resource: TableResource: DatabaseName: !Ref 'ResourceTableResourceDatabaseName' Name: !Ref 'ResourceTableResourceName' DatabaseResource: Name: !Ref 'ResourceDatabaseResourceName' DataLocationResource: S3Resource: !Ref 'ResourceDataLocationResourceS3Resource' TableWithColumnsResource: DatabaseName: !Ref 'ResourceTableWithColumnsResourceDatabaseName' Name: !Ref 'ResourceTableWithColumnsResourceName' ColumnWildcard: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-Permissions/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Parameters: DataLakePrincipalDataLakePrincipalIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-datalakeprincipal.html#cfn-lakeformation-permissions-datalakeprincipal-datalakeprincipalidentifier Default: null ResourceTableResourceDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tableresource.html#cfn-lakeformation-permissions-tableresource-databasename Default: null ResourceTableResourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tableresource.html#cfn-lakeformation-permissions-tableresource-name Default: null ResourceDatabaseResourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-databaseresource.html#cfn-lakeformation-permissions-databaseresource-name Default: null ResourceDataLocationResourceS3Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-datalocationresource.html#cfn-lakeformation-permissions-datalocationresource-s3resource Default: null ResourceTableWithColumnsResourceDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tablewithcolumnsresource.html#cfn-lakeformation-permissions-tablewithcolumnsresource-databasename Default: null ResourceTableWithColumnsResourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tablewithcolumnsresource.html#cfn-lakeformation-permissions-tablewithcolumnsresource-name Default: null Resources: Resource: Type: AWS::LakeFormation::Permissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Properties: DataLakePrincipal: DataLakePrincipalIdentifier: !Ref 'DataLakePrincipalDataLakePrincipalIdentifier' Resource: TableResource: DatabaseName: !Ref 'ResourceTableResourceDatabaseName' Name: !Ref 'ResourceTableResourceName' DatabaseResource: Name: !Ref 'ResourceDatabaseResourceName' DataLocationResource: S3Resource: !Ref 'ResourceDataLocationResourceS3Resource' TableWithColumnsResource: DatabaseName: !Ref 'ResourceTableWithColumnsResourceDatabaseName' Name: !Ref 'ResourceTableWithColumnsResourceName' ColumnWildcard: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-Permissions/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Parameters: DataLakePrincipalDataLakePrincipalIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-datalakeprincipal.html#cfn-lakeformation-permissions-datalakeprincipal-datalakeprincipalidentifier Default: null ResourceTableResourceDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tableresource.html#cfn-lakeformation-permissions-tableresource-databasename Default: null ResourceTableResourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tableresource.html#cfn-lakeformation-permissions-tableresource-name Default: null ResourceDatabaseResourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-databaseresource.html#cfn-lakeformation-permissions-databaseresource-name Default: null Resources: Resource: Type: AWS::LakeFormation::Permissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Properties: DataLakePrincipal: DataLakePrincipalIdentifier: !Ref 'DataLakePrincipalDataLakePrincipalIdentifier' Resource: TableResource: DatabaseName: !Ref 'ResourceTableResourceDatabaseName' Name: !Ref 'ResourceTableResourceName' DatabaseResource: Name: !Ref 'ResourceDatabaseResourceName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-Permissions/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Parameters: DataLakePrincipalDataLakePrincipalIdentifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-datalakeprincipal.html#cfn-lakeformation-permissions-datalakeprincipal-datalakeprincipalidentifier Default: null ResourceTableResourceDatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tableresource.html#cfn-lakeformation-permissions-tableresource-databasename Default: null ResourceTableResourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tableresource.html#cfn-lakeformation-permissions-tableresource-name Default: null ResourceDatabaseResourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-databaseresource.html#cfn-lakeformation-permissions-databaseresource-name Default: null ResourceDataLocationResourceS3Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-datalocationresource.html#cfn-lakeformation-permissions-datalocationresource-s3resource Default: null ResourceTableWithColumnsResourceDatabaseName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tablewithcolumnsresource.html#cfn-lakeformation-permissions-tablewithcolumnsresource-databasename Default: null ResourceTableWithColumnsResourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tablewithcolumnsresource.html#cfn-lakeformation-permissions-tablewithcolumnsresource-name Default: null Resources: Resource: Type: AWS::LakeFormation::Permissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Properties: DataLakePrincipal: DataLakePrincipalIdentifier: !Ref 'DataLakePrincipalDataLakePrincipalIdentifier' Resource: TableResource: DatabaseName: !Ref 'ResourceTableResourceDatabaseName' Name: !Ref 'ResourceTableResourceName' DatabaseResource: Name: !Ref 'ResourceDatabaseResourceName' DataLocationResource: S3Resource: !Ref 'ResourceDataLocationResourceS3Resource' TableWithColumnsResource: DatabaseName: !Ref 'ResourceTableWithColumnsResourceDatabaseName' Name: !Ref 'ResourceTableWithColumnsResourceName' ColumnWildcard: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-Resource/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-resourcearn UseServiceLinkedRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-useservicelinkedrole AllowedValues: - 'true' - 'false' RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-rolearn Default: null Resources: Resource: Type: AWS::LakeFormation::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Properties: ResourceArn: !Ref 'ResourceArn' UseServiceLinkedRole: !Ref 'UseServiceLinkedRole' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-Resource/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-resourcearn UseServiceLinkedRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-useservicelinkedrole AllowedValues: - 'true' - 'false' RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-rolearn Default: null Resources: Resource: Type: AWS::LakeFormation::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Properties: ResourceArn: !Ref 'ResourceArn' UseServiceLinkedRole: !Ref 'UseServiceLinkedRole' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-Resource/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-resourcearn UseServiceLinkedRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-useservicelinkedrole AllowedValues: - 'true' - 'false' RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-rolearn Default: null Resources: Resource: Type: AWS::LakeFormation::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Properties: ResourceArn: !Ref 'ResourceArn' UseServiceLinkedRole: !Ref 'UseServiceLinkedRole' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-Resource/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-resourcearn UseServiceLinkedRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-useservicelinkedrole AllowedValues: - 'true' - 'false' RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-rolearn Default: null Resources: Resource: Type: AWS::LakeFormation::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Properties: ResourceArn: !Ref 'ResourceArn' UseServiceLinkedRole: !Ref 'UseServiceLinkedRole' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-LakeFormation-Resource/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-resourcearn UseServiceLinkedRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-useservicelinkedrole AllowedValues: - 'true' - 'false' RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-rolearn Default: null Resources: Resource: Type: AWS::LakeFormation::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Properties: ResourceArn: !Ref 'ResourceArn' UseServiceLinkedRole: !Ref 'UseServiceLinkedRole' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Alias/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html#cfn-lambda-alias-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' RoutingConfig: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumretryattempts Default: null DestinationConfigOnSuccessDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onsuccess.html#cfn-lambda-eventinvokeconfig-destinationconfig-onsuccess-destination DestinationConfigOnFailureDestination: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig-onfailure.html#cfn-lambda-eventinvokeconfig-destinationconfig-onfailure-destination Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier MaximumEventAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-maximumeventageinseconds Default: null Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' DestinationConfig: OnSuccess: Destination: !Ref 'DestinationConfigOnSuccessDestination' OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Qualifier: !Ref 'Qualifier' MaximumEventAgeInSeconds: !Ref 'MaximumEventAgeInSeconds' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-EventSourceMapping/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: BatchSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-batchsize Default: null BisectBatchOnFunctionError: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-bisectbatchonfunctionerror AllowedValues: - 'true' - 'false' Default: null DestinationConfigOnFailureDestination: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html#cfn-lambda-eventsourcemapping-onfailure-destination Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-enabled AllowedValues: - 'true' - 'false' Default: null EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname MaximumBatchingWindowInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumbatchingwindowinseconds Default: null MaximumRecordAgeInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumrecordageinseconds Default: null MaximumRetryAttempts: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-maximumretryattempts Default: null ParallelizationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-parallelizationfactor Default: null StartingPosition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-startingposition Default: null Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: BatchSize: !Ref 'BatchSize' BisectBatchOnFunctionError: !Ref 'BisectBatchOnFunctionError' DestinationConfig: OnFailure: Destination: !Ref 'DestinationConfigOnFailureDestination' Enabled: !Ref 'Enabled' EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' MaximumBatchingWindowInSeconds: !Ref 'MaximumBatchingWindowInSeconds' MaximumRecordAgeInSeconds: !Ref 'MaximumRecordAgeInSeconds' MaximumRetryAttempts: !Ref 'MaximumRetryAttempts' ParallelizationFactor: !Ref 'ParallelizationFactor' StartingPosition: !Ref 'StartingPosition' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Function/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-s3objectversion Default: null CodeZipFile: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#cfn-lambda-function-code-zipfile Default: null DeadLetterConfigTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-functionname Default: null Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler KmsKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-kmskeyarn Default: null MemorySize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-memorysize Default: null ReservedConcurrentExecutions: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-reservedconcurrentexecutions Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Timeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-timeout Default: null TracingConfigMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tracingconfig.html#cfn-lambda-function-tracingconfig-mode Default: null Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' ZipFile: !Ref 'CodeZipFile' DeadLetterConfig: TargetArn: !Ref 'DeadLetterConfigTargetArn' Description: !Ref 'Description' Environment: {} FunctionName: !Ref 'FunctionName' Handler: !Ref 'Handler' KmsKeyArn: !Ref 'KmsKeyArn' MemorySize: !Ref 'MemorySize' ReservedConcurrentExecutions: !Ref 'ReservedConcurrentExecutions' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Timeout: !Ref 'Timeout' TracingConfig: Mode: !Ref 'TracingConfigMode' VpcConfig: {} Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: LicenseInfo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-licenseinfo Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-description Default: null LayerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html#cfn-lambda-layerversion-layername Default: null ContentS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion Default: null ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: LicenseInfo: !Ref 'LicenseInfo' Description: !Ref 'Description' LayerName: !Ref 'LayerName' Content: S3ObjectVersion: !Ref 'ContentS3ObjectVersion' S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn OrganizationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-organizationid Default: null Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' OrganizationId: !Ref 'OrganizationId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Permission/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action EventSourceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-eventsourcetoken Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal SourceAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount Default: null SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourcearn Default: null Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' EventSourceToken: !Ref 'EventSourceToken' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' SourceAccount: !Ref 'SourceAccount' SourceArn: !Ref 'SourceArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Lambda-Version/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: CodeSha256: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-codesha256 Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-description Default: null FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-provisionedconcurrencyconfiguration.html#cfn-lambda-version-provisionedconcurrencyconfiguration-provisionedconcurrentexecutions Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: CodeSha256: !Ref 'CodeSha256' Description: !Ref 'Description' FunctionName: !Ref 'FunctionName' ProvisionedConcurrencyConfig: ProvisionedConcurrentExecutions: !Ref 'ProvisionedConcurrencyConfigurationProvisionedConcurrentExecutions' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-Destination/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-logs-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-logs-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname Default: null RetentionInDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays Default: null Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Properties: LogGroupName: !Ref 'LogGroupName' RetentionInDays: !Ref 'RetentionInDays' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-LogStream/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname LogStreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname Default: null Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' LogStreamName: !Ref 'LogStreamName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-MetricFilter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Logs-SubscriptionFilter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn Default: null Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MSK-Cluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize Default: null BrokerNodeGroupInfoBrokerAZDistribution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-brokerazdistribution Default: null BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype EnhancedMonitoring: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-enhancedmonitoring Default: null KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid EncryptionInfoEncryptionInTransitClientBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-clientbroker Default: null EncryptionInfoEncryptionInTransitInCluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionintransit.html#cfn-msk-cluster-encryptionintransit-incluster AllowedValues: - 'true' - 'false' Default: null OpenMonitoringPrometheusJmxExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker AllowedValues: - 'true' - 'false' OpenMonitoringPrometheusNodeExporterEnabledInBroker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker AllowedValues: - 'true' - 'false' ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername LoggingInfoBrokerLogsS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket Default: null LoggingInfoBrokerLogsS3Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix Default: null LoggingInfoBrokerLogsFirehoseDeliveryStream: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream Default: null LoggingInfoBrokerLogsFirehoseEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled AllowedValues: - 'true' - 'false' LoggingInfoBrokerLogsCloudWatchLogsLogGroup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup Default: null LoggingInfoBrokerLogsCloudWatchLogsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled AllowedValues: - 'true' - 'false' Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-tags Default: null ConfigurationInfoRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision ConfigurationInfoArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: StorageInfo: EBSStorageInfo: VolumeSize: !Ref 'BrokerNodeGroupInfoStorageInfoEBSStorageInfoVolumeSize' BrokerAZDistribution: !Ref 'BrokerNodeGroupInfoBrokerAZDistribution' InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' EnhancedMonitoring: !Ref 'EnhancedMonitoring' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' EncryptionInfo: EncryptionAtRest: DataVolumeKMSKeyId: !Ref 'EncryptionInfoEncryptionAtRestDataVolumeKMSKeyId' EncryptionInTransit: ClientBroker: !Ref 'EncryptionInfoEncryptionInTransitClientBroker' InCluster: !Ref 'EncryptionInfoEncryptionInTransitInCluster' OpenMonitoring: Prometheus: JmxExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusJmxExporterEnabledInBroker' NodeExporter: EnabledInBroker: !Ref 'OpenMonitoringPrometheusNodeExporterEnabledInBroker' ClusterName: !Ref 'ClusterName' ClientAuthentication: Tls: {} LoggingInfo: BrokerLogs: S3: Bucket: !Ref 'LoggingInfoBrokerLogsS3Bucket' Enabled: !Ref 'LoggingInfoBrokerLogsS3Enabled' Prefix: !Ref 'LoggingInfoBrokerLogsS3Prefix' Firehose: DeliveryStream: !Ref 'LoggingInfoBrokerLogsFirehoseDeliveryStream' Enabled: !Ref 'LoggingInfoBrokerLogsFirehoseEnabled' CloudWatchLogs: LogGroup: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsLogGroup' Enabled: !Ref 'LoggingInfoBrokerLogsCloudWatchLogsEnabled' Tags: !Ref 'Tags' ConfigurationInfo: Revision: !Ref 'ConfigurationInfoRevision' Arn: !Ref 'ConfigurationInfoArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-description Default: null Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex MaximumMatchDistance: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-maximummatchdistance Default: null Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' Regex: !Ref 'Regex' MaximumMatchDistance: !Ref 'MaximumMatchDistance' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-FindingsFilter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-description Default: null Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-action Default: null Position: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-position Default: null Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' FindingCriteria: Criterion: {} Action: !Ref 'Action' Position: !Ref 'Position' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Macie-Session/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-status Default: null FindingPublishingFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#cfn-macie-session-findingpublishingfrequency Default: null Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Properties: Status: !Ref 'Status' FindingPublishingFrequency: !Ref 'FindingPublishingFrequency' Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Member/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-description Default: null MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminusername MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminpassword MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name NetworkConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-description Default: null NetworkConfigurationFrameworkVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-frameworkversion NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdcomparator Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdpercentage Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-proposaldurationinhours Default: null NetworkConfigurationFramework: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-framework NetworkConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-name NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkfabricconfiguration.html#cfn-managedblockchain-member-networkfabricconfiguration-edition NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-networkid Default: null InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-invitationid Default: null Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Description: !Ref 'MemberConfigurationDescription' MemberFrameworkConfiguration: MemberFabricConfiguration: AdminUsername: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername' AdminPassword: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword' Name: !Ref 'MemberConfigurationName' NetworkConfiguration: Description: !Ref 'NetworkConfigurationDescription' FrameworkVersion: !Ref 'NetworkConfigurationFrameworkVersion' VotingPolicy: ApprovalThresholdPolicy: ThresholdComparator: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator' ThresholdPercentage: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage' ProposalDurationInHours: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours' Framework: !Ref 'NetworkConfigurationFramework' Name: !Ref 'NetworkConfigurationName' NetworkFrameworkConfiguration: NetworkFabricConfiguration: Edition: !Ref 'NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition' NetworkId: !Ref 'NetworkId' InvitationId: !Ref 'InvitationId' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Member/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-description Default: null MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminusername MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminpassword MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name NetworkConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-description Default: null NetworkConfigurationFrameworkVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-frameworkversion NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdcomparator Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdpercentage Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-proposaldurationinhours Default: null NetworkConfigurationFramework: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-framework NetworkConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-name NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkfabricconfiguration.html#cfn-managedblockchain-member-networkfabricconfiguration-edition NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-networkid Default: null InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-invitationid Default: null Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Description: !Ref 'MemberConfigurationDescription' MemberFrameworkConfiguration: MemberFabricConfiguration: AdminUsername: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername' AdminPassword: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword' Name: !Ref 'MemberConfigurationName' NetworkConfiguration: Description: !Ref 'NetworkConfigurationDescription' FrameworkVersion: !Ref 'NetworkConfigurationFrameworkVersion' VotingPolicy: ApprovalThresholdPolicy: ThresholdComparator: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator' ThresholdPercentage: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage' ProposalDurationInHours: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours' Framework: !Ref 'NetworkConfigurationFramework' Name: !Ref 'NetworkConfigurationName' NetworkFrameworkConfiguration: NetworkFabricConfiguration: Edition: !Ref 'NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition' NetworkId: !Ref 'NetworkId' InvitationId: !Ref 'InvitationId' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Member/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-description Default: null MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminusername MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminpassword MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name NetworkConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-description Default: null NetworkConfigurationFrameworkVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-frameworkversion NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdcomparator Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdpercentage Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-proposaldurationinhours Default: null NetworkConfigurationFramework: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-framework NetworkConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-name NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkfabricconfiguration.html#cfn-managedblockchain-member-networkfabricconfiguration-edition NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-networkid Default: null InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-invitationid Default: null Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Description: !Ref 'MemberConfigurationDescription' MemberFrameworkConfiguration: MemberFabricConfiguration: AdminUsername: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername' AdminPassword: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword' Name: !Ref 'MemberConfigurationName' NetworkConfiguration: Description: !Ref 'NetworkConfigurationDescription' FrameworkVersion: !Ref 'NetworkConfigurationFrameworkVersion' VotingPolicy: ApprovalThresholdPolicy: ThresholdComparator: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator' ThresholdPercentage: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage' ProposalDurationInHours: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours' Framework: !Ref 'NetworkConfigurationFramework' Name: !Ref 'NetworkConfigurationName' NetworkFrameworkConfiguration: NetworkFabricConfiguration: Edition: !Ref 'NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition' NetworkId: !Ref 'NetworkId' InvitationId: !Ref 'InvitationId' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Member/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-description Default: null MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminusername MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminpassword MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name NetworkConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-description Default: null NetworkConfigurationFrameworkVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-frameworkversion NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdcomparator Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdpercentage Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-proposaldurationinhours Default: null NetworkConfigurationFramework: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-framework NetworkConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-name NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkfabricconfiguration.html#cfn-managedblockchain-member-networkfabricconfiguration-edition NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-networkid Default: null InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-invitationid Default: null Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Description: !Ref 'MemberConfigurationDescription' MemberFrameworkConfiguration: MemberFabricConfiguration: AdminUsername: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername' AdminPassword: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword' Name: !Ref 'MemberConfigurationName' NetworkConfiguration: Description: !Ref 'NetworkConfigurationDescription' FrameworkVersion: !Ref 'NetworkConfigurationFrameworkVersion' VotingPolicy: ApprovalThresholdPolicy: ThresholdComparator: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator' ThresholdPercentage: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage' ProposalDurationInHours: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours' Framework: !Ref 'NetworkConfigurationFramework' Name: !Ref 'NetworkConfigurationName' NetworkFrameworkConfiguration: NetworkFabricConfiguration: Edition: !Ref 'NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition' NetworkId: !Ref 'NetworkId' InvitationId: !Ref 'InvitationId' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Member/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-description Default: null MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminusername MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminpassword MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name NetworkConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-description Default: null NetworkConfigurationFrameworkVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-frameworkversion NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdcomparator Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdpercentage Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-proposaldurationinhours Default: null NetworkConfigurationFramework: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-framework NetworkConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-name NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkfabricconfiguration.html#cfn-managedblockchain-member-networkfabricconfiguration-edition NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-networkid Default: null InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-invitationid Default: null Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Description: !Ref 'MemberConfigurationDescription' MemberFrameworkConfiguration: MemberFabricConfiguration: AdminUsername: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername' AdminPassword: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword' Name: !Ref 'MemberConfigurationName' NetworkConfiguration: Description: !Ref 'NetworkConfigurationDescription' FrameworkVersion: !Ref 'NetworkConfigurationFrameworkVersion' VotingPolicy: ApprovalThresholdPolicy: ThresholdComparator: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator' ThresholdPercentage: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage' ProposalDurationInHours: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours' Framework: !Ref 'NetworkConfigurationFramework' Name: !Ref 'NetworkConfigurationName' NetworkFrameworkConfiguration: NetworkFabricConfiguration: Edition: !Ref 'NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition' NetworkId: !Ref 'NetworkId' InvitationId: !Ref 'InvitationId' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Member/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-description Default: null MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminusername MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminpassword MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name NetworkConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-description Default: null NetworkConfigurationFrameworkVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-frameworkversion NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdcomparator Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdpercentage Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-proposaldurationinhours Default: null NetworkConfigurationFramework: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-framework NetworkConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-name NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkfabricconfiguration.html#cfn-managedblockchain-member-networkfabricconfiguration-edition NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-networkid Default: null InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-invitationid Default: null Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Description: !Ref 'MemberConfigurationDescription' MemberFrameworkConfiguration: MemberFabricConfiguration: AdminUsername: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername' AdminPassword: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword' Name: !Ref 'MemberConfigurationName' NetworkConfiguration: Description: !Ref 'NetworkConfigurationDescription' FrameworkVersion: !Ref 'NetworkConfigurationFrameworkVersion' VotingPolicy: ApprovalThresholdPolicy: ThresholdComparator: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator' ThresholdPercentage: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage' ProposalDurationInHours: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours' Framework: !Ref 'NetworkConfigurationFramework' Name: !Ref 'NetworkConfigurationName' NetworkFrameworkConfiguration: NetworkFabricConfiguration: Edition: !Ref 'NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition' NetworkId: !Ref 'NetworkId' InvitationId: !Ref 'InvitationId' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Member/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-description Default: null MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminusername MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminpassword MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name NetworkConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-description Default: null NetworkConfigurationFrameworkVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-frameworkversion NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdcomparator Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdpercentage Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-proposaldurationinhours Default: null NetworkConfigurationFramework: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-framework NetworkConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-name NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkfabricconfiguration.html#cfn-managedblockchain-member-networkfabricconfiguration-edition NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-networkid Default: null InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-invitationid Default: null Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Description: !Ref 'MemberConfigurationDescription' MemberFrameworkConfiguration: MemberFabricConfiguration: AdminUsername: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername' AdminPassword: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword' Name: !Ref 'MemberConfigurationName' NetworkConfiguration: Description: !Ref 'NetworkConfigurationDescription' FrameworkVersion: !Ref 'NetworkConfigurationFrameworkVersion' VotingPolicy: ApprovalThresholdPolicy: ThresholdComparator: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator' ThresholdPercentage: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage' ProposalDurationInHours: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours' Framework: !Ref 'NetworkConfigurationFramework' Name: !Ref 'NetworkConfigurationName' NetworkFrameworkConfiguration: NetworkFabricConfiguration: Edition: !Ref 'NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition' NetworkId: !Ref 'NetworkId' InvitationId: !Ref 'InvitationId' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Member/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-description Default: null MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminusername MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminpassword MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name NetworkConfigurationDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-description Default: null NetworkConfigurationFrameworkVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-frameworkversion NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdcomparator Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-thresholdpercentage Default: null NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-approvalthresholdpolicy.html#cfn-managedblockchain-member-approvalthresholdpolicy-proposaldurationinhours Default: null NetworkConfigurationFramework: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-framework NetworkConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkconfiguration.html#cfn-managedblockchain-member-networkconfiguration-name NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-networkfabricconfiguration.html#cfn-managedblockchain-member-networkfabricconfiguration-edition NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-networkid Default: null InvitationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-invitationid Default: null Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Description: !Ref 'MemberConfigurationDescription' MemberFrameworkConfiguration: MemberFabricConfiguration: AdminUsername: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminUsername' AdminPassword: !Ref 'MemberConfigurationMemberFrameworkConfigurationMemberFabricConfigurationAdminPassword' Name: !Ref 'MemberConfigurationName' NetworkConfiguration: Description: !Ref 'NetworkConfigurationDescription' FrameworkVersion: !Ref 'NetworkConfigurationFrameworkVersion' VotingPolicy: ApprovalThresholdPolicy: ThresholdComparator: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdComparator' ThresholdPercentage: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyThresholdPercentage' ProposalDurationInHours: !Ref 'NetworkConfigurationVotingPolicyApprovalThresholdPolicyProposalDurationInHours' Framework: !Ref 'NetworkConfigurationFramework' Name: !Ref 'NetworkConfigurationName' NetworkFrameworkConfiguration: NetworkFabricConfiguration: Edition: !Ref 'NetworkConfigurationNetworkFrameworkConfigurationNetworkFabricConfigurationEdition' NetworkId: !Ref 'NetworkId' InvitationId: !Ref 'InvitationId' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Node/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Node/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Node/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Node/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Node/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Node/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Node/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ManagedBlockchain-Node/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-JobTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-description Default: null AccelerationSettingsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconvert-jobtemplate-accelerationsettings.html#cfn-mediaconvert-jobtemplate-accelerationsettings-mode Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-priority Default: null StatusUpdateInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-statusupdateinterval Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Queue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-queue Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-name Default: null Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' AccelerationSettings: Mode: !Ref 'AccelerationSettingsMode' Priority: !Ref 'Priority' StatusUpdateInterval: !Ref 'StatusUpdateInterval' SettingsJson: !Ref 'SettingsJson' Queue: !Ref 'Queue' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Preset/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-category Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-description Default: null SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-name Default: null Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: Category: !Ref 'Category' Description: !Ref 'Description' SettingsJson: !Ref 'SettingsJson' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaConvert-Queue/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-status Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-description Default: null PricingPlan: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-pricingplan Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-name Default: null Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Properties: Status: !Ref 'Status' Description: !Ref 'Description' PricingPlan: !Ref 'PricingPlan' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Channel/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Parameters: InputSpecificationCodec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-codec Default: null InputSpecificationMaximumBitrate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-maximumbitrate Default: null InputSpecificationResolution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-resolution Default: null ChannelClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-channelclass Default: null EncoderSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-encodersettings Default: null LogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-loglevel Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-name Default: null Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Properties: InputSpecification: Codec: !Ref 'InputSpecificationCodec' MaximumBitrate: !Ref 'InputSpecificationMaximumBitrate' Resolution: !Ref 'InputSpecificationResolution' ChannelClass: !Ref 'ChannelClass' EncoderSettings: !Ref 'EncoderSettings' LogLevel: !Ref 'LogLevel' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Channel/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Parameters: InputSpecificationCodec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-codec Default: null InputSpecificationMaximumBitrate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-maximumbitrate Default: null InputSpecificationResolution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-resolution Default: null ChannelClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-channelclass Default: null EncoderSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-encodersettings Default: null LogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-loglevel Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-name Default: null Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Properties: InputSpecification: Codec: !Ref 'InputSpecificationCodec' MaximumBitrate: !Ref 'InputSpecificationMaximumBitrate' Resolution: !Ref 'InputSpecificationResolution' ChannelClass: !Ref 'ChannelClass' EncoderSettings: !Ref 'EncoderSettings' LogLevel: !Ref 'LogLevel' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Channel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Parameters: InputSpecificationCodec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-codec Default: null InputSpecificationMaximumBitrate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-maximumbitrate Default: null InputSpecificationResolution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-resolution Default: null ChannelClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-channelclass Default: null EncoderSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-encodersettings Default: null LogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-loglevel Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-name Default: null Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Properties: InputSpecification: Codec: !Ref 'InputSpecificationCodec' MaximumBitrate: !Ref 'InputSpecificationMaximumBitrate' Resolution: !Ref 'InputSpecificationResolution' ChannelClass: !Ref 'ChannelClass' EncoderSettings: !Ref 'EncoderSettings' LogLevel: !Ref 'LogLevel' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Channel/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Parameters: InputSpecificationCodec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-codec Default: null InputSpecificationMaximumBitrate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-maximumbitrate Default: null InputSpecificationResolution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-resolution Default: null ChannelClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-channelclass Default: null EncoderSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-encodersettings Default: null LogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-loglevel Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-name Default: null Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Properties: InputSpecification: Codec: !Ref 'InputSpecificationCodec' MaximumBitrate: !Ref 'InputSpecificationMaximumBitrate' Resolution: !Ref 'InputSpecificationResolution' ChannelClass: !Ref 'ChannelClass' EncoderSettings: !Ref 'EncoderSettings' LogLevel: !Ref 'LogLevel' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Channel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Parameters: InputSpecificationCodec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-codec Default: null InputSpecificationMaximumBitrate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-maximumbitrate Default: null InputSpecificationResolution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-resolution Default: null ChannelClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-channelclass Default: null EncoderSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-encodersettings Default: null LogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-loglevel Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-name Default: null Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Properties: InputSpecification: Codec: !Ref 'InputSpecificationCodec' MaximumBitrate: !Ref 'InputSpecificationMaximumBitrate' Resolution: !Ref 'InputSpecificationResolution' ChannelClass: !Ref 'ChannelClass' EncoderSettings: !Ref 'EncoderSettings' LogLevel: !Ref 'LogLevel' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Channel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Parameters: InputSpecificationCodec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-codec Default: null InputSpecificationMaximumBitrate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-maximumbitrate Default: null InputSpecificationResolution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-resolution Default: null ChannelClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-channelclass Default: null EncoderSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-encodersettings Default: null LogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-loglevel Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-name Default: null Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Properties: InputSpecification: Codec: !Ref 'InputSpecificationCodec' MaximumBitrate: !Ref 'InputSpecificationMaximumBitrate' Resolution: !Ref 'InputSpecificationResolution' ChannelClass: !Ref 'ChannelClass' EncoderSettings: !Ref 'EncoderSettings' LogLevel: !Ref 'LogLevel' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Channel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Parameters: InputSpecificationCodec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-codec Default: null InputSpecificationMaximumBitrate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-maximumbitrate Default: null InputSpecificationResolution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-resolution Default: null ChannelClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-channelclass Default: null EncoderSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-encodersettings Default: null LogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-loglevel Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-name Default: null Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Properties: InputSpecification: Codec: !Ref 'InputSpecificationCodec' MaximumBitrate: !Ref 'InputSpecificationMaximumBitrate' Resolution: !Ref 'InputSpecificationResolution' ChannelClass: !Ref 'ChannelClass' EncoderSettings: !Ref 'EncoderSettings' LogLevel: !Ref 'LogLevel' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Channel/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Parameters: InputSpecificationCodec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-codec Default: null InputSpecificationMaximumBitrate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-maximumbitrate Default: null InputSpecificationResolution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-resolution Default: null ChannelClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-channelclass Default: null EncoderSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-encodersettings Default: null LogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-loglevel Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-name Default: null Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Properties: InputSpecification: Codec: !Ref 'InputSpecificationCodec' MaximumBitrate: !Ref 'InputSpecificationMaximumBitrate' Resolution: !Ref 'InputSpecificationResolution' ChannelClass: !Ref 'ChannelClass' EncoderSettings: !Ref 'EncoderSettings' LogLevel: !Ref 'LogLevel' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Channel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Parameters: InputSpecificationCodec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-codec Default: null InputSpecificationMaximumBitrate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-maximumbitrate Default: null InputSpecificationResolution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-resolution Default: null ChannelClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-channelclass Default: null EncoderSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-encodersettings Default: null LogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-loglevel Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-name Default: null Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Properties: InputSpecification: Codec: !Ref 'InputSpecificationCodec' MaximumBitrate: !Ref 'InputSpecificationMaximumBitrate' Resolution: !Ref 'InputSpecificationResolution' ChannelClass: !Ref 'ChannelClass' EncoderSettings: !Ref 'EncoderSettings' LogLevel: !Ref 'LogLevel' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Channel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Parameters: InputSpecificationCodec: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-codec Default: null InputSpecificationMaximumBitrate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-maximumbitrate Default: null InputSpecificationResolution: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputspecification.html#cfn-medialive-channel-inputspecification-resolution Default: null ChannelClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-channelclass Default: null EncoderSettings: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-encodersettings Default: null LogLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-loglevel Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-name Default: null Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Properties: InputSpecification: Codec: !Ref 'InputSpecificationCodec' MaximumBitrate: !Ref 'InputSpecificationMaximumBitrate' Resolution: !Ref 'InputSpecificationResolution' ChannelClass: !Ref 'ChannelClass' EncoderSettings: !Ref 'EncoderSettings' LogLevel: !Ref 'LogLevel' RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Input/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-type Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-name Default: null Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Properties: Type: !Ref 'Type' Vpc: {} RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Input/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-type Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-name Default: null Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Properties: Type: !Ref 'Type' Vpc: {} RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Input/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-type Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-name Default: null Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Properties: Type: !Ref 'Type' Vpc: {} RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Input/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-type Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-name Default: null Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Properties: Type: !Ref 'Type' Vpc: {} RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Input/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-type Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-name Default: null Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Properties: Type: !Ref 'Type' Vpc: {} RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Input/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-type Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-name Default: null Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Properties: Type: !Ref 'Type' Vpc: {} RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Input/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-type Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-name Default: null Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Properties: Type: !Ref 'Type' Vpc: {} RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Input/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-type Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-name Default: null Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Properties: Type: !Ref 'Type' Vpc: {} RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Input/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-type Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-name Default: null Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Properties: Type: !Ref 'Type' Vpc: {} RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-Input/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-type Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-rolearn Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-name Default: null Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Properties: Type: !Ref 'Type' Vpc: {} RoleArn: !Ref 'RoleArn' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html#cfn-medialive-inputsecuritygroup-tags Default: null Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Properties: Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html#cfn-medialive-inputsecuritygroup-tags Default: null Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Properties: Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html#cfn-medialive-inputsecuritygroup-tags Default: null Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Properties: Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html#cfn-medialive-inputsecuritygroup-tags Default: null Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Properties: Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html#cfn-medialive-inputsecuritygroup-tags Default: null Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Properties: Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html#cfn-medialive-inputsecuritygroup-tags Default: null Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Properties: Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html#cfn-medialive-inputsecuritygroup-tags Default: null Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Properties: Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html#cfn-medialive-inputsecuritygroup-tags Default: null Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Properties: Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html#cfn-medialive-inputsecuritygroup-tags Default: null Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Properties: Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html#cfn-medialive-inputsecuritygroup-tags Default: null Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Properties: Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaStore-Container/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-policy Default: null MetricPolicyContainerLevelMetrics: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediastore-container-metricpolicy.html#cfn-mediastore-container-metricpolicy-containerlevelmetrics ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername LifecyclePolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-lifecyclepolicy Default: null AccessLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-accessloggingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: Policy: !Ref 'Policy' MetricPolicy: ContainerLevelMetrics: !Ref 'MetricPolicyContainerLevelMetrics' ContainerName: !Ref 'ContainerName' LifecyclePolicy: !Ref 'LifecyclePolicy' AccessLoggingEnabled: !Ref 'AccessLoggingEnabled' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaStore-Container/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-policy Default: null MetricPolicyContainerLevelMetrics: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediastore-container-metricpolicy.html#cfn-mediastore-container-metricpolicy-containerlevelmetrics ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername LifecyclePolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-lifecyclepolicy Default: null AccessLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-accessloggingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: Policy: !Ref 'Policy' MetricPolicy: ContainerLevelMetrics: !Ref 'MetricPolicyContainerLevelMetrics' ContainerName: !Ref 'ContainerName' LifecyclePolicy: !Ref 'LifecyclePolicy' AccessLoggingEnabled: !Ref 'AccessLoggingEnabled' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaStore-Container/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-policy Default: null MetricPolicyContainerLevelMetrics: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediastore-container-metricpolicy.html#cfn-mediastore-container-metricpolicy-containerlevelmetrics ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername LifecyclePolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-lifecyclepolicy Default: null AccessLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-accessloggingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: Policy: !Ref 'Policy' MetricPolicy: ContainerLevelMetrics: !Ref 'MetricPolicyContainerLevelMetrics' ContainerName: !Ref 'ContainerName' LifecyclePolicy: !Ref 'LifecyclePolicy' AccessLoggingEnabled: !Ref 'AccessLoggingEnabled' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaStore-Container/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-policy Default: null MetricPolicyContainerLevelMetrics: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediastore-container-metricpolicy.html#cfn-mediastore-container-metricpolicy-containerlevelmetrics ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername LifecyclePolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-lifecyclepolicy Default: null AccessLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-accessloggingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: Policy: !Ref 'Policy' MetricPolicy: ContainerLevelMetrics: !Ref 'MetricPolicyContainerLevelMetrics' ContainerName: !Ref 'ContainerName' LifecyclePolicy: !Ref 'LifecyclePolicy' AccessLoggingEnabled: !Ref 'AccessLoggingEnabled' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaStore-Container/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-policy Default: null MetricPolicyContainerLevelMetrics: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediastore-container-metricpolicy.html#cfn-mediastore-container-metricpolicy-containerlevelmetrics ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername LifecyclePolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-lifecyclepolicy Default: null AccessLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-accessloggingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: Policy: !Ref 'Policy' MetricPolicy: ContainerLevelMetrics: !Ref 'MetricPolicyContainerLevelMetrics' ContainerName: !Ref 'ContainerName' LifecyclePolicy: !Ref 'LifecyclePolicy' AccessLoggingEnabled: !Ref 'AccessLoggingEnabled' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaStore-Container/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-policy Default: null MetricPolicyContainerLevelMetrics: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediastore-container-metricpolicy.html#cfn-mediastore-container-metricpolicy-containerlevelmetrics ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername LifecyclePolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-lifecyclepolicy Default: null AccessLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-accessloggingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: Policy: !Ref 'Policy' MetricPolicy: ContainerLevelMetrics: !Ref 'MetricPolicyContainerLevelMetrics' ContainerName: !Ref 'ContainerName' LifecyclePolicy: !Ref 'LifecyclePolicy' AccessLoggingEnabled: !Ref 'AccessLoggingEnabled' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaStore-Container/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-policy Default: null MetricPolicyContainerLevelMetrics: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediastore-container-metricpolicy.html#cfn-mediastore-container-metricpolicy-containerlevelmetrics ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername LifecyclePolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-lifecyclepolicy Default: null AccessLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-accessloggingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: Policy: !Ref 'Policy' MetricPolicy: ContainerLevelMetrics: !Ref 'MetricPolicyContainerLevelMetrics' ContainerName: !Ref 'ContainerName' LifecyclePolicy: !Ref 'LifecyclePolicy' AccessLoggingEnabled: !Ref 'AccessLoggingEnabled' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-MediaStore-Container/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-policy Default: null MetricPolicyContainerLevelMetrics: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediastore-container-metricpolicy.html#cfn-mediastore-container-metricpolicy-containerlevelmetrics ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername LifecyclePolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-lifecyclepolicy Default: null AccessLoggingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-accessloggingenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: Policy: !Ref 'Policy' MetricPolicy: ContainerLevelMetrics: !Ref 'MetricPolicyContainerLevelMetrics' ContainerName: !Ref 'ContainerName' LifecyclePolicy: !Ref 'LifecyclePolicy' AccessLoggingEnabled: !Ref 'AccessLoggingEnabled' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBCluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null RestoreToTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretotime Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredmaintenancewindow Default: null IamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-iamauthenabled AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredbackupwindow Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-sourcedbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-backupretentionperiod Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretype Default: null Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' RestoreToTime: !Ref 'RestoreToTime' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' IamAuthEnabled: !Ref 'IamAuthEnabled' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' RestoreType: !Ref 'RestoreType' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBCluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null RestoreToTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretotime Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredmaintenancewindow Default: null IamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-iamauthenabled AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredbackupwindow Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-sourcedbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-backupretentionperiod Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretype Default: null Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' RestoreToTime: !Ref 'RestoreToTime' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' IamAuthEnabled: !Ref 'IamAuthEnabled' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' RestoreType: !Ref 'RestoreType' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBCluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null RestoreToTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretotime Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredmaintenancewindow Default: null IamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-iamauthenabled AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredbackupwindow Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-sourcedbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-backupretentionperiod Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretype Default: null Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' RestoreToTime: !Ref 'RestoreToTime' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' IamAuthEnabled: !Ref 'IamAuthEnabled' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' RestoreType: !Ref 'RestoreType' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBCluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null RestoreToTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretotime Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredmaintenancewindow Default: null IamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-iamauthenabled AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredbackupwindow Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-sourcedbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-backupretentionperiod Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretype Default: null Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' RestoreToTime: !Ref 'RestoreToTime' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' IamAuthEnabled: !Ref 'IamAuthEnabled' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' RestoreType: !Ref 'RestoreType' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBCluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null RestoreToTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretotime Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredmaintenancewindow Default: null IamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-iamauthenabled AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredbackupwindow Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-sourcedbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-backupretentionperiod Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretype Default: null Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' RestoreToTime: !Ref 'RestoreToTime' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' IamAuthEnabled: !Ref 'IamAuthEnabled' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' RestoreType: !Ref 'RestoreType' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBCluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null RestoreToTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretotime Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredmaintenancewindow Default: null IamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-iamauthenabled AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredbackupwindow Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-sourcedbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-backupretentionperiod Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretype Default: null Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' RestoreToTime: !Ref 'RestoreToTime' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' IamAuthEnabled: !Ref 'IamAuthEnabled' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' RestoreType: !Ref 'RestoreType' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBCluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null RestoreToTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretotime Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredmaintenancewindow Default: null IamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-iamauthenabled AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredbackupwindow Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-sourcedbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-backupretentionperiod Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretype Default: null Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' RestoreToTime: !Ref 'RestoreToTime' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' IamAuthEnabled: !Ref 'IamAuthEnabled' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' RestoreType: !Ref 'RestoreType' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBCluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null RestoreToTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretotime Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredmaintenancewindow Default: null IamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-iamauthenabled AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredbackupwindow Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-sourcedbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-backupretentionperiod Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretype Default: null Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' RestoreToTime: !Ref 'RestoreToTime' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' IamAuthEnabled: !Ref 'IamAuthEnabled' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' RestoreType: !Ref 'RestoreType' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBCluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null RestoreToTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretotime Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredmaintenancewindow Default: null IamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-iamauthenabled AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredbackupwindow Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-sourcedbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-backupretentionperiod Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretype Default: null Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' RestoreToTime: !Ref 'RestoreToTime' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' IamAuthEnabled: !Ref 'IamAuthEnabled' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' RestoreType: !Ref 'RestoreType' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBCluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null RestoreToTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretotime Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredmaintenancewindow Default: null IamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-iamauthenabled AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredbackupwindow Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-sourcedbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-backupretentionperiod Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretype Default: null Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' RestoreToTime: !Ref 'RestoreToTime' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' IamAuthEnabled: !Ref 'IamAuthEnabled' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' RestoreType: !Ref 'RestoreType' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBCluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Parameters: StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null RestoreToTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretotime Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-kmskeyid Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-snapshotidentifier Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-port Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusteridentifier Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredmaintenancewindow Default: null IamAuthEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-iamauthenabled AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbsubnetgroupname Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-preferredbackupwindow Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-sourcedbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-dbclusterparametergroupname Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-backupretentionperiod Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html#cfn-neptune-dbcluster-restoretype Default: null Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Properties: StorageEncrypted: !Ref 'StorageEncrypted' RestoreToTime: !Ref 'RestoreToTime' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Port: !Ref 'Port' DBClusterIdentifier: !Ref 'DBClusterIdentifier' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' IamAuthEnabled: !Ref 'IamAuthEnabled' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeletionProtection: !Ref 'DeletionProtection' PreferredBackupWindow: !Ref 'PreferredBackupWindow' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' RestoreType: !Ref 'RestoreType' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBInstance/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbparametergroupname Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbclusteridentifier Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsubnetgroupname Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceidentifier Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsnapshotidentifier Default: null Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBParameterGroupName: !Ref 'DBParameterGroupName' DBInstanceClass: !Ref 'DBInstanceClass' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBInstance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbparametergroupname Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbclusteridentifier Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsubnetgroupname Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceidentifier Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsnapshotidentifier Default: null Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBParameterGroupName: !Ref 'DBParameterGroupName' DBInstanceClass: !Ref 'DBInstanceClass' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBInstance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbparametergroupname Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbclusteridentifier Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsubnetgroupname Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceidentifier Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsnapshotidentifier Default: null Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBParameterGroupName: !Ref 'DBParameterGroupName' DBInstanceClass: !Ref 'DBInstanceClass' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBInstance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbparametergroupname Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbclusteridentifier Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsubnetgroupname Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceidentifier Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsnapshotidentifier Default: null Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBParameterGroupName: !Ref 'DBParameterGroupName' DBInstanceClass: !Ref 'DBInstanceClass' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBInstance/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbparametergroupname Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbclusteridentifier Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsubnetgroupname Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceidentifier Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsnapshotidentifier Default: null Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBParameterGroupName: !Ref 'DBParameterGroupName' DBInstanceClass: !Ref 'DBInstanceClass' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBInstance/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbparametergroupname Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbclusteridentifier Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsubnetgroupname Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceidentifier Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsnapshotidentifier Default: null Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBParameterGroupName: !Ref 'DBParameterGroupName' DBInstanceClass: !Ref 'DBInstanceClass' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBInstance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbparametergroupname Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbclusteridentifier Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsubnetgroupname Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceidentifier Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsnapshotidentifier Default: null Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBParameterGroupName: !Ref 'DBParameterGroupName' DBInstanceClass: !Ref 'DBInstanceClass' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBInstance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbparametergroupname Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbclusteridentifier Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsubnetgroupname Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceidentifier Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsnapshotidentifier Default: null Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBParameterGroupName: !Ref 'DBParameterGroupName' DBInstanceClass: !Ref 'DBInstanceClass' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBInstance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbparametergroupname Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbclusteridentifier Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-availabilityzone Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-preferredmaintenancewindow Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsubnetgroupname Default: null DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceidentifier Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbsnapshotidentifier Default: null Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBParameterGroupName: !Ref 'DBParameterGroupName' DBInstanceClass: !Ref 'DBInstanceClass' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' DBClusterIdentifier: !Ref 'DBClusterIdentifier' AvailabilityZone: !Ref 'AvailabilityZone' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBParameterGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBParameterGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBParameterGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBParameterGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBParameterGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBParameterGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-name Default: null Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupname Default: null DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupName: !Ref 'DBSubnetGroupName' DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-linkid Default: null Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Device/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html#cfn-networkmanager-device-location-longitude Default: null Model: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-model Default: null SerialNumber: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-serialnumber Default: null SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-siteid Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-type Default: null Vendor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-vendor Default: null Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Model: !Ref 'Model' SerialNumber: !Ref 'SerialNumber' SiteId: !Ref 'SiteId' Type: !Ref 'Type' Vendor: !Ref 'Vendor' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html#cfn-networkmanager-globalnetwork-description Default: null Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Properties: Description: !Ref 'Description' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Link/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid BandwidthDownloadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed Default: null BandwidthUploadSpeed: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed Default: null Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type Default: null Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: DownloadSpeed: !Ref 'BandwidthDownloadSpeed' UploadSpeed: !Ref 'BandwidthUploadSpeed' Provider: !Ref 'Provider' Description: !Ref 'Description' Type: !Ref 'Type' Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-Site/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description Default: null GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid LocationAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address Default: null LocationLatitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude Default: null LocationLongitude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude Default: null Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: Description: !Ref 'Description' GlobalNetworkId: !Ref 'GlobalNetworkId' Location: Address: !Ref 'LocationAddress' Latitude: !Ref 'LocationLatitude' Longitude: !Ref 'LocationLongitude' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-App/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-pw Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description Default: null EnableSsl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname Default: null SslConfigurationCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate Default: null SslConfigurationChain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain Default: null SslConfigurationPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: AppSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' Description: !Ref 'Description' EnableSsl: !Ref 'EnableSsl' Name: !Ref 'Name' Shortname: !Ref 'Shortname' SslConfiguration: Certificate: !Ref 'SslConfigurationCertificate' Chain: !Ref 'SslConfigurationChain' PrivateKey: !Ref 'SslConfigurationPrivateKey' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Instance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion Default: null AmiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture Default: null AutoScalingType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone Default: null EbsOptimized: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized AllowedValues: - 'true' - 'false' Default: null Hostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname Default: null InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype Os: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os Default: null RootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype Default: null SshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid Default: null Tenancy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy Default: null VirtualizationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype Default: null Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: AgentVersion: !Ref 'AgentVersion' AmiId: !Ref 'AmiId' Architecture: !Ref 'Architecture' AutoScalingType: !Ref 'AutoScalingType' AvailabilityZone: !Ref 'AvailabilityZone' EbsOptimized: !Ref 'EbsOptimized' Hostname: !Ref 'Hostname' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' InstanceType: !Ref 'InstanceType' Os: !Ref 'Os' RootDeviceType: !Ref 'RootDeviceType' SshKeyName: !Ref 'SshKeyName' StackId: !Ref 'StackId' SubnetId: !Ref 'SubnetId' Tenancy: !Ref 'Tenancy' TimeBasedAutoScaling: {} VirtualizationType: !Ref 'VirtualizationType' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Layer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' CustomInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson Default: null EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' InstallUpdatesOnBoot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained AllowedValues: - 'true' - 'false' Default: null LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout Default: null LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime Default: null LoadBasedAutoScalingAutoScalingThresholdsInstanceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount Default: null LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold Default: null LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime Default: null LoadBasedAutoScalingEnable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type UseEbsOptimizedInstances: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' CustomInstanceProfileArn: !Ref 'CustomInstanceProfileArn' CustomJson: !Ref 'CustomJson' CustomRecipes: {} EnableAutoHealing: !Ref 'EnableAutoHealing' InstallUpdatesOnBoot: !Ref 'InstallUpdatesOnBoot' LifecycleEventConfiguration: ShutdownEventConfiguration: DelayUntilElbConnectionsDrained: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationDelayUntilElbConnectionsDrained' ExecutionTimeout: !Ref 'LifecycleEventConfigurationShutdownEventConfigurationExecutionTimeout' LoadBasedAutoScaling: DownScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Enable: !Ref 'LoadBasedAutoScalingEnable' UpScaling: CpuThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsCpuThreshold' IgnoreMetricsTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsIgnoreMetricsTime' InstanceCount: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsInstanceCount' LoadThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsLoadThreshold' MemoryThreshold: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsMemoryThreshold' ThresholdsWaitTime: !Ref 'LoadBasedAutoScalingAutoScalingThresholdsThresholdsWaitTime' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' UseEbsOptimizedInstances: !Ref 'UseEbsOptimizedInstances' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Stack/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: AgentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion Default: null ChefConfigurationBerkshelfVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion Default: null ChefConfigurationManageBerkshelf: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion AllowedValues: - 'true' - 'false' Default: null ClonePermissions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions AllowedValues: - 'true' - 'false' Default: null StackConfigurationManagerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name Default: null StackConfigurationManagerVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version Default: null SourcePassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password Default: null SourceRevision: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision Default: null SourceSshKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey Default: null SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type Default: null SourceUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url Default: null SourceUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username Default: null CustomJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson Default: null DefaultAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz Default: null DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof DefaultOs: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos Default: null DefaultRootDeviceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype Default: null DefaultSshKeyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname Default: null DefaultSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet Default: null EcsClusterArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn Default: null HostnameTheme: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn SourceStackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid Default: null UseCustomCookbooks: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks AllowedValues: - 'true' - 'false' Default: null UseOpsworksSecurityGroups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups AllowedValues: - 'true' - 'false' Default: null VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid Default: null Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: AgentVersion: !Ref 'AgentVersion' ChefConfiguration: BerkshelfVersion: !Ref 'ChefConfigurationBerkshelfVersion' ManageBerkshelf: !Ref 'ChefConfigurationManageBerkshelf' ClonePermissions: !Ref 'ClonePermissions' ConfigurationManager: Name: !Ref 'StackConfigurationManagerName' Version: !Ref 'StackConfigurationManagerVersion' CustomCookbooksSource: Password: !Ref 'SourcePassword' Revision: !Ref 'SourceRevision' SshKey: !Ref 'SourceSshKey' Type: !Ref 'SourceType' Url: !Ref 'SourceUrl' Username: !Ref 'SourceUsername' CustomJson: !Ref 'CustomJson' DefaultAvailabilityZone: !Ref 'DefaultAvailabilityZone' DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' DefaultOs: !Ref 'DefaultOs' DefaultRootDeviceType: !Ref 'DefaultRootDeviceType' DefaultSshKeyName: !Ref 'DefaultSshKeyName' DefaultSubnetId: !Ref 'DefaultSubnetId' EcsClusterArn: !Ref 'EcsClusterArn' HostnameTheme: !Ref 'HostnameTheme' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' SourceStackId: !Ref 'SourceStackId' UseCustomCookbooks: !Ref 'UseCustomCookbooks' UseOpsworksSecurityGroups: !Ref 'UseOpsworksSecurityGroups' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-UserProfile/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: AllowSelfManagement: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement AllowedValues: - 'true' - 'false' Default: null IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn SshPublicKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey Default: null SshUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername Default: null Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: AllowSelfManagement: !Ref 'AllowSelfManagement' IamUserArn: !Ref 'IamUserArn' SshPublicKey: !Ref 'SshPublicKey' SshUsername: !Ref 'SshUsername' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorks-Volume/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid MountPoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name Default: null StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' MountPoint: !Ref 'MountPoint' Name: !Ref 'Name' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorksCM-Server/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-keypair Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engineversion Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn DisableAutomatedBackup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-disableautomatedbackup AllowedValues: - 'true' - 'false' Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupid Default: null EngineModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-enginemodel Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredmaintenancewindow Default: null AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-associatepublicipaddress AllowedValues: - 'true' - 'false' Default: null InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn CustomCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customcertificate Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredbackupwindow Default: null CustomDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customdomain Default: null CustomPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customprivatekey Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servername Default: null BackupRetentionCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupretentioncount Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engine Default: null Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: KeyPair: !Ref 'KeyPair' EngineVersion: !Ref 'EngineVersion' ServiceRoleArn: !Ref 'ServiceRoleArn' DisableAutomatedBackup: !Ref 'DisableAutomatedBackup' BackupId: !Ref 'BackupId' EngineModel: !Ref 'EngineModel' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' InstanceProfileArn: !Ref 'InstanceProfileArn' CustomCertificate: !Ref 'CustomCertificate' PreferredBackupWindow: !Ref 'PreferredBackupWindow' CustomDomain: !Ref 'CustomDomain' CustomPrivateKey: !Ref 'CustomPrivateKey' ServerName: !Ref 'ServerName' BackupRetentionCount: !Ref 'BackupRetentionCount' InstanceType: !Ref 'InstanceType' Engine: !Ref 'Engine' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorksCM-Server/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-keypair Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engineversion Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn DisableAutomatedBackup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-disableautomatedbackup AllowedValues: - 'true' - 'false' Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupid Default: null EngineModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-enginemodel Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredmaintenancewindow Default: null AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-associatepublicipaddress AllowedValues: - 'true' - 'false' Default: null InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn CustomCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customcertificate Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredbackupwindow Default: null CustomDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customdomain Default: null CustomPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customprivatekey Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servername Default: null BackupRetentionCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupretentioncount Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engine Default: null Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: KeyPair: !Ref 'KeyPair' EngineVersion: !Ref 'EngineVersion' ServiceRoleArn: !Ref 'ServiceRoleArn' DisableAutomatedBackup: !Ref 'DisableAutomatedBackup' BackupId: !Ref 'BackupId' EngineModel: !Ref 'EngineModel' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' InstanceProfileArn: !Ref 'InstanceProfileArn' CustomCertificate: !Ref 'CustomCertificate' PreferredBackupWindow: !Ref 'PreferredBackupWindow' CustomDomain: !Ref 'CustomDomain' CustomPrivateKey: !Ref 'CustomPrivateKey' ServerName: !Ref 'ServerName' BackupRetentionCount: !Ref 'BackupRetentionCount' InstanceType: !Ref 'InstanceType' Engine: !Ref 'Engine' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorksCM-Server/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-keypair Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engineversion Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn DisableAutomatedBackup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-disableautomatedbackup AllowedValues: - 'true' - 'false' Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupid Default: null EngineModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-enginemodel Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredmaintenancewindow Default: null AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-associatepublicipaddress AllowedValues: - 'true' - 'false' Default: null InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn CustomCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customcertificate Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredbackupwindow Default: null CustomDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customdomain Default: null CustomPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customprivatekey Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servername Default: null BackupRetentionCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupretentioncount Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engine Default: null Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: KeyPair: !Ref 'KeyPair' EngineVersion: !Ref 'EngineVersion' ServiceRoleArn: !Ref 'ServiceRoleArn' DisableAutomatedBackup: !Ref 'DisableAutomatedBackup' BackupId: !Ref 'BackupId' EngineModel: !Ref 'EngineModel' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' InstanceProfileArn: !Ref 'InstanceProfileArn' CustomCertificate: !Ref 'CustomCertificate' PreferredBackupWindow: !Ref 'PreferredBackupWindow' CustomDomain: !Ref 'CustomDomain' CustomPrivateKey: !Ref 'CustomPrivateKey' ServerName: !Ref 'ServerName' BackupRetentionCount: !Ref 'BackupRetentionCount' InstanceType: !Ref 'InstanceType' Engine: !Ref 'Engine' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorksCM-Server/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-keypair Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engineversion Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn DisableAutomatedBackup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-disableautomatedbackup AllowedValues: - 'true' - 'false' Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupid Default: null EngineModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-enginemodel Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredmaintenancewindow Default: null AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-associatepublicipaddress AllowedValues: - 'true' - 'false' Default: null InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn CustomCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customcertificate Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredbackupwindow Default: null CustomDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customdomain Default: null CustomPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customprivatekey Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servername Default: null BackupRetentionCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupretentioncount Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engine Default: null Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: KeyPair: !Ref 'KeyPair' EngineVersion: !Ref 'EngineVersion' ServiceRoleArn: !Ref 'ServiceRoleArn' DisableAutomatedBackup: !Ref 'DisableAutomatedBackup' BackupId: !Ref 'BackupId' EngineModel: !Ref 'EngineModel' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' InstanceProfileArn: !Ref 'InstanceProfileArn' CustomCertificate: !Ref 'CustomCertificate' PreferredBackupWindow: !Ref 'PreferredBackupWindow' CustomDomain: !Ref 'CustomDomain' CustomPrivateKey: !Ref 'CustomPrivateKey' ServerName: !Ref 'ServerName' BackupRetentionCount: !Ref 'BackupRetentionCount' InstanceType: !Ref 'InstanceType' Engine: !Ref 'Engine' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorksCM-Server/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-keypair Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engineversion Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn DisableAutomatedBackup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-disableautomatedbackup AllowedValues: - 'true' - 'false' Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupid Default: null EngineModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-enginemodel Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredmaintenancewindow Default: null AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-associatepublicipaddress AllowedValues: - 'true' - 'false' Default: null InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn CustomCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customcertificate Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredbackupwindow Default: null CustomDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customdomain Default: null CustomPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customprivatekey Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servername Default: null BackupRetentionCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupretentioncount Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engine Default: null Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: KeyPair: !Ref 'KeyPair' EngineVersion: !Ref 'EngineVersion' ServiceRoleArn: !Ref 'ServiceRoleArn' DisableAutomatedBackup: !Ref 'DisableAutomatedBackup' BackupId: !Ref 'BackupId' EngineModel: !Ref 'EngineModel' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' InstanceProfileArn: !Ref 'InstanceProfileArn' CustomCertificate: !Ref 'CustomCertificate' PreferredBackupWindow: !Ref 'PreferredBackupWindow' CustomDomain: !Ref 'CustomDomain' CustomPrivateKey: !Ref 'CustomPrivateKey' ServerName: !Ref 'ServerName' BackupRetentionCount: !Ref 'BackupRetentionCount' InstanceType: !Ref 'InstanceType' Engine: !Ref 'Engine' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorksCM-Server/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-keypair Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engineversion Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn DisableAutomatedBackup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-disableautomatedbackup AllowedValues: - 'true' - 'false' Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupid Default: null EngineModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-enginemodel Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredmaintenancewindow Default: null AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-associatepublicipaddress AllowedValues: - 'true' - 'false' Default: null InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn CustomCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customcertificate Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredbackupwindow Default: null CustomDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customdomain Default: null CustomPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customprivatekey Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servername Default: null BackupRetentionCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupretentioncount Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engine Default: null Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: KeyPair: !Ref 'KeyPair' EngineVersion: !Ref 'EngineVersion' ServiceRoleArn: !Ref 'ServiceRoleArn' DisableAutomatedBackup: !Ref 'DisableAutomatedBackup' BackupId: !Ref 'BackupId' EngineModel: !Ref 'EngineModel' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' InstanceProfileArn: !Ref 'InstanceProfileArn' CustomCertificate: !Ref 'CustomCertificate' PreferredBackupWindow: !Ref 'PreferredBackupWindow' CustomDomain: !Ref 'CustomDomain' CustomPrivateKey: !Ref 'CustomPrivateKey' ServerName: !Ref 'ServerName' BackupRetentionCount: !Ref 'BackupRetentionCount' InstanceType: !Ref 'InstanceType' Engine: !Ref 'Engine' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorksCM-Server/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-keypair Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engineversion Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn DisableAutomatedBackup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-disableautomatedbackup AllowedValues: - 'true' - 'false' Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupid Default: null EngineModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-enginemodel Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredmaintenancewindow Default: null AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-associatepublicipaddress AllowedValues: - 'true' - 'false' Default: null InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn CustomCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customcertificate Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredbackupwindow Default: null CustomDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customdomain Default: null CustomPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customprivatekey Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servername Default: null BackupRetentionCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupretentioncount Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engine Default: null Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: KeyPair: !Ref 'KeyPair' EngineVersion: !Ref 'EngineVersion' ServiceRoleArn: !Ref 'ServiceRoleArn' DisableAutomatedBackup: !Ref 'DisableAutomatedBackup' BackupId: !Ref 'BackupId' EngineModel: !Ref 'EngineModel' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' InstanceProfileArn: !Ref 'InstanceProfileArn' CustomCertificate: !Ref 'CustomCertificate' PreferredBackupWindow: !Ref 'PreferredBackupWindow' CustomDomain: !Ref 'CustomDomain' CustomPrivateKey: !Ref 'CustomPrivateKey' ServerName: !Ref 'ServerName' BackupRetentionCount: !Ref 'BackupRetentionCount' InstanceType: !Ref 'InstanceType' Engine: !Ref 'Engine' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorksCM-Server/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-keypair Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engineversion Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn DisableAutomatedBackup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-disableautomatedbackup AllowedValues: - 'true' - 'false' Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupid Default: null EngineModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-enginemodel Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredmaintenancewindow Default: null AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-associatepublicipaddress AllowedValues: - 'true' - 'false' Default: null InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn CustomCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customcertificate Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredbackupwindow Default: null CustomDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customdomain Default: null CustomPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customprivatekey Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servername Default: null BackupRetentionCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupretentioncount Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engine Default: null Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: KeyPair: !Ref 'KeyPair' EngineVersion: !Ref 'EngineVersion' ServiceRoleArn: !Ref 'ServiceRoleArn' DisableAutomatedBackup: !Ref 'DisableAutomatedBackup' BackupId: !Ref 'BackupId' EngineModel: !Ref 'EngineModel' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' InstanceProfileArn: !Ref 'InstanceProfileArn' CustomCertificate: !Ref 'CustomCertificate' PreferredBackupWindow: !Ref 'PreferredBackupWindow' CustomDomain: !Ref 'CustomDomain' CustomPrivateKey: !Ref 'CustomPrivateKey' ServerName: !Ref 'ServerName' BackupRetentionCount: !Ref 'BackupRetentionCount' InstanceType: !Ref 'InstanceType' Engine: !Ref 'Engine' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-OpsWorksCM-Server/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: KeyPair: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-keypair Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engineversion Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn DisableAutomatedBackup: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-disableautomatedbackup AllowedValues: - 'true' - 'false' Default: null BackupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupid Default: null EngineModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-enginemodel Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredmaintenancewindow Default: null AssociatePublicIpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-associatepublicipaddress AllowedValues: - 'true' - 'false' Default: null InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn CustomCertificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customcertificate Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-preferredbackupwindow Default: null CustomDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customdomain Default: null CustomPrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-customprivatekey Default: null ServerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servername Default: null BackupRetentionCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-backupretentioncount Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-engine Default: null Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: KeyPair: !Ref 'KeyPair' EngineVersion: !Ref 'EngineVersion' ServiceRoleArn: !Ref 'ServiceRoleArn' DisableAutomatedBackup: !Ref 'DisableAutomatedBackup' BackupId: !Ref 'BackupId' EngineModel: !Ref 'EngineModel' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' AssociatePublicIpAddress: !Ref 'AssociatePublicIpAddress' InstanceProfileArn: !Ref 'InstanceProfileArn' CustomCertificate: !Ref 'CustomCertificate' PreferredBackupWindow: !Ref 'PreferredBackupWindow' CustomDomain: !Ref 'CustomDomain' CustomPrivateKey: !Ref 'CustomPrivateKey' ServerName: !Ref 'ServerName' BackupRetentionCount: !Ref 'BackupRetentionCount' InstanceType: !Ref 'InstanceType' Engine: !Ref 'Engine' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-ADMChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Parameters: ClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientsecret Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-enabled AllowedValues: - 'true' - 'false' Default: null ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientid ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::ADMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Properties: ClientSecret: !Ref 'ClientSecret' Enabled: !Ref 'Enabled' ClientId: !Ref 'ClientId' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-ADMChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Parameters: ClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientsecret Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-enabled AllowedValues: - 'true' - 'false' Default: null ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientid ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::ADMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Properties: ClientSecret: !Ref 'ClientSecret' Enabled: !Ref 'Enabled' ClientId: !Ref 'ClientId' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-ADMChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Parameters: ClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientsecret Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-enabled AllowedValues: - 'true' - 'false' Default: null ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientid ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::ADMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Properties: ClientSecret: !Ref 'ClientSecret' Enabled: !Ref 'Enabled' ClientId: !Ref 'ClientId' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-ADMChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Parameters: ClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientsecret Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-enabled AllowedValues: - 'true' - 'false' Default: null ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientid ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::ADMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Properties: ClientSecret: !Ref 'ClientSecret' Enabled: !Ref 'Enabled' ClientId: !Ref 'ClientId' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-ADMChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Parameters: ClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientsecret Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-enabled AllowedValues: - 'true' - 'false' Default: null ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientid ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::ADMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Properties: ClientSecret: !Ref 'ClientSecret' Enabled: !Ref 'Enabled' ClientId: !Ref 'ClientId' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-ADMChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Parameters: ClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientsecret Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-enabled AllowedValues: - 'true' - 'false' Default: null ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientid ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::ADMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Properties: ClientSecret: !Ref 'ClientSecret' Enabled: !Ref 'Enabled' ClientId: !Ref 'ClientId' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSSandboxChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSSandboxChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSSandboxChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSSandboxChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSSandboxChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSSandboxChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSVoipChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSVoipChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSVoipChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSVoipChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSVoipChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSVoipChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSVoipChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSVoipChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSVoipChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSVoipChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSVoipChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSVoipChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSVoipSandboxChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSVoipSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSVoipSandboxChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSVoipSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSVoipSandboxChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSVoipSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSVoipSandboxChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSVoipSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSVoipSandboxChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSVoipSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-APNSVoipSandboxChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-bundleid Default: null PrivateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-privatekey Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-enabled AllowedValues: - 'true' - 'false' Default: null DefaultAuthenticationMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-defaultauthenticationmethod Default: null TokenKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-tokenkey Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-applicationid TeamId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-teamid Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-certificate Default: null TokenKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-tokenkeyid Default: null Resources: Resource: Type: AWS::Pinpoint::APNSVoipSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Properties: BundleId: !Ref 'BundleId' PrivateKey: !Ref 'PrivateKey' Enabled: !Ref 'Enabled' DefaultAuthenticationMethod: !Ref 'DefaultAuthenticationMethod' TokenKey: !Ref 'TokenKey' ApplicationId: !Ref 'ApplicationId' TeamId: !Ref 'TeamId' Certificate: !Ref 'Certificate' TokenKeyId: !Ref 'TokenKeyId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-App/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-name Resources: Resource: Type: AWS::Pinpoint::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Properties: Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-App/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-name Resources: Resource: Type: AWS::Pinpoint::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Properties: Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-App/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-name Resources: Resource: Type: AWS::Pinpoint::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Properties: Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-App/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-name Resources: Resource: Type: AWS::Pinpoint::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Properties: Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-App/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-name Resources: Resource: Type: AWS::Pinpoint::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Properties: Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-App/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-name Resources: Resource: Type: AWS::Pinpoint::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Properties: Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-ApplicationSettings/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Parameters: QuietTimeStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html#cfn-pinpoint-applicationsettings-quiettime-start QuietTimeEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html#cfn-pinpoint-applicationsettings-quiettime-end LimitsDaily: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-daily Default: null LimitsMaximumDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-maximumduration Default: null LimitsTotal: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-total Default: null LimitsMessagesPerSecond: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-messagespersecond Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-applicationid CampaignHookMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-mode Default: null CampaignHookWebUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-weburl Default: null CampaignHookLambdaFunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-lambdafunctionname Default: null CloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Pinpoint::ApplicationSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Properties: QuietTime: Start: !Ref 'QuietTimeStart' End: !Ref 'QuietTimeEnd' Limits: Daily: !Ref 'LimitsDaily' MaximumDuration: !Ref 'LimitsMaximumDuration' Total: !Ref 'LimitsTotal' MessagesPerSecond: !Ref 'LimitsMessagesPerSecond' ApplicationId: !Ref 'ApplicationId' CampaignHook: Mode: !Ref 'CampaignHookMode' WebUrl: !Ref 'CampaignHookWebUrl' LambdaFunctionName: !Ref 'CampaignHookLambdaFunctionName' CloudWatchMetricsEnabled: !Ref 'CloudWatchMetricsEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-ApplicationSettings/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Parameters: QuietTimeStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html#cfn-pinpoint-applicationsettings-quiettime-start QuietTimeEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html#cfn-pinpoint-applicationsettings-quiettime-end LimitsDaily: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-daily Default: null LimitsMaximumDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-maximumduration Default: null LimitsTotal: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-total Default: null LimitsMessagesPerSecond: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-messagespersecond Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-applicationid CampaignHookMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-mode Default: null CampaignHookWebUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-weburl Default: null CampaignHookLambdaFunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-lambdafunctionname Default: null CloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Pinpoint::ApplicationSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Properties: QuietTime: Start: !Ref 'QuietTimeStart' End: !Ref 'QuietTimeEnd' Limits: Daily: !Ref 'LimitsDaily' MaximumDuration: !Ref 'LimitsMaximumDuration' Total: !Ref 'LimitsTotal' MessagesPerSecond: !Ref 'LimitsMessagesPerSecond' ApplicationId: !Ref 'ApplicationId' CampaignHook: Mode: !Ref 'CampaignHookMode' WebUrl: !Ref 'CampaignHookWebUrl' LambdaFunctionName: !Ref 'CampaignHookLambdaFunctionName' CloudWatchMetricsEnabled: !Ref 'CloudWatchMetricsEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-ApplicationSettings/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Parameters: QuietTimeStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html#cfn-pinpoint-applicationsettings-quiettime-start QuietTimeEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html#cfn-pinpoint-applicationsettings-quiettime-end LimitsDaily: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-daily Default: null LimitsMaximumDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-maximumduration Default: null LimitsTotal: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-total Default: null LimitsMessagesPerSecond: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-messagespersecond Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-applicationid CampaignHookMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-mode Default: null CampaignHookWebUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-weburl Default: null CampaignHookLambdaFunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-lambdafunctionname Default: null CloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Pinpoint::ApplicationSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Properties: QuietTime: Start: !Ref 'QuietTimeStart' End: !Ref 'QuietTimeEnd' Limits: Daily: !Ref 'LimitsDaily' MaximumDuration: !Ref 'LimitsMaximumDuration' Total: !Ref 'LimitsTotal' MessagesPerSecond: !Ref 'LimitsMessagesPerSecond' ApplicationId: !Ref 'ApplicationId' CampaignHook: Mode: !Ref 'CampaignHookMode' WebUrl: !Ref 'CampaignHookWebUrl' LambdaFunctionName: !Ref 'CampaignHookLambdaFunctionName' CloudWatchMetricsEnabled: !Ref 'CloudWatchMetricsEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-ApplicationSettings/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Parameters: QuietTimeStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html#cfn-pinpoint-applicationsettings-quiettime-start QuietTimeEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html#cfn-pinpoint-applicationsettings-quiettime-end LimitsDaily: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-daily Default: null LimitsMaximumDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-maximumduration Default: null LimitsTotal: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-total Default: null LimitsMessagesPerSecond: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-messagespersecond Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-applicationid CampaignHookMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-mode Default: null CampaignHookWebUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-weburl Default: null CampaignHookLambdaFunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-lambdafunctionname Default: null CloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Pinpoint::ApplicationSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Properties: QuietTime: Start: !Ref 'QuietTimeStart' End: !Ref 'QuietTimeEnd' Limits: Daily: !Ref 'LimitsDaily' MaximumDuration: !Ref 'LimitsMaximumDuration' Total: !Ref 'LimitsTotal' MessagesPerSecond: !Ref 'LimitsMessagesPerSecond' ApplicationId: !Ref 'ApplicationId' CampaignHook: Mode: !Ref 'CampaignHookMode' WebUrl: !Ref 'CampaignHookWebUrl' LambdaFunctionName: !Ref 'CampaignHookLambdaFunctionName' CloudWatchMetricsEnabled: !Ref 'CloudWatchMetricsEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-ApplicationSettings/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Parameters: QuietTimeStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html#cfn-pinpoint-applicationsettings-quiettime-start QuietTimeEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html#cfn-pinpoint-applicationsettings-quiettime-end LimitsDaily: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-daily Default: null LimitsMaximumDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-maximumduration Default: null LimitsTotal: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-total Default: null LimitsMessagesPerSecond: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-messagespersecond Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-applicationid CampaignHookMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-mode Default: null CampaignHookWebUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-weburl Default: null CampaignHookLambdaFunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-lambdafunctionname Default: null CloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Pinpoint::ApplicationSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Properties: QuietTime: Start: !Ref 'QuietTimeStart' End: !Ref 'QuietTimeEnd' Limits: Daily: !Ref 'LimitsDaily' MaximumDuration: !Ref 'LimitsMaximumDuration' Total: !Ref 'LimitsTotal' MessagesPerSecond: !Ref 'LimitsMessagesPerSecond' ApplicationId: !Ref 'ApplicationId' CampaignHook: Mode: !Ref 'CampaignHookMode' WebUrl: !Ref 'CampaignHookWebUrl' LambdaFunctionName: !Ref 'CampaignHookLambdaFunctionName' CloudWatchMetricsEnabled: !Ref 'CloudWatchMetricsEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-ApplicationSettings/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Parameters: QuietTimeStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html#cfn-pinpoint-applicationsettings-quiettime-start QuietTimeEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html#cfn-pinpoint-applicationsettings-quiettime-end LimitsDaily: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-daily Default: null LimitsMaximumDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-maximumduration Default: null LimitsTotal: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-total Default: null LimitsMessagesPerSecond: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-limits.html#cfn-pinpoint-applicationsettings-limits-messagespersecond Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-applicationid CampaignHookMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-mode Default: null CampaignHookWebUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-weburl Default: null CampaignHookLambdaFunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-campaignhook.html#cfn-pinpoint-applicationsettings-campaignhook-lambdafunctionname Default: null CloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::Pinpoint::ApplicationSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Properties: QuietTime: Start: !Ref 'QuietTimeStart' End: !Ref 'QuietTimeEnd' Limits: Daily: !Ref 'LimitsDaily' MaximumDuration: !Ref 'LimitsMaximumDuration' Total: !Ref 'LimitsTotal' MessagesPerSecond: !Ref 'LimitsMessagesPerSecond' ApplicationId: !Ref 'ApplicationId' CampaignHook: Mode: !Ref 'CampaignHookMode' WebUrl: !Ref 'CampaignHookWebUrl' LambdaFunctionName: !Ref 'CampaignHookLambdaFunctionName' CloudWatchMetricsEnabled: !Ref 'CloudWatchMetricsEnabled' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-BaiduChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Parameters: SecretKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-secretkey ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-apikey Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::BaiduChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Properties: SecretKey: !Ref 'SecretKey' ApiKey: !Ref 'ApiKey' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-BaiduChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Parameters: SecretKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-secretkey ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-apikey Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::BaiduChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Properties: SecretKey: !Ref 'SecretKey' ApiKey: !Ref 'ApiKey' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-BaiduChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Parameters: SecretKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-secretkey ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-apikey Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::BaiduChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Properties: SecretKey: !Ref 'SecretKey' ApiKey: !Ref 'ApiKey' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-BaiduChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Parameters: SecretKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-secretkey ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-apikey Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::BaiduChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Properties: SecretKey: !Ref 'SecretKey' ApiKey: !Ref 'ApiKey' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-BaiduChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Parameters: SecretKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-secretkey ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-apikey Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::BaiduChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Properties: SecretKey: !Ref 'SecretKey' ApiKey: !Ref 'ApiKey' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-BaiduChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Parameters: SecretKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-secretkey ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-apikey Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::BaiduChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Properties: SecretKey: !Ref 'SecretKey' ApiKey: !Ref 'ApiKey' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-Campaign/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-description Default: null SegmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentid IsPaused: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-ispaused AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-name SegmentVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentversion Default: null TreatmentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-treatmentdescription Default: null MessageConfigurationMessageJsonBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-jsonbody Default: null MessageConfigurationMessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-action Default: null MessageConfigurationMessageMediaUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-mediaurl Default: null MessageConfigurationMessageTimeToLive: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-timetolive Default: null MessageConfigurationMessageImageSmallIconUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imagesmalliconurl Default: null MessageConfigurationMessageImageUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imageurl Default: null MessageConfigurationMessageTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-title Default: null MessageConfigurationMessageImageIconUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imageiconurl Default: null MessageConfigurationMessageSilentPush: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-silentpush AllowedValues: - 'true' - 'false' Default: null MessageConfigurationMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-body Default: null MessageConfigurationMessageRawContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-rawcontent Default: null MessageConfigurationMessageUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-url Default: null MessageConfigurationCampaignEmailMessageFromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-fromaddress Default: null MessageConfigurationCampaignEmailMessageHtmlBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-htmlbody Default: null MessageConfigurationCampaignEmailMessageTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-title Default: null MessageConfigurationCampaignEmailMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-body Default: null MessageConfigurationCampaignSmsMessageSenderId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-senderid Default: null MessageConfigurationCampaignSmsMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-body Default: null MessageConfigurationCampaignSmsMessageMessageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-messagetype Default: null LimitsDaily: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-daily Default: null LimitsMaximumDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-maximumduration Default: null LimitsTotal: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-total Default: null LimitsMessagesPerSecond: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-messagespersecond Default: null HoldoutPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-holdoutpercent Default: null ScheduleTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-timezone Default: null ScheduleQuietTimeStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule-quiettime.html#cfn-pinpoint-campaign-schedule-quiettime-start ScheduleQuietTimeEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule-quiettime.html#cfn-pinpoint-campaign-schedule-quiettime-end ScheduleEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-endtime Default: null ScheduleStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-starttime Default: null ScheduleFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-frequency Default: null ScheduleCampaignEventFilterFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaigneventfilter.html#cfn-pinpoint-campaign-campaigneventfilter-filtertype Default: null ScheduleCampaignEventFilterEventDimensionsMetrics: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-eventdimensions.html#cfn-pinpoint-campaign-eventdimensions-metrics Default: null ScheduleCampaignEventFilterEventDimensionsSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-setdimension.html#cfn-pinpoint-campaign-setdimension-dimensiontype Default: null ScheduleCampaignEventFilterEventDimensionsAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-eventdimensions.html#cfn-pinpoint-campaign-eventdimensions-attributes Default: null ScheduleIsLocalTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-islocaltime AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-applicationid CampaignHookMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-mode Default: null CampaignHookWebUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-weburl Default: null CampaignHookLambdaFunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-lambdafunctionname Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-tags Default: null TreatmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-treatmentname Default: null Resources: Resource: Type: AWS::Pinpoint::Campaign Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Properties: Description: !Ref 'Description' SegmentId: !Ref 'SegmentId' IsPaused: !Ref 'IsPaused' Name: !Ref 'Name' SegmentVersion: !Ref 'SegmentVersion' TreatmentDescription: !Ref 'TreatmentDescription' MessageConfiguration: APNSMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' BaiduMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' DefaultMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' EmailMessage: FromAddress: !Ref 'MessageConfigurationCampaignEmailMessageFromAddress' HtmlBody: !Ref 'MessageConfigurationCampaignEmailMessageHtmlBody' Title: !Ref 'MessageConfigurationCampaignEmailMessageTitle' Body: !Ref 'MessageConfigurationCampaignEmailMessageBody' GCMMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' SMSMessage: SenderId: !Ref 'MessageConfigurationCampaignSmsMessageSenderId' Body: !Ref 'MessageConfigurationCampaignSmsMessageBody' MessageType: !Ref 'MessageConfigurationCampaignSmsMessageMessageType' ADMMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' Limits: Daily: !Ref 'LimitsDaily' MaximumDuration: !Ref 'LimitsMaximumDuration' Total: !Ref 'LimitsTotal' MessagesPerSecond: !Ref 'LimitsMessagesPerSecond' HoldoutPercent: !Ref 'HoldoutPercent' Schedule: TimeZone: !Ref 'ScheduleTimeZone' QuietTime: Start: !Ref 'ScheduleQuietTimeStart' End: !Ref 'ScheduleQuietTimeEnd' EndTime: !Ref 'ScheduleEndTime' StartTime: !Ref 'ScheduleStartTime' Frequency: !Ref 'ScheduleFrequency' EventFilter: FilterType: !Ref 'ScheduleCampaignEventFilterFilterType' Dimensions: Metrics: !Ref 'ScheduleCampaignEventFilterEventDimensionsMetrics' EventType: DimensionType: !Ref 'ScheduleCampaignEventFilterEventDimensionsSetDimensionDimensionType' Attributes: !Ref 'ScheduleCampaignEventFilterEventDimensionsAttributes' IsLocalTime: !Ref 'ScheduleIsLocalTime' ApplicationId: !Ref 'ApplicationId' CampaignHook: Mode: !Ref 'CampaignHookMode' WebUrl: !Ref 'CampaignHookWebUrl' LambdaFunctionName: !Ref 'CampaignHookLambdaFunctionName' Tags: !Ref 'Tags' TreatmentName: !Ref 'TreatmentName' Outputs: CampaignId: Value: GetAtt: - Resource - CampaignId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-Campaign/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-description Default: null SegmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentid IsPaused: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-ispaused AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-name SegmentVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentversion Default: null TreatmentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-treatmentdescription Default: null MessageConfigurationMessageJsonBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-jsonbody Default: null MessageConfigurationMessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-action Default: null MessageConfigurationMessageMediaUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-mediaurl Default: null MessageConfigurationMessageTimeToLive: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-timetolive Default: null MessageConfigurationMessageImageSmallIconUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imagesmalliconurl Default: null MessageConfigurationMessageImageUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imageurl Default: null MessageConfigurationMessageTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-title Default: null MessageConfigurationMessageImageIconUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imageiconurl Default: null MessageConfigurationMessageSilentPush: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-silentpush AllowedValues: - 'true' - 'false' Default: null MessageConfigurationMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-body Default: null MessageConfigurationMessageRawContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-rawcontent Default: null MessageConfigurationMessageUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-url Default: null MessageConfigurationCampaignEmailMessageFromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-fromaddress Default: null MessageConfigurationCampaignEmailMessageHtmlBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-htmlbody Default: null MessageConfigurationCampaignEmailMessageTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-title Default: null MessageConfigurationCampaignEmailMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-body Default: null MessageConfigurationCampaignSmsMessageSenderId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-senderid Default: null MessageConfigurationCampaignSmsMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-body Default: null MessageConfigurationCampaignSmsMessageMessageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-messagetype Default: null LimitsDaily: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-daily Default: null LimitsMaximumDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-maximumduration Default: null LimitsTotal: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-total Default: null LimitsMessagesPerSecond: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-messagespersecond Default: null HoldoutPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-holdoutpercent Default: null ScheduleTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-timezone Default: null ScheduleQuietTimeStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule-quiettime.html#cfn-pinpoint-campaign-schedule-quiettime-start ScheduleQuietTimeEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule-quiettime.html#cfn-pinpoint-campaign-schedule-quiettime-end ScheduleEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-endtime Default: null ScheduleStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-starttime Default: null ScheduleFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-frequency Default: null ScheduleCampaignEventFilterFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaigneventfilter.html#cfn-pinpoint-campaign-campaigneventfilter-filtertype Default: null ScheduleCampaignEventFilterEventDimensionsMetrics: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-eventdimensions.html#cfn-pinpoint-campaign-eventdimensions-metrics Default: null ScheduleCampaignEventFilterEventDimensionsSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-setdimension.html#cfn-pinpoint-campaign-setdimension-dimensiontype Default: null ScheduleCampaignEventFilterEventDimensionsAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-eventdimensions.html#cfn-pinpoint-campaign-eventdimensions-attributes Default: null ScheduleIsLocalTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-islocaltime AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-applicationid CampaignHookMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-mode Default: null CampaignHookWebUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-weburl Default: null CampaignHookLambdaFunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-lambdafunctionname Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-tags Default: null TreatmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-treatmentname Default: null Resources: Resource: Type: AWS::Pinpoint::Campaign Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Properties: Description: !Ref 'Description' SegmentId: !Ref 'SegmentId' IsPaused: !Ref 'IsPaused' Name: !Ref 'Name' SegmentVersion: !Ref 'SegmentVersion' TreatmentDescription: !Ref 'TreatmentDescription' MessageConfiguration: APNSMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' BaiduMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' DefaultMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' EmailMessage: FromAddress: !Ref 'MessageConfigurationCampaignEmailMessageFromAddress' HtmlBody: !Ref 'MessageConfigurationCampaignEmailMessageHtmlBody' Title: !Ref 'MessageConfigurationCampaignEmailMessageTitle' Body: !Ref 'MessageConfigurationCampaignEmailMessageBody' GCMMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' SMSMessage: SenderId: !Ref 'MessageConfigurationCampaignSmsMessageSenderId' Body: !Ref 'MessageConfigurationCampaignSmsMessageBody' MessageType: !Ref 'MessageConfigurationCampaignSmsMessageMessageType' ADMMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' Limits: Daily: !Ref 'LimitsDaily' MaximumDuration: !Ref 'LimitsMaximumDuration' Total: !Ref 'LimitsTotal' MessagesPerSecond: !Ref 'LimitsMessagesPerSecond' HoldoutPercent: !Ref 'HoldoutPercent' Schedule: TimeZone: !Ref 'ScheduleTimeZone' QuietTime: Start: !Ref 'ScheduleQuietTimeStart' End: !Ref 'ScheduleQuietTimeEnd' EndTime: !Ref 'ScheduleEndTime' StartTime: !Ref 'ScheduleStartTime' Frequency: !Ref 'ScheduleFrequency' EventFilter: FilterType: !Ref 'ScheduleCampaignEventFilterFilterType' Dimensions: Metrics: !Ref 'ScheduleCampaignEventFilterEventDimensionsMetrics' EventType: DimensionType: !Ref 'ScheduleCampaignEventFilterEventDimensionsSetDimensionDimensionType' Attributes: !Ref 'ScheduleCampaignEventFilterEventDimensionsAttributes' IsLocalTime: !Ref 'ScheduleIsLocalTime' ApplicationId: !Ref 'ApplicationId' CampaignHook: Mode: !Ref 'CampaignHookMode' WebUrl: !Ref 'CampaignHookWebUrl' LambdaFunctionName: !Ref 'CampaignHookLambdaFunctionName' Tags: !Ref 'Tags' TreatmentName: !Ref 'TreatmentName' Outputs: CampaignId: Value: GetAtt: - Resource - CampaignId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-Campaign/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-description Default: null SegmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentid IsPaused: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-ispaused AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-name SegmentVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentversion Default: null TreatmentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-treatmentdescription Default: null MessageConfigurationMessageJsonBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-jsonbody Default: null MessageConfigurationMessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-action Default: null MessageConfigurationMessageMediaUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-mediaurl Default: null MessageConfigurationMessageTimeToLive: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-timetolive Default: null MessageConfigurationMessageImageSmallIconUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imagesmalliconurl Default: null MessageConfigurationMessageImageUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imageurl Default: null MessageConfigurationMessageTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-title Default: null MessageConfigurationMessageImageIconUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imageiconurl Default: null MessageConfigurationMessageSilentPush: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-silentpush AllowedValues: - 'true' - 'false' Default: null MessageConfigurationMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-body Default: null MessageConfigurationMessageRawContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-rawcontent Default: null MessageConfigurationMessageUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-url Default: null MessageConfigurationCampaignEmailMessageFromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-fromaddress Default: null MessageConfigurationCampaignEmailMessageHtmlBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-htmlbody Default: null MessageConfigurationCampaignEmailMessageTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-title Default: null MessageConfigurationCampaignEmailMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-body Default: null MessageConfigurationCampaignSmsMessageSenderId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-senderid Default: null MessageConfigurationCampaignSmsMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-body Default: null MessageConfigurationCampaignSmsMessageMessageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-messagetype Default: null LimitsDaily: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-daily Default: null LimitsMaximumDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-maximumduration Default: null LimitsTotal: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-total Default: null LimitsMessagesPerSecond: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-messagespersecond Default: null HoldoutPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-holdoutpercent Default: null ScheduleTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-timezone Default: null ScheduleQuietTimeStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule-quiettime.html#cfn-pinpoint-campaign-schedule-quiettime-start ScheduleQuietTimeEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule-quiettime.html#cfn-pinpoint-campaign-schedule-quiettime-end ScheduleEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-endtime Default: null ScheduleStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-starttime Default: null ScheduleFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-frequency Default: null ScheduleCampaignEventFilterFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaigneventfilter.html#cfn-pinpoint-campaign-campaigneventfilter-filtertype Default: null ScheduleCampaignEventFilterEventDimensionsMetrics: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-eventdimensions.html#cfn-pinpoint-campaign-eventdimensions-metrics Default: null ScheduleCampaignEventFilterEventDimensionsSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-setdimension.html#cfn-pinpoint-campaign-setdimension-dimensiontype Default: null ScheduleCampaignEventFilterEventDimensionsAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-eventdimensions.html#cfn-pinpoint-campaign-eventdimensions-attributes Default: null ScheduleIsLocalTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-islocaltime AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-applicationid CampaignHookMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-mode Default: null CampaignHookWebUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-weburl Default: null CampaignHookLambdaFunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-lambdafunctionname Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-tags Default: null TreatmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-treatmentname Default: null Resources: Resource: Type: AWS::Pinpoint::Campaign Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Properties: Description: !Ref 'Description' SegmentId: !Ref 'SegmentId' IsPaused: !Ref 'IsPaused' Name: !Ref 'Name' SegmentVersion: !Ref 'SegmentVersion' TreatmentDescription: !Ref 'TreatmentDescription' MessageConfiguration: APNSMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' BaiduMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' DefaultMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' EmailMessage: FromAddress: !Ref 'MessageConfigurationCampaignEmailMessageFromAddress' HtmlBody: !Ref 'MessageConfigurationCampaignEmailMessageHtmlBody' Title: !Ref 'MessageConfigurationCampaignEmailMessageTitle' Body: !Ref 'MessageConfigurationCampaignEmailMessageBody' GCMMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' SMSMessage: SenderId: !Ref 'MessageConfigurationCampaignSmsMessageSenderId' Body: !Ref 'MessageConfigurationCampaignSmsMessageBody' MessageType: !Ref 'MessageConfigurationCampaignSmsMessageMessageType' ADMMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' Limits: Daily: !Ref 'LimitsDaily' MaximumDuration: !Ref 'LimitsMaximumDuration' Total: !Ref 'LimitsTotal' MessagesPerSecond: !Ref 'LimitsMessagesPerSecond' HoldoutPercent: !Ref 'HoldoutPercent' Schedule: TimeZone: !Ref 'ScheduleTimeZone' QuietTime: Start: !Ref 'ScheduleQuietTimeStart' End: !Ref 'ScheduleQuietTimeEnd' EndTime: !Ref 'ScheduleEndTime' StartTime: !Ref 'ScheduleStartTime' Frequency: !Ref 'ScheduleFrequency' EventFilter: FilterType: !Ref 'ScheduleCampaignEventFilterFilterType' Dimensions: Metrics: !Ref 'ScheduleCampaignEventFilterEventDimensionsMetrics' EventType: DimensionType: !Ref 'ScheduleCampaignEventFilterEventDimensionsSetDimensionDimensionType' Attributes: !Ref 'ScheduleCampaignEventFilterEventDimensionsAttributes' IsLocalTime: !Ref 'ScheduleIsLocalTime' ApplicationId: !Ref 'ApplicationId' CampaignHook: Mode: !Ref 'CampaignHookMode' WebUrl: !Ref 'CampaignHookWebUrl' LambdaFunctionName: !Ref 'CampaignHookLambdaFunctionName' Tags: !Ref 'Tags' TreatmentName: !Ref 'TreatmentName' Outputs: CampaignId: Value: GetAtt: - Resource - CampaignId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-Campaign/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-description Default: null SegmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentid IsPaused: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-ispaused AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-name SegmentVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentversion Default: null TreatmentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-treatmentdescription Default: null MessageConfigurationMessageJsonBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-jsonbody Default: null MessageConfigurationMessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-action Default: null MessageConfigurationMessageMediaUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-mediaurl Default: null MessageConfigurationMessageTimeToLive: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-timetolive Default: null MessageConfigurationMessageImageSmallIconUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imagesmalliconurl Default: null MessageConfigurationMessageImageUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imageurl Default: null MessageConfigurationMessageTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-title Default: null MessageConfigurationMessageImageIconUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imageiconurl Default: null MessageConfigurationMessageSilentPush: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-silentpush AllowedValues: - 'true' - 'false' Default: null MessageConfigurationMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-body Default: null MessageConfigurationMessageRawContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-rawcontent Default: null MessageConfigurationMessageUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-url Default: null MessageConfigurationCampaignEmailMessageFromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-fromaddress Default: null MessageConfigurationCampaignEmailMessageHtmlBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-htmlbody Default: null MessageConfigurationCampaignEmailMessageTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-title Default: null MessageConfigurationCampaignEmailMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-body Default: null MessageConfigurationCampaignSmsMessageSenderId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-senderid Default: null MessageConfigurationCampaignSmsMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-body Default: null MessageConfigurationCampaignSmsMessageMessageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-messagetype Default: null LimitsDaily: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-daily Default: null LimitsMaximumDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-maximumduration Default: null LimitsTotal: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-total Default: null LimitsMessagesPerSecond: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-messagespersecond Default: null HoldoutPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-holdoutpercent Default: null ScheduleTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-timezone Default: null ScheduleQuietTimeStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule-quiettime.html#cfn-pinpoint-campaign-schedule-quiettime-start ScheduleQuietTimeEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule-quiettime.html#cfn-pinpoint-campaign-schedule-quiettime-end ScheduleEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-endtime Default: null ScheduleStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-starttime Default: null ScheduleFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-frequency Default: null ScheduleCampaignEventFilterFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaigneventfilter.html#cfn-pinpoint-campaign-campaigneventfilter-filtertype Default: null ScheduleCampaignEventFilterEventDimensionsMetrics: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-eventdimensions.html#cfn-pinpoint-campaign-eventdimensions-metrics Default: null ScheduleCampaignEventFilterEventDimensionsSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-setdimension.html#cfn-pinpoint-campaign-setdimension-dimensiontype Default: null ScheduleCampaignEventFilterEventDimensionsAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-eventdimensions.html#cfn-pinpoint-campaign-eventdimensions-attributes Default: null ScheduleIsLocalTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-islocaltime AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-applicationid CampaignHookMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-mode Default: null CampaignHookWebUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-weburl Default: null CampaignHookLambdaFunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-lambdafunctionname Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-tags Default: null TreatmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-treatmentname Default: null Resources: Resource: Type: AWS::Pinpoint::Campaign Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Properties: Description: !Ref 'Description' SegmentId: !Ref 'SegmentId' IsPaused: !Ref 'IsPaused' Name: !Ref 'Name' SegmentVersion: !Ref 'SegmentVersion' TreatmentDescription: !Ref 'TreatmentDescription' MessageConfiguration: APNSMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' BaiduMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' DefaultMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' EmailMessage: FromAddress: !Ref 'MessageConfigurationCampaignEmailMessageFromAddress' HtmlBody: !Ref 'MessageConfigurationCampaignEmailMessageHtmlBody' Title: !Ref 'MessageConfigurationCampaignEmailMessageTitle' Body: !Ref 'MessageConfigurationCampaignEmailMessageBody' GCMMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' SMSMessage: SenderId: !Ref 'MessageConfigurationCampaignSmsMessageSenderId' Body: !Ref 'MessageConfigurationCampaignSmsMessageBody' MessageType: !Ref 'MessageConfigurationCampaignSmsMessageMessageType' ADMMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' Limits: Daily: !Ref 'LimitsDaily' MaximumDuration: !Ref 'LimitsMaximumDuration' Total: !Ref 'LimitsTotal' MessagesPerSecond: !Ref 'LimitsMessagesPerSecond' HoldoutPercent: !Ref 'HoldoutPercent' Schedule: TimeZone: !Ref 'ScheduleTimeZone' QuietTime: Start: !Ref 'ScheduleQuietTimeStart' End: !Ref 'ScheduleQuietTimeEnd' EndTime: !Ref 'ScheduleEndTime' StartTime: !Ref 'ScheduleStartTime' Frequency: !Ref 'ScheduleFrequency' EventFilter: FilterType: !Ref 'ScheduleCampaignEventFilterFilterType' Dimensions: Metrics: !Ref 'ScheduleCampaignEventFilterEventDimensionsMetrics' EventType: DimensionType: !Ref 'ScheduleCampaignEventFilterEventDimensionsSetDimensionDimensionType' Attributes: !Ref 'ScheduleCampaignEventFilterEventDimensionsAttributes' IsLocalTime: !Ref 'ScheduleIsLocalTime' ApplicationId: !Ref 'ApplicationId' CampaignHook: Mode: !Ref 'CampaignHookMode' WebUrl: !Ref 'CampaignHookWebUrl' LambdaFunctionName: !Ref 'CampaignHookLambdaFunctionName' Tags: !Ref 'Tags' TreatmentName: !Ref 'TreatmentName' Outputs: CampaignId: Value: GetAtt: - Resource - CampaignId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-Campaign/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-description Default: null SegmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentid IsPaused: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-ispaused AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-name SegmentVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentversion Default: null TreatmentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-treatmentdescription Default: null MessageConfigurationMessageJsonBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-jsonbody Default: null MessageConfigurationMessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-action Default: null MessageConfigurationMessageMediaUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-mediaurl Default: null MessageConfigurationMessageTimeToLive: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-timetolive Default: null MessageConfigurationMessageImageSmallIconUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imagesmalliconurl Default: null MessageConfigurationMessageImageUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imageurl Default: null MessageConfigurationMessageTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-title Default: null MessageConfigurationMessageImageIconUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imageiconurl Default: null MessageConfigurationMessageSilentPush: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-silentpush AllowedValues: - 'true' - 'false' Default: null MessageConfigurationMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-body Default: null MessageConfigurationMessageRawContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-rawcontent Default: null MessageConfigurationMessageUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-url Default: null MessageConfigurationCampaignEmailMessageFromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-fromaddress Default: null MessageConfigurationCampaignEmailMessageHtmlBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-htmlbody Default: null MessageConfigurationCampaignEmailMessageTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-title Default: null MessageConfigurationCampaignEmailMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-body Default: null MessageConfigurationCampaignSmsMessageSenderId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-senderid Default: null MessageConfigurationCampaignSmsMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-body Default: null MessageConfigurationCampaignSmsMessageMessageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-messagetype Default: null LimitsDaily: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-daily Default: null LimitsMaximumDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-maximumduration Default: null LimitsTotal: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-total Default: null LimitsMessagesPerSecond: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-messagespersecond Default: null HoldoutPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-holdoutpercent Default: null ScheduleTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-timezone Default: null ScheduleQuietTimeStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule-quiettime.html#cfn-pinpoint-campaign-schedule-quiettime-start ScheduleQuietTimeEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule-quiettime.html#cfn-pinpoint-campaign-schedule-quiettime-end ScheduleEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-endtime Default: null ScheduleStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-starttime Default: null ScheduleFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-frequency Default: null ScheduleCampaignEventFilterFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaigneventfilter.html#cfn-pinpoint-campaign-campaigneventfilter-filtertype Default: null ScheduleCampaignEventFilterEventDimensionsMetrics: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-eventdimensions.html#cfn-pinpoint-campaign-eventdimensions-metrics Default: null ScheduleCampaignEventFilterEventDimensionsSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-setdimension.html#cfn-pinpoint-campaign-setdimension-dimensiontype Default: null ScheduleCampaignEventFilterEventDimensionsAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-eventdimensions.html#cfn-pinpoint-campaign-eventdimensions-attributes Default: null ScheduleIsLocalTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-islocaltime AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-applicationid CampaignHookMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-mode Default: null CampaignHookWebUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-weburl Default: null CampaignHookLambdaFunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-lambdafunctionname Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-tags Default: null TreatmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-treatmentname Default: null Resources: Resource: Type: AWS::Pinpoint::Campaign Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Properties: Description: !Ref 'Description' SegmentId: !Ref 'SegmentId' IsPaused: !Ref 'IsPaused' Name: !Ref 'Name' SegmentVersion: !Ref 'SegmentVersion' TreatmentDescription: !Ref 'TreatmentDescription' MessageConfiguration: APNSMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' BaiduMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' DefaultMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' EmailMessage: FromAddress: !Ref 'MessageConfigurationCampaignEmailMessageFromAddress' HtmlBody: !Ref 'MessageConfigurationCampaignEmailMessageHtmlBody' Title: !Ref 'MessageConfigurationCampaignEmailMessageTitle' Body: !Ref 'MessageConfigurationCampaignEmailMessageBody' GCMMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' SMSMessage: SenderId: !Ref 'MessageConfigurationCampaignSmsMessageSenderId' Body: !Ref 'MessageConfigurationCampaignSmsMessageBody' MessageType: !Ref 'MessageConfigurationCampaignSmsMessageMessageType' ADMMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' Limits: Daily: !Ref 'LimitsDaily' MaximumDuration: !Ref 'LimitsMaximumDuration' Total: !Ref 'LimitsTotal' MessagesPerSecond: !Ref 'LimitsMessagesPerSecond' HoldoutPercent: !Ref 'HoldoutPercent' Schedule: TimeZone: !Ref 'ScheduleTimeZone' QuietTime: Start: !Ref 'ScheduleQuietTimeStart' End: !Ref 'ScheduleQuietTimeEnd' EndTime: !Ref 'ScheduleEndTime' StartTime: !Ref 'ScheduleStartTime' Frequency: !Ref 'ScheduleFrequency' EventFilter: FilterType: !Ref 'ScheduleCampaignEventFilterFilterType' Dimensions: Metrics: !Ref 'ScheduleCampaignEventFilterEventDimensionsMetrics' EventType: DimensionType: !Ref 'ScheduleCampaignEventFilterEventDimensionsSetDimensionDimensionType' Attributes: !Ref 'ScheduleCampaignEventFilterEventDimensionsAttributes' IsLocalTime: !Ref 'ScheduleIsLocalTime' ApplicationId: !Ref 'ApplicationId' CampaignHook: Mode: !Ref 'CampaignHookMode' WebUrl: !Ref 'CampaignHookWebUrl' LambdaFunctionName: !Ref 'CampaignHookLambdaFunctionName' Tags: !Ref 'Tags' TreatmentName: !Ref 'TreatmentName' Outputs: CampaignId: Value: GetAtt: - Resource - CampaignId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-Campaign/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-description Default: null SegmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentid IsPaused: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-ispaused AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-name SegmentVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentversion Default: null TreatmentDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-treatmentdescription Default: null MessageConfigurationMessageJsonBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-jsonbody Default: null MessageConfigurationMessageAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-action Default: null MessageConfigurationMessageMediaUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-mediaurl Default: null MessageConfigurationMessageTimeToLive: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-timetolive Default: null MessageConfigurationMessageImageSmallIconUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imagesmalliconurl Default: null MessageConfigurationMessageImageUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imageurl Default: null MessageConfigurationMessageTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-title Default: null MessageConfigurationMessageImageIconUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-imageiconurl Default: null MessageConfigurationMessageSilentPush: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-silentpush AllowedValues: - 'true' - 'false' Default: null MessageConfigurationMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-body Default: null MessageConfigurationMessageRawContent: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-rawcontent Default: null MessageConfigurationMessageUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-message.html#cfn-pinpoint-campaign-message-url Default: null MessageConfigurationCampaignEmailMessageFromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-fromaddress Default: null MessageConfigurationCampaignEmailMessageHtmlBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-htmlbody Default: null MessageConfigurationCampaignEmailMessageTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-title Default: null MessageConfigurationCampaignEmailMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignemailmessage.html#cfn-pinpoint-campaign-campaignemailmessage-body Default: null MessageConfigurationCampaignSmsMessageSenderId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-senderid Default: null MessageConfigurationCampaignSmsMessageBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-body Default: null MessageConfigurationCampaignSmsMessageMessageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignsmsmessage.html#cfn-pinpoint-campaign-campaignsmsmessage-messagetype Default: null LimitsDaily: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-daily Default: null LimitsMaximumDuration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-maximumduration Default: null LimitsTotal: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-total Default: null LimitsMessagesPerSecond: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-limits.html#cfn-pinpoint-campaign-limits-messagespersecond Default: null HoldoutPercent: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-holdoutpercent Default: null ScheduleTimeZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-timezone Default: null ScheduleQuietTimeStart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule-quiettime.html#cfn-pinpoint-campaign-schedule-quiettime-start ScheduleQuietTimeEnd: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule-quiettime.html#cfn-pinpoint-campaign-schedule-quiettime-end ScheduleEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-endtime Default: null ScheduleStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-starttime Default: null ScheduleFrequency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-frequency Default: null ScheduleCampaignEventFilterFilterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaigneventfilter.html#cfn-pinpoint-campaign-campaigneventfilter-filtertype Default: null ScheduleCampaignEventFilterEventDimensionsMetrics: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-eventdimensions.html#cfn-pinpoint-campaign-eventdimensions-metrics Default: null ScheduleCampaignEventFilterEventDimensionsSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-setdimension.html#cfn-pinpoint-campaign-setdimension-dimensiontype Default: null ScheduleCampaignEventFilterEventDimensionsAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-eventdimensions.html#cfn-pinpoint-campaign-eventdimensions-attributes Default: null ScheduleIsLocalTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-schedule.html#cfn-pinpoint-campaign-schedule-islocaltime AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-applicationid CampaignHookMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-mode Default: null CampaignHookWebUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-weburl Default: null CampaignHookLambdaFunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaignhook.html#cfn-pinpoint-campaign-campaignhook-lambdafunctionname Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-tags Default: null TreatmentName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-treatmentname Default: null Resources: Resource: Type: AWS::Pinpoint::Campaign Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Properties: Description: !Ref 'Description' SegmentId: !Ref 'SegmentId' IsPaused: !Ref 'IsPaused' Name: !Ref 'Name' SegmentVersion: !Ref 'SegmentVersion' TreatmentDescription: !Ref 'TreatmentDescription' MessageConfiguration: APNSMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' BaiduMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' DefaultMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' EmailMessage: FromAddress: !Ref 'MessageConfigurationCampaignEmailMessageFromAddress' HtmlBody: !Ref 'MessageConfigurationCampaignEmailMessageHtmlBody' Title: !Ref 'MessageConfigurationCampaignEmailMessageTitle' Body: !Ref 'MessageConfigurationCampaignEmailMessageBody' GCMMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' SMSMessage: SenderId: !Ref 'MessageConfigurationCampaignSmsMessageSenderId' Body: !Ref 'MessageConfigurationCampaignSmsMessageBody' MessageType: !Ref 'MessageConfigurationCampaignSmsMessageMessageType' ADMMessage: JsonBody: !Ref 'MessageConfigurationMessageJsonBody' Action: !Ref 'MessageConfigurationMessageAction' MediaUrl: !Ref 'MessageConfigurationMessageMediaUrl' TimeToLive: !Ref 'MessageConfigurationMessageTimeToLive' ImageSmallIconUrl: !Ref 'MessageConfigurationMessageImageSmallIconUrl' ImageUrl: !Ref 'MessageConfigurationMessageImageUrl' Title: !Ref 'MessageConfigurationMessageTitle' ImageIconUrl: !Ref 'MessageConfigurationMessageImageIconUrl' SilentPush: !Ref 'MessageConfigurationMessageSilentPush' Body: !Ref 'MessageConfigurationMessageBody' RawContent: !Ref 'MessageConfigurationMessageRawContent' Url: !Ref 'MessageConfigurationMessageUrl' Limits: Daily: !Ref 'LimitsDaily' MaximumDuration: !Ref 'LimitsMaximumDuration' Total: !Ref 'LimitsTotal' MessagesPerSecond: !Ref 'LimitsMessagesPerSecond' HoldoutPercent: !Ref 'HoldoutPercent' Schedule: TimeZone: !Ref 'ScheduleTimeZone' QuietTime: Start: !Ref 'ScheduleQuietTimeStart' End: !Ref 'ScheduleQuietTimeEnd' EndTime: !Ref 'ScheduleEndTime' StartTime: !Ref 'ScheduleStartTime' Frequency: !Ref 'ScheduleFrequency' EventFilter: FilterType: !Ref 'ScheduleCampaignEventFilterFilterType' Dimensions: Metrics: !Ref 'ScheduleCampaignEventFilterEventDimensionsMetrics' EventType: DimensionType: !Ref 'ScheduleCampaignEventFilterEventDimensionsSetDimensionDimensionType' Attributes: !Ref 'ScheduleCampaignEventFilterEventDimensionsAttributes' IsLocalTime: !Ref 'ScheduleIsLocalTime' ApplicationId: !Ref 'ApplicationId' CampaignHook: Mode: !Ref 'CampaignHookMode' WebUrl: !Ref 'CampaignHookWebUrl' LambdaFunctionName: !Ref 'CampaignHookLambdaFunctionName' Tags: !Ref 'Tags' TreatmentName: !Ref 'TreatmentName' Outputs: CampaignId: Value: GetAtt: - Resource - CampaignId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EmailChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Parameters: ConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-configurationset Default: null FromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-fromaddress Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-applicationid Identity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-identity RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-rolearn Default: null Resources: Resource: Type: AWS::Pinpoint::EmailChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Properties: ConfigurationSet: !Ref 'ConfigurationSet' FromAddress: !Ref 'FromAddress' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' Identity: !Ref 'Identity' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EmailChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Parameters: ConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-configurationset Default: null FromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-fromaddress Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-applicationid Identity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-identity RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-rolearn Default: null Resources: Resource: Type: AWS::Pinpoint::EmailChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Properties: ConfigurationSet: !Ref 'ConfigurationSet' FromAddress: !Ref 'FromAddress' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' Identity: !Ref 'Identity' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EmailChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Parameters: ConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-configurationset Default: null FromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-fromaddress Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-applicationid Identity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-identity RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-rolearn Default: null Resources: Resource: Type: AWS::Pinpoint::EmailChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Properties: ConfigurationSet: !Ref 'ConfigurationSet' FromAddress: !Ref 'FromAddress' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' Identity: !Ref 'Identity' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EmailChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Parameters: ConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-configurationset Default: null FromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-fromaddress Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-applicationid Identity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-identity RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-rolearn Default: null Resources: Resource: Type: AWS::Pinpoint::EmailChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Properties: ConfigurationSet: !Ref 'ConfigurationSet' FromAddress: !Ref 'FromAddress' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' Identity: !Ref 'Identity' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EmailChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Parameters: ConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-configurationset Default: null FromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-fromaddress Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-applicationid Identity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-identity RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-rolearn Default: null Resources: Resource: Type: AWS::Pinpoint::EmailChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Properties: ConfigurationSet: !Ref 'ConfigurationSet' FromAddress: !Ref 'FromAddress' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' Identity: !Ref 'Identity' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EmailChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Parameters: ConfigurationSet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-configurationset Default: null FromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-fromaddress Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-applicationid Identity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-identity RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-rolearn Default: null Resources: Resource: Type: AWS::Pinpoint::EmailChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Properties: ConfigurationSet: !Ref 'ConfigurationSet' FromAddress: !Ref 'FromAddress' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' Identity: !Ref 'Identity' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EmailTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Parameters: HtmlPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-htmlpart Default: null TextPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-textpart Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-templatename TemplateDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-templatedescription Default: null DefaultSubstitutions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-defaultsubstitutions Default: null Subject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-subject Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-tags Default: null Resources: Resource: Type: AWS::Pinpoint::EmailTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Properties: HtmlPart: !Ref 'HtmlPart' TextPart: !Ref 'TextPart' TemplateName: !Ref 'TemplateName' TemplateDescription: !Ref 'TemplateDescription' DefaultSubstitutions: !Ref 'DefaultSubstitutions' Subject: !Ref 'Subject' Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EmailTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Parameters: HtmlPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-htmlpart Default: null TextPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-textpart Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-templatename TemplateDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-templatedescription Default: null DefaultSubstitutions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-defaultsubstitutions Default: null Subject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-subject Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-tags Default: null Resources: Resource: Type: AWS::Pinpoint::EmailTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Properties: HtmlPart: !Ref 'HtmlPart' TextPart: !Ref 'TextPart' TemplateName: !Ref 'TemplateName' TemplateDescription: !Ref 'TemplateDescription' DefaultSubstitutions: !Ref 'DefaultSubstitutions' Subject: !Ref 'Subject' Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EmailTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Parameters: HtmlPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-htmlpart Default: null TextPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-textpart Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-templatename TemplateDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-templatedescription Default: null DefaultSubstitutions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-defaultsubstitutions Default: null Subject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-subject Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-tags Default: null Resources: Resource: Type: AWS::Pinpoint::EmailTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Properties: HtmlPart: !Ref 'HtmlPart' TextPart: !Ref 'TextPart' TemplateName: !Ref 'TemplateName' TemplateDescription: !Ref 'TemplateDescription' DefaultSubstitutions: !Ref 'DefaultSubstitutions' Subject: !Ref 'Subject' Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EmailTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Parameters: HtmlPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-htmlpart Default: null TextPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-textpart Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-templatename TemplateDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-templatedescription Default: null DefaultSubstitutions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-defaultsubstitutions Default: null Subject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-subject Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-tags Default: null Resources: Resource: Type: AWS::Pinpoint::EmailTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Properties: HtmlPart: !Ref 'HtmlPart' TextPart: !Ref 'TextPart' TemplateName: !Ref 'TemplateName' TemplateDescription: !Ref 'TemplateDescription' DefaultSubstitutions: !Ref 'DefaultSubstitutions' Subject: !Ref 'Subject' Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EventStream/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-applicationid DestinationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-destinationstreamarn RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-rolearn Resources: Resource: Type: AWS::Pinpoint::EventStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Properties: ApplicationId: !Ref 'ApplicationId' DestinationStreamArn: !Ref 'DestinationStreamArn' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EventStream/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-applicationid DestinationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-destinationstreamarn RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-rolearn Resources: Resource: Type: AWS::Pinpoint::EventStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Properties: ApplicationId: !Ref 'ApplicationId' DestinationStreamArn: !Ref 'DestinationStreamArn' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EventStream/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-applicationid DestinationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-destinationstreamarn RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-rolearn Resources: Resource: Type: AWS::Pinpoint::EventStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Properties: ApplicationId: !Ref 'ApplicationId' DestinationStreamArn: !Ref 'DestinationStreamArn' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EventStream/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-applicationid DestinationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-destinationstreamarn RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-rolearn Resources: Resource: Type: AWS::Pinpoint::EventStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Properties: ApplicationId: !Ref 'ApplicationId' DestinationStreamArn: !Ref 'DestinationStreamArn' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EventStream/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-applicationid DestinationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-destinationstreamarn RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-rolearn Resources: Resource: Type: AWS::Pinpoint::EventStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Properties: ApplicationId: !Ref 'ApplicationId' DestinationStreamArn: !Ref 'DestinationStreamArn' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-EventStream/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-applicationid DestinationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-destinationstreamarn RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-rolearn Resources: Resource: Type: AWS::Pinpoint::EventStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Properties: ApplicationId: !Ref 'ApplicationId' DestinationStreamArn: !Ref 'DestinationStreamArn' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-GCMChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Parameters: ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-apikey Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::GCMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Properties: ApiKey: !Ref 'ApiKey' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-GCMChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Parameters: ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-apikey Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::GCMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Properties: ApiKey: !Ref 'ApiKey' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-GCMChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Parameters: ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-apikey Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::GCMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Properties: ApiKey: !Ref 'ApiKey' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-GCMChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Parameters: ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-apikey Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::GCMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Properties: ApiKey: !Ref 'ApiKey' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-GCMChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Parameters: ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-apikey Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::GCMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Properties: ApiKey: !Ref 'ApiKey' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-GCMChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Parameters: ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-apikey Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::GCMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Properties: ApiKey: !Ref 'ApiKey' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-PushTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Parameters: AndroidPushNotificationTemplateAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-action Default: null AndroidPushNotificationTemplateImageUrl: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-imageurl Default: null AndroidPushNotificationTemplateSmallImageIconUrl: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-smallimageiconurl Default: null AndroidPushNotificationTemplateTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-title Default: null AndroidPushNotificationTemplateImageIconUrl: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-imageiconurl Default: null AndroidPushNotificationTemplateSound: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-sound Default: null AndroidPushNotificationTemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-body Default: null AndroidPushNotificationTemplateUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-url Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-templatename APNSPushNotificationTemplateAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-action Default: null APNSPushNotificationTemplateMediaUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-mediaurl Default: null APNSPushNotificationTemplateTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-title Default: null APNSPushNotificationTemplateSound: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-sound Default: null APNSPushNotificationTemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-body Default: null APNSPushNotificationTemplateUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-url Default: null TemplateDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-templatedescription Default: null DefaultSubstitutions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-defaultsubstitutions Default: null DefaultPushNotificationTemplateAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-action Default: null DefaultPushNotificationTemplateTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-title Default: null DefaultPushNotificationTemplateSound: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-sound Default: null DefaultPushNotificationTemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-body Default: null DefaultPushNotificationTemplateUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-url Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-tags Default: null Resources: Resource: Type: AWS::Pinpoint::PushTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Properties: GCM: Action: !Ref 'AndroidPushNotificationTemplateAction' ImageUrl: !Ref 'AndroidPushNotificationTemplateImageUrl' SmallImageIconUrl: !Ref 'AndroidPushNotificationTemplateSmallImageIconUrl' Title: !Ref 'AndroidPushNotificationTemplateTitle' ImageIconUrl: !Ref 'AndroidPushNotificationTemplateImageIconUrl' Sound: !Ref 'AndroidPushNotificationTemplateSound' Body: !Ref 'AndroidPushNotificationTemplateBody' Url: !Ref 'AndroidPushNotificationTemplateUrl' Baidu: Action: !Ref 'AndroidPushNotificationTemplateAction' ImageUrl: !Ref 'AndroidPushNotificationTemplateImageUrl' SmallImageIconUrl: !Ref 'AndroidPushNotificationTemplateSmallImageIconUrl' Title: !Ref 'AndroidPushNotificationTemplateTitle' ImageIconUrl: !Ref 'AndroidPushNotificationTemplateImageIconUrl' Sound: !Ref 'AndroidPushNotificationTemplateSound' Body: !Ref 'AndroidPushNotificationTemplateBody' Url: !Ref 'AndroidPushNotificationTemplateUrl' TemplateName: !Ref 'TemplateName' ADM: Action: !Ref 'AndroidPushNotificationTemplateAction' ImageUrl: !Ref 'AndroidPushNotificationTemplateImageUrl' SmallImageIconUrl: !Ref 'AndroidPushNotificationTemplateSmallImageIconUrl' Title: !Ref 'AndroidPushNotificationTemplateTitle' ImageIconUrl: !Ref 'AndroidPushNotificationTemplateImageIconUrl' Sound: !Ref 'AndroidPushNotificationTemplateSound' Body: !Ref 'AndroidPushNotificationTemplateBody' Url: !Ref 'AndroidPushNotificationTemplateUrl' APNS: Action: !Ref 'APNSPushNotificationTemplateAction' MediaUrl: !Ref 'APNSPushNotificationTemplateMediaUrl' Title: !Ref 'APNSPushNotificationTemplateTitle' Sound: !Ref 'APNSPushNotificationTemplateSound' Body: !Ref 'APNSPushNotificationTemplateBody' Url: !Ref 'APNSPushNotificationTemplateUrl' TemplateDescription: !Ref 'TemplateDescription' DefaultSubstitutions: !Ref 'DefaultSubstitutions' Default: Action: !Ref 'DefaultPushNotificationTemplateAction' Title: !Ref 'DefaultPushNotificationTemplateTitle' Sound: !Ref 'DefaultPushNotificationTemplateSound' Body: !Ref 'DefaultPushNotificationTemplateBody' Url: !Ref 'DefaultPushNotificationTemplateUrl' Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-PushTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Parameters: AndroidPushNotificationTemplateAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-action Default: null AndroidPushNotificationTemplateImageUrl: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-imageurl Default: null AndroidPushNotificationTemplateSmallImageIconUrl: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-smallimageiconurl Default: null AndroidPushNotificationTemplateTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-title Default: null AndroidPushNotificationTemplateImageIconUrl: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-imageiconurl Default: null AndroidPushNotificationTemplateSound: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-sound Default: null AndroidPushNotificationTemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-body Default: null AndroidPushNotificationTemplateUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-url Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-templatename APNSPushNotificationTemplateAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-action Default: null APNSPushNotificationTemplateMediaUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-mediaurl Default: null APNSPushNotificationTemplateTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-title Default: null APNSPushNotificationTemplateSound: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-sound Default: null APNSPushNotificationTemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-body Default: null APNSPushNotificationTemplateUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-url Default: null TemplateDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-templatedescription Default: null DefaultSubstitutions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-defaultsubstitutions Default: null DefaultPushNotificationTemplateAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-action Default: null DefaultPushNotificationTemplateTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-title Default: null DefaultPushNotificationTemplateSound: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-sound Default: null DefaultPushNotificationTemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-body Default: null DefaultPushNotificationTemplateUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-url Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-tags Default: null Resources: Resource: Type: AWS::Pinpoint::PushTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Properties: GCM: Action: !Ref 'AndroidPushNotificationTemplateAction' ImageUrl: !Ref 'AndroidPushNotificationTemplateImageUrl' SmallImageIconUrl: !Ref 'AndroidPushNotificationTemplateSmallImageIconUrl' Title: !Ref 'AndroidPushNotificationTemplateTitle' ImageIconUrl: !Ref 'AndroidPushNotificationTemplateImageIconUrl' Sound: !Ref 'AndroidPushNotificationTemplateSound' Body: !Ref 'AndroidPushNotificationTemplateBody' Url: !Ref 'AndroidPushNotificationTemplateUrl' Baidu: Action: !Ref 'AndroidPushNotificationTemplateAction' ImageUrl: !Ref 'AndroidPushNotificationTemplateImageUrl' SmallImageIconUrl: !Ref 'AndroidPushNotificationTemplateSmallImageIconUrl' Title: !Ref 'AndroidPushNotificationTemplateTitle' ImageIconUrl: !Ref 'AndroidPushNotificationTemplateImageIconUrl' Sound: !Ref 'AndroidPushNotificationTemplateSound' Body: !Ref 'AndroidPushNotificationTemplateBody' Url: !Ref 'AndroidPushNotificationTemplateUrl' TemplateName: !Ref 'TemplateName' ADM: Action: !Ref 'AndroidPushNotificationTemplateAction' ImageUrl: !Ref 'AndroidPushNotificationTemplateImageUrl' SmallImageIconUrl: !Ref 'AndroidPushNotificationTemplateSmallImageIconUrl' Title: !Ref 'AndroidPushNotificationTemplateTitle' ImageIconUrl: !Ref 'AndroidPushNotificationTemplateImageIconUrl' Sound: !Ref 'AndroidPushNotificationTemplateSound' Body: !Ref 'AndroidPushNotificationTemplateBody' Url: !Ref 'AndroidPushNotificationTemplateUrl' APNS: Action: !Ref 'APNSPushNotificationTemplateAction' MediaUrl: !Ref 'APNSPushNotificationTemplateMediaUrl' Title: !Ref 'APNSPushNotificationTemplateTitle' Sound: !Ref 'APNSPushNotificationTemplateSound' Body: !Ref 'APNSPushNotificationTemplateBody' Url: !Ref 'APNSPushNotificationTemplateUrl' TemplateDescription: !Ref 'TemplateDescription' DefaultSubstitutions: !Ref 'DefaultSubstitutions' Default: Action: !Ref 'DefaultPushNotificationTemplateAction' Title: !Ref 'DefaultPushNotificationTemplateTitle' Sound: !Ref 'DefaultPushNotificationTemplateSound' Body: !Ref 'DefaultPushNotificationTemplateBody' Url: !Ref 'DefaultPushNotificationTemplateUrl' Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-PushTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Parameters: AndroidPushNotificationTemplateAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-action Default: null AndroidPushNotificationTemplateImageUrl: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-imageurl Default: null AndroidPushNotificationTemplateSmallImageIconUrl: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-smallimageiconurl Default: null AndroidPushNotificationTemplateTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-title Default: null AndroidPushNotificationTemplateImageIconUrl: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-imageiconurl Default: null AndroidPushNotificationTemplateSound: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-sound Default: null AndroidPushNotificationTemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-body Default: null AndroidPushNotificationTemplateUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-url Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-templatename APNSPushNotificationTemplateAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-action Default: null APNSPushNotificationTemplateMediaUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-mediaurl Default: null APNSPushNotificationTemplateTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-title Default: null APNSPushNotificationTemplateSound: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-sound Default: null APNSPushNotificationTemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-body Default: null APNSPushNotificationTemplateUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-url Default: null TemplateDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-templatedescription Default: null DefaultSubstitutions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-defaultsubstitutions Default: null DefaultPushNotificationTemplateAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-action Default: null DefaultPushNotificationTemplateTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-title Default: null DefaultPushNotificationTemplateSound: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-sound Default: null DefaultPushNotificationTemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-body Default: null DefaultPushNotificationTemplateUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-url Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-tags Default: null Resources: Resource: Type: AWS::Pinpoint::PushTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Properties: GCM: Action: !Ref 'AndroidPushNotificationTemplateAction' ImageUrl: !Ref 'AndroidPushNotificationTemplateImageUrl' SmallImageIconUrl: !Ref 'AndroidPushNotificationTemplateSmallImageIconUrl' Title: !Ref 'AndroidPushNotificationTemplateTitle' ImageIconUrl: !Ref 'AndroidPushNotificationTemplateImageIconUrl' Sound: !Ref 'AndroidPushNotificationTemplateSound' Body: !Ref 'AndroidPushNotificationTemplateBody' Url: !Ref 'AndroidPushNotificationTemplateUrl' Baidu: Action: !Ref 'AndroidPushNotificationTemplateAction' ImageUrl: !Ref 'AndroidPushNotificationTemplateImageUrl' SmallImageIconUrl: !Ref 'AndroidPushNotificationTemplateSmallImageIconUrl' Title: !Ref 'AndroidPushNotificationTemplateTitle' ImageIconUrl: !Ref 'AndroidPushNotificationTemplateImageIconUrl' Sound: !Ref 'AndroidPushNotificationTemplateSound' Body: !Ref 'AndroidPushNotificationTemplateBody' Url: !Ref 'AndroidPushNotificationTemplateUrl' TemplateName: !Ref 'TemplateName' ADM: Action: !Ref 'AndroidPushNotificationTemplateAction' ImageUrl: !Ref 'AndroidPushNotificationTemplateImageUrl' SmallImageIconUrl: !Ref 'AndroidPushNotificationTemplateSmallImageIconUrl' Title: !Ref 'AndroidPushNotificationTemplateTitle' ImageIconUrl: !Ref 'AndroidPushNotificationTemplateImageIconUrl' Sound: !Ref 'AndroidPushNotificationTemplateSound' Body: !Ref 'AndroidPushNotificationTemplateBody' Url: !Ref 'AndroidPushNotificationTemplateUrl' APNS: Action: !Ref 'APNSPushNotificationTemplateAction' MediaUrl: !Ref 'APNSPushNotificationTemplateMediaUrl' Title: !Ref 'APNSPushNotificationTemplateTitle' Sound: !Ref 'APNSPushNotificationTemplateSound' Body: !Ref 'APNSPushNotificationTemplateBody' Url: !Ref 'APNSPushNotificationTemplateUrl' TemplateDescription: !Ref 'TemplateDescription' DefaultSubstitutions: !Ref 'DefaultSubstitutions' Default: Action: !Ref 'DefaultPushNotificationTemplateAction' Title: !Ref 'DefaultPushNotificationTemplateTitle' Sound: !Ref 'DefaultPushNotificationTemplateSound' Body: !Ref 'DefaultPushNotificationTemplateBody' Url: !Ref 'DefaultPushNotificationTemplateUrl' Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-PushTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Parameters: AndroidPushNotificationTemplateAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-action Default: null AndroidPushNotificationTemplateImageUrl: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-imageurl Default: null AndroidPushNotificationTemplateSmallImageIconUrl: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-smallimageiconurl Default: null AndroidPushNotificationTemplateTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-title Default: null AndroidPushNotificationTemplateImageIconUrl: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-imageiconurl Default: null AndroidPushNotificationTemplateSound: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-sound Default: null AndroidPushNotificationTemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-body Default: null AndroidPushNotificationTemplateUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-androidpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-androidpushnotificationtemplate-url Default: null TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-templatename APNSPushNotificationTemplateAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-action Default: null APNSPushNotificationTemplateMediaUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-mediaurl Default: null APNSPushNotificationTemplateTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-title Default: null APNSPushNotificationTemplateSound: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-sound Default: null APNSPushNotificationTemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-body Default: null APNSPushNotificationTemplateUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-apnspushnotificationtemplate.html#cfn-pinpoint-pushtemplate-apnspushnotificationtemplate-url Default: null TemplateDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-templatedescription Default: null DefaultSubstitutions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-defaultsubstitutions Default: null DefaultPushNotificationTemplateAction: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-action Default: null DefaultPushNotificationTemplateTitle: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-title Default: null DefaultPushNotificationTemplateSound: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-sound Default: null DefaultPushNotificationTemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-body Default: null DefaultPushNotificationTemplateUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-pushtemplate-defaultpushnotificationtemplate.html#cfn-pinpoint-pushtemplate-defaultpushnotificationtemplate-url Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-tags Default: null Resources: Resource: Type: AWS::Pinpoint::PushTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Properties: GCM: Action: !Ref 'AndroidPushNotificationTemplateAction' ImageUrl: !Ref 'AndroidPushNotificationTemplateImageUrl' SmallImageIconUrl: !Ref 'AndroidPushNotificationTemplateSmallImageIconUrl' Title: !Ref 'AndroidPushNotificationTemplateTitle' ImageIconUrl: !Ref 'AndroidPushNotificationTemplateImageIconUrl' Sound: !Ref 'AndroidPushNotificationTemplateSound' Body: !Ref 'AndroidPushNotificationTemplateBody' Url: !Ref 'AndroidPushNotificationTemplateUrl' Baidu: Action: !Ref 'AndroidPushNotificationTemplateAction' ImageUrl: !Ref 'AndroidPushNotificationTemplateImageUrl' SmallImageIconUrl: !Ref 'AndroidPushNotificationTemplateSmallImageIconUrl' Title: !Ref 'AndroidPushNotificationTemplateTitle' ImageIconUrl: !Ref 'AndroidPushNotificationTemplateImageIconUrl' Sound: !Ref 'AndroidPushNotificationTemplateSound' Body: !Ref 'AndroidPushNotificationTemplateBody' Url: !Ref 'AndroidPushNotificationTemplateUrl' TemplateName: !Ref 'TemplateName' ADM: Action: !Ref 'AndroidPushNotificationTemplateAction' ImageUrl: !Ref 'AndroidPushNotificationTemplateImageUrl' SmallImageIconUrl: !Ref 'AndroidPushNotificationTemplateSmallImageIconUrl' Title: !Ref 'AndroidPushNotificationTemplateTitle' ImageIconUrl: !Ref 'AndroidPushNotificationTemplateImageIconUrl' Sound: !Ref 'AndroidPushNotificationTemplateSound' Body: !Ref 'AndroidPushNotificationTemplateBody' Url: !Ref 'AndroidPushNotificationTemplateUrl' APNS: Action: !Ref 'APNSPushNotificationTemplateAction' MediaUrl: !Ref 'APNSPushNotificationTemplateMediaUrl' Title: !Ref 'APNSPushNotificationTemplateTitle' Sound: !Ref 'APNSPushNotificationTemplateSound' Body: !Ref 'APNSPushNotificationTemplateBody' Url: !Ref 'APNSPushNotificationTemplateUrl' TemplateDescription: !Ref 'TemplateDescription' DefaultSubstitutions: !Ref 'DefaultSubstitutions' Default: Action: !Ref 'DefaultPushNotificationTemplateAction' Title: !Ref 'DefaultPushNotificationTemplateTitle' Sound: !Ref 'DefaultPushNotificationTemplateSound' Body: !Ref 'DefaultPushNotificationTemplateBody' Url: !Ref 'DefaultPushNotificationTemplateUrl' Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-SMSChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Parameters: ShortCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-shortcode Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-applicationid SenderId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-senderid Default: null Resources: Resource: Type: AWS::Pinpoint::SMSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Properties: ShortCode: !Ref 'ShortCode' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' SenderId: !Ref 'SenderId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-SMSChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Parameters: ShortCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-shortcode Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-applicationid SenderId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-senderid Default: null Resources: Resource: Type: AWS::Pinpoint::SMSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Properties: ShortCode: !Ref 'ShortCode' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' SenderId: !Ref 'SenderId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-SMSChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Parameters: ShortCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-shortcode Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-applicationid SenderId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-senderid Default: null Resources: Resource: Type: AWS::Pinpoint::SMSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Properties: ShortCode: !Ref 'ShortCode' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' SenderId: !Ref 'SenderId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-SMSChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Parameters: ShortCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-shortcode Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-applicationid SenderId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-senderid Default: null Resources: Resource: Type: AWS::Pinpoint::SMSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Properties: ShortCode: !Ref 'ShortCode' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' SenderId: !Ref 'SenderId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-SMSChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Parameters: ShortCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-shortcode Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-applicationid SenderId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-senderid Default: null Resources: Resource: Type: AWS::Pinpoint::SMSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Properties: ShortCode: !Ref 'ShortCode' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' SenderId: !Ref 'SenderId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-SMSChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Parameters: ShortCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-shortcode Default: null Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-applicationid SenderId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-senderid Default: null Resources: Resource: Type: AWS::Pinpoint::SMSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Properties: ShortCode: !Ref 'ShortCode' Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' SenderId: !Ref 'SenderId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-Segment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Parameters: SegmentGroupsInclude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentgroups.html#cfn-pinpoint-segment-segmentgroups-include Default: null SegmentDimensionsDemographicSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-setdimension.html#cfn-pinpoint-segment-setdimension-dimensiontype Default: null SegmentDimensionsMetrics: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-metrics Default: null SegmentDimensionsAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-attributes Default: null SegmentDimensionsBehaviorRecencyDuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-behavior-recency.html#cfn-pinpoint-segment-segmentdimensions-behavior-recency-duration SegmentDimensionsBehaviorRecencyRecencyType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-behavior-recency.html#cfn-pinpoint-segment-segmentdimensions-behavior-recency-recencytype SegmentDimensionsUserAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-userattributes Default: null SegmentDimensionsLocationGPSPointRangeInKilometers: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-rangeinkilometers SegmentDimensionsLocationGPSPointCoordinatesLatitude: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates-latitude SegmentDimensionsLocationGPSPointCoordinatesLongitude: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates-longitude SegmentDimensionsLocationSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-setdimension.html#cfn-pinpoint-segment-setdimension-dimensiontype Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-applicationid Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-name Resources: Resource: Type: AWS::Pinpoint::Segment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Properties: SegmentGroups: Include: !Ref 'SegmentGroupsInclude' Dimensions: Demographic: AppVersion: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' DeviceType: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Platform: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Channel: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Model: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Make: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Metrics: !Ref 'SegmentDimensionsMetrics' Attributes: !Ref 'SegmentDimensionsAttributes' Behavior: Recency: Duration: !Ref 'SegmentDimensionsBehaviorRecencyDuration' RecencyType: !Ref 'SegmentDimensionsBehaviorRecencyRecencyType' UserAttributes: !Ref 'SegmentDimensionsUserAttributes' Location: GPSPoint: RangeInKilometers: !Ref 'SegmentDimensionsLocationGPSPointRangeInKilometers' Coordinates: Latitude: !Ref 'SegmentDimensionsLocationGPSPointCoordinatesLatitude' Longitude: !Ref 'SegmentDimensionsLocationGPSPointCoordinatesLongitude' Country: DimensionType: !Ref 'SegmentDimensionsLocationSetDimensionDimensionType' ApplicationId: !Ref 'ApplicationId' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: SegmentId: Value: GetAtt: - Resource - SegmentId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-Segment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Parameters: SegmentGroupsInclude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentgroups.html#cfn-pinpoint-segment-segmentgroups-include Default: null SegmentDimensionsDemographicSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-setdimension.html#cfn-pinpoint-segment-setdimension-dimensiontype Default: null SegmentDimensionsMetrics: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-metrics Default: null SegmentDimensionsAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-attributes Default: null SegmentDimensionsBehaviorRecencyDuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-behavior-recency.html#cfn-pinpoint-segment-segmentdimensions-behavior-recency-duration SegmentDimensionsBehaviorRecencyRecencyType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-behavior-recency.html#cfn-pinpoint-segment-segmentdimensions-behavior-recency-recencytype SegmentDimensionsUserAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-userattributes Default: null SegmentDimensionsLocationGPSPointRangeInKilometers: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-rangeinkilometers SegmentDimensionsLocationGPSPointCoordinatesLatitude: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates-latitude SegmentDimensionsLocationGPSPointCoordinatesLongitude: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates-longitude SegmentDimensionsLocationSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-setdimension.html#cfn-pinpoint-segment-setdimension-dimensiontype Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-applicationid Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-name Resources: Resource: Type: AWS::Pinpoint::Segment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Properties: SegmentGroups: Include: !Ref 'SegmentGroupsInclude' Dimensions: Demographic: AppVersion: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' DeviceType: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Platform: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Channel: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Model: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Make: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Metrics: !Ref 'SegmentDimensionsMetrics' Attributes: !Ref 'SegmentDimensionsAttributes' Behavior: Recency: Duration: !Ref 'SegmentDimensionsBehaviorRecencyDuration' RecencyType: !Ref 'SegmentDimensionsBehaviorRecencyRecencyType' UserAttributes: !Ref 'SegmentDimensionsUserAttributes' Location: GPSPoint: RangeInKilometers: !Ref 'SegmentDimensionsLocationGPSPointRangeInKilometers' Coordinates: Latitude: !Ref 'SegmentDimensionsLocationGPSPointCoordinatesLatitude' Longitude: !Ref 'SegmentDimensionsLocationGPSPointCoordinatesLongitude' Country: DimensionType: !Ref 'SegmentDimensionsLocationSetDimensionDimensionType' ApplicationId: !Ref 'ApplicationId' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: SegmentId: Value: GetAtt: - Resource - SegmentId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-Segment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Parameters: SegmentGroupsInclude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentgroups.html#cfn-pinpoint-segment-segmentgroups-include Default: null SegmentDimensionsDemographicSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-setdimension.html#cfn-pinpoint-segment-setdimension-dimensiontype Default: null SegmentDimensionsMetrics: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-metrics Default: null SegmentDimensionsAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-attributes Default: null SegmentDimensionsBehaviorRecencyDuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-behavior-recency.html#cfn-pinpoint-segment-segmentdimensions-behavior-recency-duration SegmentDimensionsBehaviorRecencyRecencyType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-behavior-recency.html#cfn-pinpoint-segment-segmentdimensions-behavior-recency-recencytype SegmentDimensionsUserAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-userattributes Default: null SegmentDimensionsLocationGPSPointRangeInKilometers: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-rangeinkilometers SegmentDimensionsLocationGPSPointCoordinatesLatitude: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates-latitude SegmentDimensionsLocationGPSPointCoordinatesLongitude: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates-longitude SegmentDimensionsLocationSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-setdimension.html#cfn-pinpoint-segment-setdimension-dimensiontype Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-applicationid Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-name Resources: Resource: Type: AWS::Pinpoint::Segment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Properties: SegmentGroups: Include: !Ref 'SegmentGroupsInclude' Dimensions: Demographic: AppVersion: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' DeviceType: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Platform: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Channel: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Model: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Make: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Metrics: !Ref 'SegmentDimensionsMetrics' Attributes: !Ref 'SegmentDimensionsAttributes' Behavior: Recency: Duration: !Ref 'SegmentDimensionsBehaviorRecencyDuration' RecencyType: !Ref 'SegmentDimensionsBehaviorRecencyRecencyType' UserAttributes: !Ref 'SegmentDimensionsUserAttributes' Location: GPSPoint: RangeInKilometers: !Ref 'SegmentDimensionsLocationGPSPointRangeInKilometers' Coordinates: Latitude: !Ref 'SegmentDimensionsLocationGPSPointCoordinatesLatitude' Longitude: !Ref 'SegmentDimensionsLocationGPSPointCoordinatesLongitude' Country: DimensionType: !Ref 'SegmentDimensionsLocationSetDimensionDimensionType' ApplicationId: !Ref 'ApplicationId' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: SegmentId: Value: GetAtt: - Resource - SegmentId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-Segment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Parameters: SegmentGroupsInclude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentgroups.html#cfn-pinpoint-segment-segmentgroups-include Default: null SegmentDimensionsDemographicSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-setdimension.html#cfn-pinpoint-segment-setdimension-dimensiontype Default: null SegmentDimensionsMetrics: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-metrics Default: null SegmentDimensionsAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-attributes Default: null SegmentDimensionsBehaviorRecencyDuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-behavior-recency.html#cfn-pinpoint-segment-segmentdimensions-behavior-recency-duration SegmentDimensionsBehaviorRecencyRecencyType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-behavior-recency.html#cfn-pinpoint-segment-segmentdimensions-behavior-recency-recencytype SegmentDimensionsUserAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-userattributes Default: null SegmentDimensionsLocationGPSPointRangeInKilometers: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-rangeinkilometers SegmentDimensionsLocationGPSPointCoordinatesLatitude: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates-latitude SegmentDimensionsLocationGPSPointCoordinatesLongitude: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates-longitude SegmentDimensionsLocationSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-setdimension.html#cfn-pinpoint-segment-setdimension-dimensiontype Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-applicationid Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-name Resources: Resource: Type: AWS::Pinpoint::Segment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Properties: SegmentGroups: Include: !Ref 'SegmentGroupsInclude' Dimensions: Demographic: AppVersion: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' DeviceType: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Platform: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Channel: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Model: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Make: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Metrics: !Ref 'SegmentDimensionsMetrics' Attributes: !Ref 'SegmentDimensionsAttributes' Behavior: Recency: Duration: !Ref 'SegmentDimensionsBehaviorRecencyDuration' RecencyType: !Ref 'SegmentDimensionsBehaviorRecencyRecencyType' UserAttributes: !Ref 'SegmentDimensionsUserAttributes' Location: GPSPoint: RangeInKilometers: !Ref 'SegmentDimensionsLocationGPSPointRangeInKilometers' Coordinates: Latitude: !Ref 'SegmentDimensionsLocationGPSPointCoordinatesLatitude' Longitude: !Ref 'SegmentDimensionsLocationGPSPointCoordinatesLongitude' Country: DimensionType: !Ref 'SegmentDimensionsLocationSetDimensionDimensionType' ApplicationId: !Ref 'ApplicationId' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: SegmentId: Value: GetAtt: - Resource - SegmentId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-Segment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Parameters: SegmentGroupsInclude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentgroups.html#cfn-pinpoint-segment-segmentgroups-include Default: null SegmentDimensionsDemographicSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-setdimension.html#cfn-pinpoint-segment-setdimension-dimensiontype Default: null SegmentDimensionsMetrics: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-metrics Default: null SegmentDimensionsAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-attributes Default: null SegmentDimensionsBehaviorRecencyDuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-behavior-recency.html#cfn-pinpoint-segment-segmentdimensions-behavior-recency-duration SegmentDimensionsBehaviorRecencyRecencyType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-behavior-recency.html#cfn-pinpoint-segment-segmentdimensions-behavior-recency-recencytype SegmentDimensionsUserAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-userattributes Default: null SegmentDimensionsLocationGPSPointRangeInKilometers: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-rangeinkilometers SegmentDimensionsLocationGPSPointCoordinatesLatitude: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates-latitude SegmentDimensionsLocationGPSPointCoordinatesLongitude: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates-longitude SegmentDimensionsLocationSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-setdimension.html#cfn-pinpoint-segment-setdimension-dimensiontype Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-applicationid Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-name Resources: Resource: Type: AWS::Pinpoint::Segment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Properties: SegmentGroups: Include: !Ref 'SegmentGroupsInclude' Dimensions: Demographic: AppVersion: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' DeviceType: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Platform: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Channel: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Model: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Make: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Metrics: !Ref 'SegmentDimensionsMetrics' Attributes: !Ref 'SegmentDimensionsAttributes' Behavior: Recency: Duration: !Ref 'SegmentDimensionsBehaviorRecencyDuration' RecencyType: !Ref 'SegmentDimensionsBehaviorRecencyRecencyType' UserAttributes: !Ref 'SegmentDimensionsUserAttributes' Location: GPSPoint: RangeInKilometers: !Ref 'SegmentDimensionsLocationGPSPointRangeInKilometers' Coordinates: Latitude: !Ref 'SegmentDimensionsLocationGPSPointCoordinatesLatitude' Longitude: !Ref 'SegmentDimensionsLocationGPSPointCoordinatesLongitude' Country: DimensionType: !Ref 'SegmentDimensionsLocationSetDimensionDimensionType' ApplicationId: !Ref 'ApplicationId' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: SegmentId: Value: GetAtt: - Resource - SegmentId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-Segment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Parameters: SegmentGroupsInclude: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentgroups.html#cfn-pinpoint-segment-segmentgroups-include Default: null SegmentDimensionsDemographicSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-setdimension.html#cfn-pinpoint-segment-setdimension-dimensiontype Default: null SegmentDimensionsMetrics: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-metrics Default: null SegmentDimensionsAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-attributes Default: null SegmentDimensionsBehaviorRecencyDuration: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-behavior-recency.html#cfn-pinpoint-segment-segmentdimensions-behavior-recency-duration SegmentDimensionsBehaviorRecencyRecencyType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-behavior-recency.html#cfn-pinpoint-segment-segmentdimensions-behavior-recency-recencytype SegmentDimensionsUserAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions.html#cfn-pinpoint-segment-segmentdimensions-userattributes Default: null SegmentDimensionsLocationGPSPointRangeInKilometers: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-rangeinkilometers SegmentDimensionsLocationGPSPointCoordinatesLatitude: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates-latitude SegmentDimensionsLocationGPSPointCoordinatesLongitude: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint-coordinates-longitude SegmentDimensionsLocationSetDimensionDimensionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-setdimension.html#cfn-pinpoint-segment-setdimension-dimensiontype Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-applicationid Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-name Resources: Resource: Type: AWS::Pinpoint::Segment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Properties: SegmentGroups: Include: !Ref 'SegmentGroupsInclude' Dimensions: Demographic: AppVersion: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' DeviceType: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Platform: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Channel: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Model: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Make: DimensionType: !Ref 'SegmentDimensionsDemographicSetDimensionDimensionType' Metrics: !Ref 'SegmentDimensionsMetrics' Attributes: !Ref 'SegmentDimensionsAttributes' Behavior: Recency: Duration: !Ref 'SegmentDimensionsBehaviorRecencyDuration' RecencyType: !Ref 'SegmentDimensionsBehaviorRecencyRecencyType' UserAttributes: !Ref 'SegmentDimensionsUserAttributes' Location: GPSPoint: RangeInKilometers: !Ref 'SegmentDimensionsLocationGPSPointRangeInKilometers' Coordinates: Latitude: !Ref 'SegmentDimensionsLocationGPSPointCoordinatesLatitude' Longitude: !Ref 'SegmentDimensionsLocationGPSPointCoordinatesLongitude' Country: DimensionType: !Ref 'SegmentDimensionsLocationSetDimensionDimensionType' ApplicationId: !Ref 'ApplicationId' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: SegmentId: Value: GetAtt: - Resource - SegmentId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-SmsTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-templatename TemplateDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-templatedescription Default: null DefaultSubstitutions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-defaultsubstitutions Default: null Body: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-body Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-tags Default: null Resources: Resource: Type: AWS::Pinpoint::SmsTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Properties: TemplateName: !Ref 'TemplateName' TemplateDescription: !Ref 'TemplateDescription' DefaultSubstitutions: !Ref 'DefaultSubstitutions' Body: !Ref 'Body' Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-SmsTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-templatename TemplateDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-templatedescription Default: null DefaultSubstitutions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-defaultsubstitutions Default: null Body: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-body Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-tags Default: null Resources: Resource: Type: AWS::Pinpoint::SmsTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Properties: TemplateName: !Ref 'TemplateName' TemplateDescription: !Ref 'TemplateDescription' DefaultSubstitutions: !Ref 'DefaultSubstitutions' Body: !Ref 'Body' Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-SmsTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-templatename TemplateDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-templatedescription Default: null DefaultSubstitutions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-defaultsubstitutions Default: null Body: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-body Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-tags Default: null Resources: Resource: Type: AWS::Pinpoint::SmsTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Properties: TemplateName: !Ref 'TemplateName' TemplateDescription: !Ref 'TemplateDescription' DefaultSubstitutions: !Ref 'DefaultSubstitutions' Body: !Ref 'Body' Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-SmsTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-templatename TemplateDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-templatedescription Default: null DefaultSubstitutions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-defaultsubstitutions Default: null Body: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-body Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-tags Default: null Resources: Resource: Type: AWS::Pinpoint::SmsTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Properties: TemplateName: !Ref 'TemplateName' TemplateDescription: !Ref 'TemplateDescription' DefaultSubstitutions: !Ref 'DefaultSubstitutions' Body: !Ref 'Body' Tags: !Ref 'Tags' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-VoiceChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-applicationid Resources: Resource: Type: AWS::Pinpoint::VoiceChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Properties: Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-VoiceChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-applicationid Resources: Resource: Type: AWS::Pinpoint::VoiceChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Properties: Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-VoiceChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-applicationid Resources: Resource: Type: AWS::Pinpoint::VoiceChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Properties: Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-VoiceChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-applicationid Resources: Resource: Type: AWS::Pinpoint::VoiceChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Properties: Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-VoiceChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-applicationid Resources: Resource: Type: AWS::Pinpoint::VoiceChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Properties: Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Pinpoint-VoiceChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-enabled AllowedValues: - 'true' - 'false' Default: null ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-applicationid Resources: Resource: Type: AWS::Pinpoint::VoiceChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Properties: Enabled: !Ref 'Enabled' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-ConfigurationSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Parameters: SendingOptionsSendingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-sendingoptions.html#cfn-pinpointemail-configurationset-sendingoptions-sendingenabled AllowedValues: - 'true' - 'false' Default: null TrackingOptionsCustomRedirectDomain: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-trackingoptions.html#cfn-pinpointemail-configurationset-trackingoptions-customredirectdomain Default: null ReputationOptionsReputationMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-reputationoptions.html#cfn-pinpointemail-configurationset-reputationoptions-reputationmetricsenabled AllowedValues: - 'true' - 'false' Default: null DeliveryOptionsSendingPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-deliveryoptions.html#cfn-pinpointemail-configurationset-deliveryoptions-sendingpoolname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html#cfn-pinpointemail-configurationset-name Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Properties: SendingOptions: SendingEnabled: !Ref 'SendingOptionsSendingEnabled' TrackingOptions: CustomRedirectDomain: !Ref 'TrackingOptionsCustomRedirectDomain' ReputationOptions: ReputationMetricsEnabled: !Ref 'ReputationOptionsReputationMetricsEnabled' DeliveryOptions: SendingPoolName: !Ref 'DeliveryOptionsSendingPoolName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-ConfigurationSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Parameters: SendingOptionsSendingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-sendingoptions.html#cfn-pinpointemail-configurationset-sendingoptions-sendingenabled AllowedValues: - 'true' - 'false' Default: null TrackingOptionsCustomRedirectDomain: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-trackingoptions.html#cfn-pinpointemail-configurationset-trackingoptions-customredirectdomain Default: null ReputationOptionsReputationMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-reputationoptions.html#cfn-pinpointemail-configurationset-reputationoptions-reputationmetricsenabled AllowedValues: - 'true' - 'false' Default: null DeliveryOptionsSendingPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-deliveryoptions.html#cfn-pinpointemail-configurationset-deliveryoptions-sendingpoolname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html#cfn-pinpointemail-configurationset-name Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Properties: SendingOptions: SendingEnabled: !Ref 'SendingOptionsSendingEnabled' TrackingOptions: CustomRedirectDomain: !Ref 'TrackingOptionsCustomRedirectDomain' ReputationOptions: ReputationMetricsEnabled: !Ref 'ReputationOptionsReputationMetricsEnabled' DeliveryOptions: SendingPoolName: !Ref 'DeliveryOptionsSendingPoolName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-ConfigurationSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Parameters: SendingOptionsSendingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-sendingoptions.html#cfn-pinpointemail-configurationset-sendingoptions-sendingenabled AllowedValues: - 'true' - 'false' Default: null TrackingOptionsCustomRedirectDomain: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-trackingoptions.html#cfn-pinpointemail-configurationset-trackingoptions-customredirectdomain Default: null ReputationOptionsReputationMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-reputationoptions.html#cfn-pinpointemail-configurationset-reputationoptions-reputationmetricsenabled AllowedValues: - 'true' - 'false' Default: null DeliveryOptionsSendingPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-deliveryoptions.html#cfn-pinpointemail-configurationset-deliveryoptions-sendingpoolname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html#cfn-pinpointemail-configurationset-name Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Properties: SendingOptions: SendingEnabled: !Ref 'SendingOptionsSendingEnabled' TrackingOptions: CustomRedirectDomain: !Ref 'TrackingOptionsCustomRedirectDomain' ReputationOptions: ReputationMetricsEnabled: !Ref 'ReputationOptionsReputationMetricsEnabled' DeliveryOptions: SendingPoolName: !Ref 'DeliveryOptionsSendingPoolName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-ConfigurationSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Parameters: SendingOptionsSendingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-sendingoptions.html#cfn-pinpointemail-configurationset-sendingoptions-sendingenabled AllowedValues: - 'true' - 'false' Default: null TrackingOptionsCustomRedirectDomain: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-trackingoptions.html#cfn-pinpointemail-configurationset-trackingoptions-customredirectdomain Default: null ReputationOptionsReputationMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-reputationoptions.html#cfn-pinpointemail-configurationset-reputationoptions-reputationmetricsenabled AllowedValues: - 'true' - 'false' Default: null DeliveryOptionsSendingPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-deliveryoptions.html#cfn-pinpointemail-configurationset-deliveryoptions-sendingpoolname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html#cfn-pinpointemail-configurationset-name Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Properties: SendingOptions: SendingEnabled: !Ref 'SendingOptionsSendingEnabled' TrackingOptions: CustomRedirectDomain: !Ref 'TrackingOptionsCustomRedirectDomain' ReputationOptions: ReputationMetricsEnabled: !Ref 'ReputationOptionsReputationMetricsEnabled' DeliveryOptions: SendingPoolName: !Ref 'DeliveryOptionsSendingPoolName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-ConfigurationSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Parameters: SendingOptionsSendingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-sendingoptions.html#cfn-pinpointemail-configurationset-sendingoptions-sendingenabled AllowedValues: - 'true' - 'false' Default: null TrackingOptionsCustomRedirectDomain: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-trackingoptions.html#cfn-pinpointemail-configurationset-trackingoptions-customredirectdomain Default: null ReputationOptionsReputationMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-reputationoptions.html#cfn-pinpointemail-configurationset-reputationoptions-reputationmetricsenabled AllowedValues: - 'true' - 'false' Default: null DeliveryOptionsSendingPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-deliveryoptions.html#cfn-pinpointemail-configurationset-deliveryoptions-sendingpoolname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html#cfn-pinpointemail-configurationset-name Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Properties: SendingOptions: SendingEnabled: !Ref 'SendingOptionsSendingEnabled' TrackingOptions: CustomRedirectDomain: !Ref 'TrackingOptionsCustomRedirectDomain' ReputationOptions: ReputationMetricsEnabled: !Ref 'ReputationOptionsReputationMetricsEnabled' DeliveryOptions: SendingPoolName: !Ref 'DeliveryOptionsSendingPoolName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-ConfigurationSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Parameters: SendingOptionsSendingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-sendingoptions.html#cfn-pinpointemail-configurationset-sendingoptions-sendingenabled AllowedValues: - 'true' - 'false' Default: null TrackingOptionsCustomRedirectDomain: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-trackingoptions.html#cfn-pinpointemail-configurationset-trackingoptions-customredirectdomain Default: null ReputationOptionsReputationMetricsEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-reputationoptions.html#cfn-pinpointemail-configurationset-reputationoptions-reputationmetricsenabled AllowedValues: - 'true' - 'false' Default: null DeliveryOptionsSendingPoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-deliveryoptions.html#cfn-pinpointemail-configurationset-deliveryoptions-sendingpoolname Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html#cfn-pinpointemail-configurationset-name Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Properties: SendingOptions: SendingEnabled: !Ref 'SendingOptionsSendingEnabled' TrackingOptions: CustomRedirectDomain: !Ref 'TrackingOptionsCustomRedirectDomain' ReputationOptions: ReputationMetricsEnabled: !Ref 'ReputationOptionsReputationMetricsEnabled' DeliveryOptions: SendingPoolName: !Ref 'DeliveryOptionsSendingPoolName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-ConfigurationSetEventDestination/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Parameters: EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestinationname ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-configurationsetname EventDestinationSnsDestinationTopicArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-snsdestination.html#cfn-pinpointemail-configurationseteventdestination-snsdestination-topicarn EventDestinationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-eventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestination-enabled AllowedValues: - 'true' - 'false' Default: null EventDestinationPinpointDestinationApplicationArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-pinpointdestination.html#cfn-pinpointemail-configurationseteventdestination-pinpointdestination-applicationarn Default: null EventDestinationKinesisFirehoseDestinationDeliveryStreamArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-kinesisfirehosedestination.html#cfn-pinpointemail-configurationseteventdestination-kinesisfirehosedestination-deliverystreamarn EventDestinationKinesisFirehoseDestinationIamRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-kinesisfirehosedestination.html#cfn-pinpointemail-configurationseteventdestination-kinesisfirehosedestination-iamrolearn Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Properties: EventDestinationName: !Ref 'EventDestinationName' ConfigurationSetName: !Ref 'ConfigurationSetName' EventDestination: SnsDestination: TopicArn: !Ref 'EventDestinationSnsDestinationTopicArn' CloudWatchDestination: {} Enabled: !Ref 'EventDestinationEnabled' PinpointDestination: ApplicationArn: !Ref 'EventDestinationPinpointDestinationApplicationArn' KinesisFirehoseDestination: DeliveryStreamArn: !Ref 'EventDestinationKinesisFirehoseDestinationDeliveryStreamArn' IamRoleArn: !Ref 'EventDestinationKinesisFirehoseDestinationIamRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-ConfigurationSetEventDestination/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Parameters: EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestinationname ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-configurationsetname EventDestinationSnsDestinationTopicArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-snsdestination.html#cfn-pinpointemail-configurationseteventdestination-snsdestination-topicarn EventDestinationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-eventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestination-enabled AllowedValues: - 'true' - 'false' Default: null EventDestinationPinpointDestinationApplicationArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-pinpointdestination.html#cfn-pinpointemail-configurationseteventdestination-pinpointdestination-applicationarn Default: null EventDestinationKinesisFirehoseDestinationDeliveryStreamArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-kinesisfirehosedestination.html#cfn-pinpointemail-configurationseteventdestination-kinesisfirehosedestination-deliverystreamarn EventDestinationKinesisFirehoseDestinationIamRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-kinesisfirehosedestination.html#cfn-pinpointemail-configurationseteventdestination-kinesisfirehosedestination-iamrolearn Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Properties: EventDestinationName: !Ref 'EventDestinationName' ConfigurationSetName: !Ref 'ConfigurationSetName' EventDestination: SnsDestination: TopicArn: !Ref 'EventDestinationSnsDestinationTopicArn' CloudWatchDestination: {} Enabled: !Ref 'EventDestinationEnabled' PinpointDestination: ApplicationArn: !Ref 'EventDestinationPinpointDestinationApplicationArn' KinesisFirehoseDestination: DeliveryStreamArn: !Ref 'EventDestinationKinesisFirehoseDestinationDeliveryStreamArn' IamRoleArn: !Ref 'EventDestinationKinesisFirehoseDestinationIamRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-ConfigurationSetEventDestination/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Parameters: EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestinationname ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-configurationsetname EventDestinationSnsDestinationTopicArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-snsdestination.html#cfn-pinpointemail-configurationseteventdestination-snsdestination-topicarn EventDestinationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-eventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestination-enabled AllowedValues: - 'true' - 'false' Default: null EventDestinationPinpointDestinationApplicationArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-pinpointdestination.html#cfn-pinpointemail-configurationseteventdestination-pinpointdestination-applicationarn Default: null EventDestinationKinesisFirehoseDestinationDeliveryStreamArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-kinesisfirehosedestination.html#cfn-pinpointemail-configurationseteventdestination-kinesisfirehosedestination-deliverystreamarn EventDestinationKinesisFirehoseDestinationIamRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-kinesisfirehosedestination.html#cfn-pinpointemail-configurationseteventdestination-kinesisfirehosedestination-iamrolearn Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Properties: EventDestinationName: !Ref 'EventDestinationName' ConfigurationSetName: !Ref 'ConfigurationSetName' EventDestination: SnsDestination: TopicArn: !Ref 'EventDestinationSnsDestinationTopicArn' CloudWatchDestination: {} Enabled: !Ref 'EventDestinationEnabled' PinpointDestination: ApplicationArn: !Ref 'EventDestinationPinpointDestinationApplicationArn' KinesisFirehoseDestination: DeliveryStreamArn: !Ref 'EventDestinationKinesisFirehoseDestinationDeliveryStreamArn' IamRoleArn: !Ref 'EventDestinationKinesisFirehoseDestinationIamRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-ConfigurationSetEventDestination/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Parameters: EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestinationname ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-configurationsetname EventDestinationSnsDestinationTopicArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-snsdestination.html#cfn-pinpointemail-configurationseteventdestination-snsdestination-topicarn EventDestinationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-eventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestination-enabled AllowedValues: - 'true' - 'false' Default: null EventDestinationPinpointDestinationApplicationArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-pinpointdestination.html#cfn-pinpointemail-configurationseteventdestination-pinpointdestination-applicationarn Default: null EventDestinationKinesisFirehoseDestinationDeliveryStreamArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-kinesisfirehosedestination.html#cfn-pinpointemail-configurationseteventdestination-kinesisfirehosedestination-deliverystreamarn EventDestinationKinesisFirehoseDestinationIamRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-kinesisfirehosedestination.html#cfn-pinpointemail-configurationseteventdestination-kinesisfirehosedestination-iamrolearn Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Properties: EventDestinationName: !Ref 'EventDestinationName' ConfigurationSetName: !Ref 'ConfigurationSetName' EventDestination: SnsDestination: TopicArn: !Ref 'EventDestinationSnsDestinationTopicArn' CloudWatchDestination: {} Enabled: !Ref 'EventDestinationEnabled' PinpointDestination: ApplicationArn: !Ref 'EventDestinationPinpointDestinationApplicationArn' KinesisFirehoseDestination: DeliveryStreamArn: !Ref 'EventDestinationKinesisFirehoseDestinationDeliveryStreamArn' IamRoleArn: !Ref 'EventDestinationKinesisFirehoseDestinationIamRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-ConfigurationSetEventDestination/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Parameters: EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestinationname ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-configurationsetname EventDestinationSnsDestinationTopicArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-snsdestination.html#cfn-pinpointemail-configurationseteventdestination-snsdestination-topicarn EventDestinationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-eventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestination-enabled AllowedValues: - 'true' - 'false' Default: null EventDestinationPinpointDestinationApplicationArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-pinpointdestination.html#cfn-pinpointemail-configurationseteventdestination-pinpointdestination-applicationarn Default: null EventDestinationKinesisFirehoseDestinationDeliveryStreamArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-kinesisfirehosedestination.html#cfn-pinpointemail-configurationseteventdestination-kinesisfirehosedestination-deliverystreamarn EventDestinationKinesisFirehoseDestinationIamRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-kinesisfirehosedestination.html#cfn-pinpointemail-configurationseteventdestination-kinesisfirehosedestination-iamrolearn Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Properties: EventDestinationName: !Ref 'EventDestinationName' ConfigurationSetName: !Ref 'ConfigurationSetName' EventDestination: SnsDestination: TopicArn: !Ref 'EventDestinationSnsDestinationTopicArn' CloudWatchDestination: {} Enabled: !Ref 'EventDestinationEnabled' PinpointDestination: ApplicationArn: !Ref 'EventDestinationPinpointDestinationApplicationArn' KinesisFirehoseDestination: DeliveryStreamArn: !Ref 'EventDestinationKinesisFirehoseDestinationDeliveryStreamArn' IamRoleArn: !Ref 'EventDestinationKinesisFirehoseDestinationIamRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-ConfigurationSetEventDestination/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Parameters: EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestinationname ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-configurationsetname EventDestinationSnsDestinationTopicArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-snsdestination.html#cfn-pinpointemail-configurationseteventdestination-snsdestination-topicarn EventDestinationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-eventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestination-enabled AllowedValues: - 'true' - 'false' Default: null EventDestinationPinpointDestinationApplicationArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-pinpointdestination.html#cfn-pinpointemail-configurationseteventdestination-pinpointdestination-applicationarn Default: null EventDestinationKinesisFirehoseDestinationDeliveryStreamArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-kinesisfirehosedestination.html#cfn-pinpointemail-configurationseteventdestination-kinesisfirehosedestination-deliverystreamarn EventDestinationKinesisFirehoseDestinationIamRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-kinesisfirehosedestination.html#cfn-pinpointemail-configurationseteventdestination-kinesisfirehosedestination-iamrolearn Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Properties: EventDestinationName: !Ref 'EventDestinationName' ConfigurationSetName: !Ref 'ConfigurationSetName' EventDestination: SnsDestination: TopicArn: !Ref 'EventDestinationSnsDestinationTopicArn' CloudWatchDestination: {} Enabled: !Ref 'EventDestinationEnabled' PinpointDestination: ApplicationArn: !Ref 'EventDestinationPinpointDestinationApplicationArn' KinesisFirehoseDestination: DeliveryStreamArn: !Ref 'EventDestinationKinesisFirehoseDestinationDeliveryStreamArn' IamRoleArn: !Ref 'EventDestinationKinesisFirehoseDestinationIamRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-DedicatedIpPool/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Parameters: PoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html#cfn-pinpointemail-dedicatedippool-poolname Default: null Resources: Resource: Type: AWS::PinpointEmail::DedicatedIpPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Properties: PoolName: !Ref 'PoolName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-DedicatedIpPool/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Parameters: PoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html#cfn-pinpointemail-dedicatedippool-poolname Default: null Resources: Resource: Type: AWS::PinpointEmail::DedicatedIpPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Properties: PoolName: !Ref 'PoolName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-DedicatedIpPool/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Parameters: PoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html#cfn-pinpointemail-dedicatedippool-poolname Default: null Resources: Resource: Type: AWS::PinpointEmail::DedicatedIpPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Properties: PoolName: !Ref 'PoolName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-DedicatedIpPool/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Parameters: PoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html#cfn-pinpointemail-dedicatedippool-poolname Default: null Resources: Resource: Type: AWS::PinpointEmail::DedicatedIpPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Properties: PoolName: !Ref 'PoolName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-DedicatedIpPool/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Parameters: PoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html#cfn-pinpointemail-dedicatedippool-poolname Default: null Resources: Resource: Type: AWS::PinpointEmail::DedicatedIpPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Properties: PoolName: !Ref 'PoolName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-DedicatedIpPool/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Parameters: PoolName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html#cfn-pinpointemail-dedicatedippool-poolname Default: null Resources: Resource: Type: AWS::PinpointEmail::DedicatedIpPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Properties: PoolName: !Ref 'PoolName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-Identity/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Parameters: FeedbackForwardingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-feedbackforwardingenabled AllowedValues: - 'true' - 'false' Default: null DkimSigningEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-dkimsigningenabled AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-name MailFromAttributesMailFromDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-identity-mailfromattributes.html#cfn-pinpointemail-identity-mailfromattributes-mailfromdomain Default: null MailFromAttributesBehaviorOnMxFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-identity-mailfromattributes.html#cfn-pinpointemail-identity-mailfromattributes-behavioronmxfailure Default: null Resources: Resource: Type: AWS::PinpointEmail::Identity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Properties: FeedbackForwardingEnabled: !Ref 'FeedbackForwardingEnabled' DkimSigningEnabled: !Ref 'DkimSigningEnabled' Name: !Ref 'Name' MailFromAttributes: MailFromDomain: !Ref 'MailFromAttributesMailFromDomain' BehaviorOnMxFailure: !Ref 'MailFromAttributesBehaviorOnMxFailure' Outputs: IdentityDNSRecordName3: Value: GetAtt: - Resource - IdentityDNSRecordName3 IdentityDNSRecordName1: Value: GetAtt: - Resource - IdentityDNSRecordName1 IdentityDNSRecordName2: Value: GetAtt: - Resource - IdentityDNSRecordName2 IdentityDNSRecordValue3: Value: GetAtt: - Resource - IdentityDNSRecordValue3 IdentityDNSRecordValue2: Value: GetAtt: - Resource - IdentityDNSRecordValue2 IdentityDNSRecordValue1: Value: GetAtt: - Resource - IdentityDNSRecordValue1 ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-Identity/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Parameters: FeedbackForwardingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-feedbackforwardingenabled AllowedValues: - 'true' - 'false' Default: null DkimSigningEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-dkimsigningenabled AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-name MailFromAttributesMailFromDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-identity-mailfromattributes.html#cfn-pinpointemail-identity-mailfromattributes-mailfromdomain Default: null MailFromAttributesBehaviorOnMxFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-identity-mailfromattributes.html#cfn-pinpointemail-identity-mailfromattributes-behavioronmxfailure Default: null Resources: Resource: Type: AWS::PinpointEmail::Identity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Properties: FeedbackForwardingEnabled: !Ref 'FeedbackForwardingEnabled' DkimSigningEnabled: !Ref 'DkimSigningEnabled' Name: !Ref 'Name' MailFromAttributes: MailFromDomain: !Ref 'MailFromAttributesMailFromDomain' BehaviorOnMxFailure: !Ref 'MailFromAttributesBehaviorOnMxFailure' Outputs: IdentityDNSRecordName3: Value: GetAtt: - Resource - IdentityDNSRecordName3 IdentityDNSRecordName1: Value: GetAtt: - Resource - IdentityDNSRecordName1 IdentityDNSRecordName2: Value: GetAtt: - Resource - IdentityDNSRecordName2 IdentityDNSRecordValue3: Value: GetAtt: - Resource - IdentityDNSRecordValue3 IdentityDNSRecordValue2: Value: GetAtt: - Resource - IdentityDNSRecordValue2 IdentityDNSRecordValue1: Value: GetAtt: - Resource - IdentityDNSRecordValue1 ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-Identity/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Parameters: FeedbackForwardingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-feedbackforwardingenabled AllowedValues: - 'true' - 'false' Default: null DkimSigningEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-dkimsigningenabled AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-name MailFromAttributesMailFromDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-identity-mailfromattributes.html#cfn-pinpointemail-identity-mailfromattributes-mailfromdomain Default: null MailFromAttributesBehaviorOnMxFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-identity-mailfromattributes.html#cfn-pinpointemail-identity-mailfromattributes-behavioronmxfailure Default: null Resources: Resource: Type: AWS::PinpointEmail::Identity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Properties: FeedbackForwardingEnabled: !Ref 'FeedbackForwardingEnabled' DkimSigningEnabled: !Ref 'DkimSigningEnabled' Name: !Ref 'Name' MailFromAttributes: MailFromDomain: !Ref 'MailFromAttributesMailFromDomain' BehaviorOnMxFailure: !Ref 'MailFromAttributesBehaviorOnMxFailure' Outputs: IdentityDNSRecordName3: Value: GetAtt: - Resource - IdentityDNSRecordName3 IdentityDNSRecordName1: Value: GetAtt: - Resource - IdentityDNSRecordName1 IdentityDNSRecordName2: Value: GetAtt: - Resource - IdentityDNSRecordName2 IdentityDNSRecordValue3: Value: GetAtt: - Resource - IdentityDNSRecordValue3 IdentityDNSRecordValue2: Value: GetAtt: - Resource - IdentityDNSRecordValue2 IdentityDNSRecordValue1: Value: GetAtt: - Resource - IdentityDNSRecordValue1 ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-Identity/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Parameters: FeedbackForwardingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-feedbackforwardingenabled AllowedValues: - 'true' - 'false' Default: null DkimSigningEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-dkimsigningenabled AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-name MailFromAttributesMailFromDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-identity-mailfromattributes.html#cfn-pinpointemail-identity-mailfromattributes-mailfromdomain Default: null MailFromAttributesBehaviorOnMxFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-identity-mailfromattributes.html#cfn-pinpointemail-identity-mailfromattributes-behavioronmxfailure Default: null Resources: Resource: Type: AWS::PinpointEmail::Identity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Properties: FeedbackForwardingEnabled: !Ref 'FeedbackForwardingEnabled' DkimSigningEnabled: !Ref 'DkimSigningEnabled' Name: !Ref 'Name' MailFromAttributes: MailFromDomain: !Ref 'MailFromAttributesMailFromDomain' BehaviorOnMxFailure: !Ref 'MailFromAttributesBehaviorOnMxFailure' Outputs: IdentityDNSRecordName3: Value: GetAtt: - Resource - IdentityDNSRecordName3 IdentityDNSRecordName1: Value: GetAtt: - Resource - IdentityDNSRecordName1 IdentityDNSRecordName2: Value: GetAtt: - Resource - IdentityDNSRecordName2 IdentityDNSRecordValue3: Value: GetAtt: - Resource - IdentityDNSRecordValue3 IdentityDNSRecordValue2: Value: GetAtt: - Resource - IdentityDNSRecordValue2 IdentityDNSRecordValue1: Value: GetAtt: - Resource - IdentityDNSRecordValue1 ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-Identity/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Parameters: FeedbackForwardingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-feedbackforwardingenabled AllowedValues: - 'true' - 'false' Default: null DkimSigningEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-dkimsigningenabled AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-name MailFromAttributesMailFromDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-identity-mailfromattributes.html#cfn-pinpointemail-identity-mailfromattributes-mailfromdomain Default: null MailFromAttributesBehaviorOnMxFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-identity-mailfromattributes.html#cfn-pinpointemail-identity-mailfromattributes-behavioronmxfailure Default: null Resources: Resource: Type: AWS::PinpointEmail::Identity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Properties: FeedbackForwardingEnabled: !Ref 'FeedbackForwardingEnabled' DkimSigningEnabled: !Ref 'DkimSigningEnabled' Name: !Ref 'Name' MailFromAttributes: MailFromDomain: !Ref 'MailFromAttributesMailFromDomain' BehaviorOnMxFailure: !Ref 'MailFromAttributesBehaviorOnMxFailure' Outputs: IdentityDNSRecordName3: Value: GetAtt: - Resource - IdentityDNSRecordName3 IdentityDNSRecordName1: Value: GetAtt: - Resource - IdentityDNSRecordName1 IdentityDNSRecordName2: Value: GetAtt: - Resource - IdentityDNSRecordName2 IdentityDNSRecordValue3: Value: GetAtt: - Resource - IdentityDNSRecordValue3 IdentityDNSRecordValue2: Value: GetAtt: - Resource - IdentityDNSRecordValue2 IdentityDNSRecordValue1: Value: GetAtt: - Resource - IdentityDNSRecordValue1 ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-PinpointEmail-Identity/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Parameters: FeedbackForwardingEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-feedbackforwardingenabled AllowedValues: - 'true' - 'false' Default: null DkimSigningEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-dkimsigningenabled AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-name MailFromAttributesMailFromDomain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-identity-mailfromattributes.html#cfn-pinpointemail-identity-mailfromattributes-mailfromdomain Default: null MailFromAttributesBehaviorOnMxFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-identity-mailfromattributes.html#cfn-pinpointemail-identity-mailfromattributes-behavioronmxfailure Default: null Resources: Resource: Type: AWS::PinpointEmail::Identity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Properties: FeedbackForwardingEnabled: !Ref 'FeedbackForwardingEnabled' DkimSigningEnabled: !Ref 'DkimSigningEnabled' Name: !Ref 'Name' MailFromAttributes: MailFromDomain: !Ref 'MailFromAttributesMailFromDomain' BehaviorOnMxFailure: !Ref 'MailFromAttributesBehaviorOnMxFailure' Outputs: IdentityDNSRecordName3: Value: GetAtt: - Resource - IdentityDNSRecordName3 IdentityDNSRecordName1: Value: GetAtt: - Resource - IdentityDNSRecordName1 IdentityDNSRecordName2: Value: GetAtt: - Resource - IdentityDNSRecordName2 IdentityDNSRecordValue3: Value: GetAtt: - Resource - IdentityDNSRecordValue3 IdentityDNSRecordValue2: Value: GetAtt: - Resource - IdentityDNSRecordValue2 IdentityDNSRecordValue1: Value: GetAtt: - Resource - IdentityDNSRecordValue1 ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Ledger/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-deletionprotection AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-name Default: null Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' DeletionProtection: !Ref 'DeletionProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Ledger/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-deletionprotection AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-name Default: null Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' DeletionProtection: !Ref 'DeletionProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Ledger/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-deletionprotection AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-name Default: null Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' DeletionProtection: !Ref 'DeletionProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Ledger/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-deletionprotection AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-name Default: null Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' DeletionProtection: !Ref 'DeletionProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Ledger/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-deletionprotection AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-name Default: null Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' DeletionProtection: !Ref 'DeletionProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Ledger/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-deletionprotection AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-name Default: null Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' DeletionProtection: !Ref 'DeletionProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Ledger/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-deletionprotection AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-name Default: null Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' DeletionProtection: !Ref 'DeletionProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Ledger/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-deletionprotection AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-name Default: null Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' DeletionProtection: !Ref 'DeletionProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Ledger/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-deletionprotection AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-name Default: null Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' DeletionProtection: !Ref 'DeletionProtection' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Stream/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime ExclusiveEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-exclusiveendtime Default: null KinesisConfigurationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-streamarn Default: null KinesisConfigurationAggregationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-aggregationenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' ExclusiveEndTime: !Ref 'ExclusiveEndTime' KinesisConfiguration: StreamArn: !Ref 'KinesisConfigurationStreamArn' AggregationEnabled: !Ref 'KinesisConfigurationAggregationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Stream/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime ExclusiveEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-exclusiveendtime Default: null KinesisConfigurationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-streamarn Default: null KinesisConfigurationAggregationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-aggregationenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' ExclusiveEndTime: !Ref 'ExclusiveEndTime' KinesisConfiguration: StreamArn: !Ref 'KinesisConfigurationStreamArn' AggregationEnabled: !Ref 'KinesisConfigurationAggregationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Stream/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime ExclusiveEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-exclusiveendtime Default: null KinesisConfigurationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-streamarn Default: null KinesisConfigurationAggregationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-aggregationenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' ExclusiveEndTime: !Ref 'ExclusiveEndTime' KinesisConfiguration: StreamArn: !Ref 'KinesisConfigurationStreamArn' AggregationEnabled: !Ref 'KinesisConfigurationAggregationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Stream/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime ExclusiveEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-exclusiveendtime Default: null KinesisConfigurationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-streamarn Default: null KinesisConfigurationAggregationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-aggregationenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' ExclusiveEndTime: !Ref 'ExclusiveEndTime' KinesisConfiguration: StreamArn: !Ref 'KinesisConfigurationStreamArn' AggregationEnabled: !Ref 'KinesisConfigurationAggregationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Stream/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime ExclusiveEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-exclusiveendtime Default: null KinesisConfigurationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-streamarn Default: null KinesisConfigurationAggregationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-aggregationenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' ExclusiveEndTime: !Ref 'ExclusiveEndTime' KinesisConfiguration: StreamArn: !Ref 'KinesisConfigurationStreamArn' AggregationEnabled: !Ref 'KinesisConfigurationAggregationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Stream/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime ExclusiveEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-exclusiveendtime Default: null KinesisConfigurationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-streamarn Default: null KinesisConfigurationAggregationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-aggregationenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' ExclusiveEndTime: !Ref 'ExclusiveEndTime' KinesisConfiguration: StreamArn: !Ref 'KinesisConfigurationStreamArn' AggregationEnabled: !Ref 'KinesisConfigurationAggregationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Stream/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime ExclusiveEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-exclusiveendtime Default: null KinesisConfigurationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-streamarn Default: null KinesisConfigurationAggregationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-aggregationenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' ExclusiveEndTime: !Ref 'ExclusiveEndTime' KinesisConfiguration: StreamArn: !Ref 'KinesisConfigurationStreamArn' AggregationEnabled: !Ref 'KinesisConfigurationAggregationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Stream/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime ExclusiveEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-exclusiveendtime Default: null KinesisConfigurationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-streamarn Default: null KinesisConfigurationAggregationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-aggregationenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' ExclusiveEndTime: !Ref 'ExclusiveEndTime' KinesisConfiguration: StreamArn: !Ref 'KinesisConfigurationStreamArn' AggregationEnabled: !Ref 'KinesisConfigurationAggregationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-QLDB-Stream/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime ExclusiveEndTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-exclusiveendtime Default: null KinesisConfigurationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-streamarn Default: null KinesisConfigurationAggregationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html#cfn-qldb-stream-kinesisconfiguration-aggregationenabled AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' ExclusiveEndTime: !Ref 'ExclusiveEndTime' KinesisConfiguration: StreamArn: !Ref 'KinesisConfigurationStreamArn' AggregationEnabled: !Ref 'KinesisConfigurationAggregationEnabled' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RAM-ResourceShare/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: AllowExternalPrincipals: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-allowexternalprincipals AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: AllowExternalPrincipals: !Ref 'AllowExternalPrincipals' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBCluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: BacktrackWindow: Type: Long Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backtrackwindow Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusteridentifier Default: null DBClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname Default: null DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deletionprotection AllowedValues: - 'true' - 'false' Default: null EnableHttpEndpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enablehttpendpoint AllowedValues: - 'true' - 'false' Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine EngineMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-enginemode Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow Default: null ReplicationSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier Default: null RestoreType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-restoretype Default: null ScalingConfigurationAutoPause: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-autopause AllowedValues: - 'true' - 'false' Default: null ScalingConfigurationMaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-maxcapacity Default: null ScalingConfigurationMinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-mincapacity Default: null ScalingConfigurationSecondsUntilAutoPause: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-scalingconfiguration.html#cfn-rds-dbcluster-scalingconfiguration-secondsuntilautopause Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier Default: null SourceDBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted AllowedValues: - 'true' - 'false' Default: null UseLatestRestorableTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-uselatestrestorabletime AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: BacktrackWindow: !Ref 'BacktrackWindow' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBClusterParameterGroupName: !Ref 'DBClusterParameterGroupName' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DatabaseName: !Ref 'DatabaseName' DeletionProtection: !Ref 'DeletionProtection' EnableHttpEndpoint: !Ref 'EnableHttpEndpoint' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' Engine: !Ref 'Engine' EngineMode: !Ref 'EngineMode' EngineVersion: !Ref 'EngineVersion' KmsKeyId: !Ref 'KmsKeyId' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' ReplicationSourceIdentifier: !Ref 'ReplicationSourceIdentifier' RestoreType: !Ref 'RestoreType' ScalingConfiguration: AutoPause: !Ref 'ScalingConfigurationAutoPause' MaxCapacity: !Ref 'ScalingConfigurationMaxCapacity' MinCapacity: !Ref 'ScalingConfigurationMinCapacity' SecondsUntilAutoPause: !Ref 'ScalingConfigurationSecondsUntilAutoPause' SnapshotIdentifier: !Ref 'SnapshotIdentifier' SourceDBClusterIdentifier: !Ref 'SourceDBClusterIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' UseLatestRestorableTime: !Ref 'UseLatestRestorableTime' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBInstance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: AllocatedStorage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage Default: null AllowMajorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade AllowedValues: - 'true' - 'false' Default: null AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade AllowedValues: - 'true' - 'false' Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone Default: null BackupRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod Default: null CACertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-cacertificateidentifier Default: null CharacterSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname Default: null CopyTagsToSnapshot: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot AllowedValues: - 'true' - 'false' Default: null DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier Default: null DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass DBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname Default: null DBParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname Default: null DBSnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier Default: null DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname Default: null DeleteAutomatedBackups: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deleteautomatedbackups AllowedValues: - 'true' - 'false' Default: null DeletionProtection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-deletionprotection AllowedValues: - 'true' - 'false' Default: null Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain Default: null DomainIAMRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename Default: null EnableIAMDatabaseAuthentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableiamdatabaseauthentication AllowedValues: - 'true' - 'false' Default: null EnablePerformanceInsights: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights AllowedValues: - 'true' - 'false' Default: null Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine Default: null EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion Default: null Iops: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid Default: null LicenseModel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword Default: null MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername Default: null MaxAllocatedStorage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage Default: null MonitoringInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval Default: null MonitoringRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn Default: null MultiAZ: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz AllowedValues: - 'true' - 'false' Default: null OptionGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname Default: null PerformanceInsightsKMSKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightskmskeyid Default: null PerformanceInsightsRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod Default: null Port: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port Default: null PreferredBackupWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow Default: null PromotionTier: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-promotiontier Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SourceDBInstanceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier Default: null SourceRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion Default: null StorageEncrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted AllowedValues: - 'true' - 'false' Default: null StorageType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype Default: null Timezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone Default: null UseDefaultProcessorFeatures: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-usedefaultprocessorfeatures AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: AllocatedStorage: !Ref 'AllocatedStorage' AllowMajorVersionUpgrade: !Ref 'AllowMajorVersionUpgrade' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' AvailabilityZone: !Ref 'AvailabilityZone' BackupRetentionPeriod: !Ref 'BackupRetentionPeriod' CACertificateIdentifier: !Ref 'CACertificateIdentifier' CharacterSetName: !Ref 'CharacterSetName' CopyTagsToSnapshot: !Ref 'CopyTagsToSnapshot' DBClusterIdentifier: !Ref 'DBClusterIdentifier' DBInstanceClass: !Ref 'DBInstanceClass' DBInstanceIdentifier: !Ref 'DBInstanceIdentifier' DBName: !Ref 'DBName' DBParameterGroupName: !Ref 'DBParameterGroupName' DBSnapshotIdentifier: !Ref 'DBSnapshotIdentifier' DBSubnetGroupName: !Ref 'DBSubnetGroupName' DeleteAutomatedBackups: !Ref 'DeleteAutomatedBackups' DeletionProtection: !Ref 'DeletionProtection' Domain: !Ref 'Domain' DomainIAMRoleName: !Ref 'DomainIAMRoleName' EnableIAMDatabaseAuthentication: !Ref 'EnableIAMDatabaseAuthentication' EnablePerformanceInsights: !Ref 'EnablePerformanceInsights' Engine: !Ref 'Engine' EngineVersion: !Ref 'EngineVersion' Iops: !Ref 'Iops' KmsKeyId: !Ref 'KmsKeyId' LicenseModel: !Ref 'LicenseModel' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' MaxAllocatedStorage: !Ref 'MaxAllocatedStorage' MonitoringInterval: !Ref 'MonitoringInterval' MonitoringRoleArn: !Ref 'MonitoringRoleArn' MultiAZ: !Ref 'MultiAZ' OptionGroupName: !Ref 'OptionGroupName' PerformanceInsightsKMSKeyId: !Ref 'PerformanceInsightsKMSKeyId' PerformanceInsightsRetentionPeriod: !Ref 'PerformanceInsightsRetentionPeriod' Port: !Ref 'Port' PreferredBackupWindow: !Ref 'PreferredBackupWindow' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PromotionTier: !Ref 'PromotionTier' PubliclyAccessible: !Ref 'PubliclyAccessible' SourceDBInstanceIdentifier: !Ref 'SourceDBInstanceIdentifier' SourceRegion: !Ref 'SourceRegion' StorageEncrypted: !Ref 'StorageEncrypted' StorageType: !Ref 'StorageType' Timezone: !Ref 'Timezone' UseDefaultProcessorFeatures: !Ref 'UseDefaultProcessorFeatures' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname DebugLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-debuglogging AllowedValues: - 'true' - 'false' Default: null EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily IdleClientTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-idleclienttimeout Default: null RequireTLS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-requiretls AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' DebugLogging: !Ref 'DebugLogging' EngineFamily: !Ref 'EngineFamily' IdleClientTimeout: !Ref 'IdleClientTimeout' RequireTLS: !Ref 'RequireTLS' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname DebugLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-debuglogging AllowedValues: - 'true' - 'false' Default: null EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily IdleClientTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-idleclienttimeout Default: null RequireTLS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-requiretls AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' DebugLogging: !Ref 'DebugLogging' EngineFamily: !Ref 'EngineFamily' IdleClientTimeout: !Ref 'IdleClientTimeout' RequireTLS: !Ref 'RequireTLS' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname DebugLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-debuglogging AllowedValues: - 'true' - 'false' Default: null EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily IdleClientTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-idleclienttimeout Default: null RequireTLS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-requiretls AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' DebugLogging: !Ref 'DebugLogging' EngineFamily: !Ref 'EngineFamily' IdleClientTimeout: !Ref 'IdleClientTimeout' RequireTLS: !Ref 'RequireTLS' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname DebugLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-debuglogging AllowedValues: - 'true' - 'false' Default: null EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily IdleClientTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-idleclienttimeout Default: null RequireTLS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-requiretls AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' DebugLogging: !Ref 'DebugLogging' EngineFamily: !Ref 'EngineFamily' IdleClientTimeout: !Ref 'IdleClientTimeout' RequireTLS: !Ref 'RequireTLS' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname DebugLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-debuglogging AllowedValues: - 'true' - 'false' Default: null EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily IdleClientTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-idleclienttimeout Default: null RequireTLS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-requiretls AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' DebugLogging: !Ref 'DebugLogging' EngineFamily: !Ref 'EngineFamily' IdleClientTimeout: !Ref 'IdleClientTimeout' RequireTLS: !Ref 'RequireTLS' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname DebugLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-debuglogging AllowedValues: - 'true' - 'false' Default: null EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily IdleClientTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-idleclienttimeout Default: null RequireTLS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-requiretls AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' DebugLogging: !Ref 'DebugLogging' EngineFamily: !Ref 'EngineFamily' IdleClientTimeout: !Ref 'IdleClientTimeout' RequireTLS: !Ref 'RequireTLS' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname DebugLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-debuglogging AllowedValues: - 'true' - 'false' Default: null EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily IdleClientTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-idleclienttimeout Default: null RequireTLS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-requiretls AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' DebugLogging: !Ref 'DebugLogging' EngineFamily: !Ref 'EngineFamily' IdleClientTimeout: !Ref 'IdleClientTimeout' RequireTLS: !Ref 'RequireTLS' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname DebugLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-debuglogging AllowedValues: - 'true' - 'false' Default: null EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily IdleClientTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-idleclienttimeout Default: null RequireTLS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-requiretls AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' DebugLogging: !Ref 'DebugLogging' EngineFamily: !Ref 'EngineFamily' IdleClientTimeout: !Ref 'IdleClientTimeout' RequireTLS: !Ref 'RequireTLS' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname DebugLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-debuglogging AllowedValues: - 'true' - 'false' Default: null EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily IdleClientTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-idleclienttimeout Default: null RequireTLS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-requiretls AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' DebugLogging: !Ref 'DebugLogging' EngineFamily: !Ref 'EngineFamily' IdleClientTimeout: !Ref 'IdleClientTimeout' RequireTLS: !Ref 'RequireTLS' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname DebugLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-debuglogging AllowedValues: - 'true' - 'false' Default: null EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily IdleClientTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-idleclienttimeout Default: null RequireTLS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-requiretls AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' DebugLogging: !Ref 'DebugLogging' EngineFamily: !Ref 'EngineFamily' IdleClientTimeout: !Ref 'IdleClientTimeout' RequireTLS: !Ref 'RequireTLS' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname DebugLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-debuglogging AllowedValues: - 'true' - 'false' Default: null EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily IdleClientTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-idleclienttimeout Default: null RequireTLS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-requiretls AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' DebugLogging: !Ref 'DebugLogging' EngineFamily: !Ref 'EngineFamily' IdleClientTimeout: !Ref 'IdleClientTimeout' RequireTLS: !Ref 'RequireTLS' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname DebugLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-debuglogging AllowedValues: - 'true' - 'false' Default: null EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily IdleClientTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-idleclienttimeout Default: null RequireTLS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-requiretls AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' DebugLogging: !Ref 'DebugLogging' EngineFamily: !Ref 'EngineFamily' IdleClientTimeout: !Ref 'IdleClientTimeout' RequireTLS: !Ref 'RequireTLS' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname DebugLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-debuglogging AllowedValues: - 'true' - 'false' Default: null EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily IdleClientTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-idleclienttimeout Default: null RequireTLS: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-requiretls AllowedValues: - 'true' - 'false' Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' DebugLogging: !Ref 'DebugLogging' EngineFamily: !Ref 'EngineFamily' IdleClientTimeout: !Ref 'IdleClientTimeout' RequireTLS: !Ref 'RequireTLS' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxidleconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-connectionborrowtimeout Default: null ConnectionPoolConfigurationInfoFormatInitQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-initquery Default: null Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' ConnectionPoolConfigurationInfo: MaxConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent' MaxIdleConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent' ConnectionBorrowTimeout: !Ref 'ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout' InitQuery: !Ref 'ConnectionPoolConfigurationInfoFormatInitQuery' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxidleconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-connectionborrowtimeout Default: null ConnectionPoolConfigurationInfoFormatInitQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-initquery Default: null Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' ConnectionPoolConfigurationInfo: MaxConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent' MaxIdleConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent' ConnectionBorrowTimeout: !Ref 'ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout' InitQuery: !Ref 'ConnectionPoolConfigurationInfoFormatInitQuery' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxidleconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-connectionborrowtimeout Default: null ConnectionPoolConfigurationInfoFormatInitQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-initquery Default: null Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' ConnectionPoolConfigurationInfo: MaxConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent' MaxIdleConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent' ConnectionBorrowTimeout: !Ref 'ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout' InitQuery: !Ref 'ConnectionPoolConfigurationInfoFormatInitQuery' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxidleconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-connectionborrowtimeout Default: null ConnectionPoolConfigurationInfoFormatInitQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-initquery Default: null Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' ConnectionPoolConfigurationInfo: MaxConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent' MaxIdleConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent' ConnectionBorrowTimeout: !Ref 'ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout' InitQuery: !Ref 'ConnectionPoolConfigurationInfoFormatInitQuery' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxidleconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-connectionborrowtimeout Default: null ConnectionPoolConfigurationInfoFormatInitQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-initquery Default: null Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' ConnectionPoolConfigurationInfo: MaxConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent' MaxIdleConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent' ConnectionBorrowTimeout: !Ref 'ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout' InitQuery: !Ref 'ConnectionPoolConfigurationInfoFormatInitQuery' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxidleconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-connectionborrowtimeout Default: null ConnectionPoolConfigurationInfoFormatInitQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-initquery Default: null Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' ConnectionPoolConfigurationInfo: MaxConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent' MaxIdleConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent' ConnectionBorrowTimeout: !Ref 'ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout' InitQuery: !Ref 'ConnectionPoolConfigurationInfoFormatInitQuery' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxidleconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-connectionborrowtimeout Default: null ConnectionPoolConfigurationInfoFormatInitQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-initquery Default: null Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' ConnectionPoolConfigurationInfo: MaxConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent' MaxIdleConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent' ConnectionBorrowTimeout: !Ref 'ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout' InitQuery: !Ref 'ConnectionPoolConfigurationInfoFormatInitQuery' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxidleconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-connectionborrowtimeout Default: null ConnectionPoolConfigurationInfoFormatInitQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-initquery Default: null Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' ConnectionPoolConfigurationInfo: MaxConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent' MaxIdleConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent' ConnectionBorrowTimeout: !Ref 'ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout' InitQuery: !Ref 'ConnectionPoolConfigurationInfoFormatInitQuery' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxidleconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-connectionborrowtimeout Default: null ConnectionPoolConfigurationInfoFormatInitQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-initquery Default: null Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' ConnectionPoolConfigurationInfo: MaxConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent' MaxIdleConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent' ConnectionBorrowTimeout: !Ref 'ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout' InitQuery: !Ref 'ConnectionPoolConfigurationInfoFormatInitQuery' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxidleconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-connectionborrowtimeout Default: null ConnectionPoolConfigurationInfoFormatInitQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-initquery Default: null Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' ConnectionPoolConfigurationInfo: MaxConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent' MaxIdleConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent' ConnectionBorrowTimeout: !Ref 'ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout' InitQuery: !Ref 'ConnectionPoolConfigurationInfoFormatInitQuery' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxidleconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-connectionborrowtimeout Default: null ConnectionPoolConfigurationInfoFormatInitQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-initquery Default: null Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' ConnectionPoolConfigurationInfo: MaxConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent' MaxIdleConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent' ConnectionBorrowTimeout: !Ref 'ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout' InitQuery: !Ref 'ConnectionPoolConfigurationInfoFormatInitQuery' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxidleconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-connectionborrowtimeout Default: null ConnectionPoolConfigurationInfoFormatInitQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-initquery Default: null Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' ConnectionPoolConfigurationInfo: MaxConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent' MaxIdleConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent' ConnectionBorrowTimeout: !Ref 'ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout' InitQuery: !Ref 'ConnectionPoolConfigurationInfoFormatInitQuery' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-maxidleconnectionspercent Default: null ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-connectionborrowtimeout Default: null ConnectionPoolConfigurationInfoFormatInitQuery: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfoformat-initquery Default: null Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' ConnectionPoolConfigurationInfo: MaxConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxConnectionsPercent' MaxIdleConnectionsPercent: !Ref 'ConnectionPoolConfigurationInfoFormatMaxIdleConnectionsPercent' ConnectionBorrowTimeout: !Ref 'ConnectionPoolConfigurationInfoFormatConnectionBorrowTimeout' InitQuery: !Ref 'ConnectionPoolConfigurationInfoFormatInitQuery' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: EC2VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid Default: null GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: EC2VpcId: !Ref 'EC2VpcId' GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip Default: null DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname EC2SecurityGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid Default: null EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: CIDRIP: !Ref 'CIDRIP' DBSecurityGroupName: !Ref 'DBSecurityGroupName' EC2SecurityGroupId: !Ref 'EC2SecurityGroupId' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-DBSubnetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription DBSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname Default: null Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' DBSubnetGroupName: !Ref 'DBSubnetGroupName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-EventSubscription/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled AllowedValues: - 'true' - 'false' Default: null SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype Default: null Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: Enabled: !Ref 'Enabled' SnsTopicArn: !Ref 'SnsTopicArn' SourceType: !Ref 'SourceType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RDS-OptionGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-Cluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: AllowVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade AllowedValues: - 'true' - 'false' Default: null AutomatedSnapshotRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod Default: null AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone Default: null ClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusteridentifier Default: null ClusterParameterGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname Default: null ClusterSubnetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname Default: null ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype ClusterVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion Default: null DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname ElasticIp: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip Default: null Encrypted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted AllowedValues: - 'true' - 'false' Default: null HsmClientCertificateIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier Default: null HsmConfigurationIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid Default: null LoggingPropertiesBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname LoggingPropertiesS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix Default: null MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype NumberOfNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Default: null OwnerAccount: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount Default: null Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port Default: null PreferredMaintenanceWindow: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow Default: null PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible AllowedValues: - 'true' - 'false' Default: null SnapshotClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier Default: null SnapshotIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier Default: null Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: AllowVersionUpgrade: !Ref 'AllowVersionUpgrade' AutomatedSnapshotRetentionPeriod: !Ref 'AutomatedSnapshotRetentionPeriod' AvailabilityZone: !Ref 'AvailabilityZone' ClusterIdentifier: !Ref 'ClusterIdentifier' ClusterParameterGroupName: !Ref 'ClusterParameterGroupName' ClusterSubnetGroupName: !Ref 'ClusterSubnetGroupName' ClusterType: !Ref 'ClusterType' ClusterVersion: !Ref 'ClusterVersion' DBName: !Ref 'DBName' ElasticIp: !Ref 'ElasticIp' Encrypted: !Ref 'Encrypted' HsmClientCertificateIdentifier: !Ref 'HsmClientCertificateIdentifier' HsmConfigurationIdentifier: !Ref 'HsmConfigurationIdentifier' KmsKeyId: !Ref 'KmsKeyId' LoggingProperties: BucketName: !Ref 'LoggingPropertiesBucketName' S3KeyPrefix: !Ref 'LoggingPropertiesS3KeyPrefix' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' NumberOfNodes: !Ref 'NumberOfNodes' OwnerAccount: !Ref 'OwnerAccount' Port: !Ref 'Port' PreferredMaintenanceWindow: !Ref 'PreferredMaintenanceWindow' PubliclyAccessible: !Ref 'PubliclyAccessible' SnapshotClusterIdentifier: !Ref 'SnapshotClusterIdentifier' SnapshotIdentifier: !Ref 'SnapshotIdentifier' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: CIDRIP: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip Default: null ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname Default: null EC2SecurityGroupOwnerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid Default: null Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: CIDRIP: !Ref 'CIDRIP' ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' EC2SecurityGroupOwnerId: !Ref 'EC2SecurityGroupOwnerId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ResourceGroups-Group/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-description Default: null ResourceQueryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-resourcequery.html#cfn-resourcegroups-group-resourcequery-type Default: null ResourceQueryQueryStackIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-query.html#cfn-resourcegroups-group-query-stackidentifier Default: null Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Description: !Ref 'Description' ResourceQuery: Type: !Ref 'ResourceQueryType' Query: StackIdentifier: !Ref 'ResourceQueryQueryStackIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-Fleet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-name Default: null Resources: Resource: Type: AWS::RoboMaker::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Properties: Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-Fleet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-name Default: null Resources: Resource: Type: AWS::RoboMaker::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Properties: Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-Fleet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-name Default: null Resources: Resource: Type: AWS::RoboMaker::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Properties: Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-Fleet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-name Default: null Resources: Resource: Type: AWS::RoboMaker::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Properties: Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-Fleet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-name Default: null Resources: Resource: Type: AWS::RoboMaker::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Properties: Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-Fleet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-name Default: null Resources: Resource: Type: AWS::RoboMaker::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Properties: Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-Fleet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-name Default: null Resources: Resource: Type: AWS::RoboMaker::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Properties: Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-Robot/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Parameters: Fleet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-fleet Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture GreengrassGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-name Default: null Resources: Resource: Type: AWS::RoboMaker::Robot Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Properties: Fleet: !Ref 'Fleet' Architecture: !Ref 'Architecture' GreengrassGroupId: !Ref 'GreengrassGroupId' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-Robot/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Parameters: Fleet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-fleet Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture GreengrassGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-name Default: null Resources: Resource: Type: AWS::RoboMaker::Robot Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Properties: Fleet: !Ref 'Fleet' Architecture: !Ref 'Architecture' GreengrassGroupId: !Ref 'GreengrassGroupId' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-Robot/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Parameters: Fleet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-fleet Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture GreengrassGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-name Default: null Resources: Resource: Type: AWS::RoboMaker::Robot Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Properties: Fleet: !Ref 'Fleet' Architecture: !Ref 'Architecture' GreengrassGroupId: !Ref 'GreengrassGroupId' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-Robot/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Parameters: Fleet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-fleet Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture GreengrassGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-name Default: null Resources: Resource: Type: AWS::RoboMaker::Robot Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Properties: Fleet: !Ref 'Fleet' Architecture: !Ref 'Architecture' GreengrassGroupId: !Ref 'GreengrassGroupId' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-Robot/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Parameters: Fleet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-fleet Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture GreengrassGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-name Default: null Resources: Resource: Type: AWS::RoboMaker::Robot Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Properties: Fleet: !Ref 'Fleet' Architecture: !Ref 'Architecture' GreengrassGroupId: !Ref 'GreengrassGroupId' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-Robot/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Parameters: Fleet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-fleet Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture GreengrassGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-name Default: null Resources: Resource: Type: AWS::RoboMaker::Robot Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Properties: Fleet: !Ref 'Fleet' Architecture: !Ref 'Architecture' GreengrassGroupId: !Ref 'GreengrassGroupId' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-Robot/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Parameters: Fleet: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-fleet Default: null Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture GreengrassGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-name Default: null Resources: Resource: Type: AWS::RoboMaker::Robot Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Properties: Fleet: !Ref 'Fleet' Architecture: !Ref 'Architecture' GreengrassGroupId: !Ref 'GreengrassGroupId' Tags: !Ref 'Tags' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-RobotApplication/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-currentrevisionid Default: null RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-name Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-name Default: null Resources: Resource: Type: AWS::RoboMaker::RobotApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-RobotApplication/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-currentrevisionid Default: null RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-name Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-name Default: null Resources: Resource: Type: AWS::RoboMaker::RobotApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-RobotApplication/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-currentrevisionid Default: null RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-name Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-name Default: null Resources: Resource: Type: AWS::RoboMaker::RobotApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-RobotApplication/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-currentrevisionid Default: null RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-name Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-name Default: null Resources: Resource: Type: AWS::RoboMaker::RobotApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-RobotApplication/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-currentrevisionid Default: null RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-name Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-name Default: null Resources: Resource: Type: AWS::RoboMaker::RobotApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-RobotApplication/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-currentrevisionid Default: null RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-name Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-name Default: null Resources: Resource: Type: AWS::RoboMaker::RobotApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-RobotApplication/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-currentrevisionid Default: null RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-name Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-name Default: null Resources: Resource: Type: AWS::RoboMaker::RobotApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-RobotApplicationVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-currentrevisionid Default: null Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::RobotApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-RobotApplicationVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-currentrevisionid Default: null Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::RobotApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-RobotApplicationVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-currentrevisionid Default: null Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::RobotApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-RobotApplicationVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-currentrevisionid Default: null Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::RobotApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-RobotApplicationVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-currentrevisionid Default: null Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::RobotApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-RobotApplicationVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-currentrevisionid Default: null Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::RobotApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-RobotApplicationVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-currentrevisionid Default: null Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::RobotApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-SimulationApplication/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Parameters: RenderingEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version RenderingEngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name SimulationSoftwareSuiteVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-version SimulationSoftwareSuiteName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-name CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-currentrevisionid Default: null RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-name Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-name Default: null Resources: Resource: Type: AWS::RoboMaker::SimulationApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Properties: RenderingEngine: Version: !Ref 'RenderingEngineVersion' Name: !Ref 'RenderingEngineName' SimulationSoftwareSuite: Version: !Ref 'SimulationSoftwareSuiteVersion' Name: !Ref 'SimulationSoftwareSuiteName' CurrentRevisionId: !Ref 'CurrentRevisionId' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-SimulationApplication/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Parameters: RenderingEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version RenderingEngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name SimulationSoftwareSuiteVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-version SimulationSoftwareSuiteName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-name CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-currentrevisionid Default: null RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-name Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-name Default: null Resources: Resource: Type: AWS::RoboMaker::SimulationApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Properties: RenderingEngine: Version: !Ref 'RenderingEngineVersion' Name: !Ref 'RenderingEngineName' SimulationSoftwareSuite: Version: !Ref 'SimulationSoftwareSuiteVersion' Name: !Ref 'SimulationSoftwareSuiteName' CurrentRevisionId: !Ref 'CurrentRevisionId' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-SimulationApplication/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Parameters: RenderingEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version RenderingEngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name SimulationSoftwareSuiteVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-version SimulationSoftwareSuiteName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-name CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-currentrevisionid Default: null RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-name Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-name Default: null Resources: Resource: Type: AWS::RoboMaker::SimulationApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Properties: RenderingEngine: Version: !Ref 'RenderingEngineVersion' Name: !Ref 'RenderingEngineName' SimulationSoftwareSuite: Version: !Ref 'SimulationSoftwareSuiteVersion' Name: !Ref 'SimulationSoftwareSuiteName' CurrentRevisionId: !Ref 'CurrentRevisionId' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-SimulationApplication/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Parameters: RenderingEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version RenderingEngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name SimulationSoftwareSuiteVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-version SimulationSoftwareSuiteName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-name CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-currentrevisionid Default: null RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-name Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-name Default: null Resources: Resource: Type: AWS::RoboMaker::SimulationApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Properties: RenderingEngine: Version: !Ref 'RenderingEngineVersion' Name: !Ref 'RenderingEngineName' SimulationSoftwareSuite: Version: !Ref 'SimulationSoftwareSuiteVersion' Name: !Ref 'SimulationSoftwareSuiteName' CurrentRevisionId: !Ref 'CurrentRevisionId' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-SimulationApplication/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Parameters: RenderingEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version RenderingEngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name SimulationSoftwareSuiteVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-version SimulationSoftwareSuiteName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-name CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-currentrevisionid Default: null RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-name Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-name Default: null Resources: Resource: Type: AWS::RoboMaker::SimulationApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Properties: RenderingEngine: Version: !Ref 'RenderingEngineVersion' Name: !Ref 'RenderingEngineName' SimulationSoftwareSuite: Version: !Ref 'SimulationSoftwareSuiteVersion' Name: !Ref 'SimulationSoftwareSuiteName' CurrentRevisionId: !Ref 'CurrentRevisionId' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-SimulationApplication/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Parameters: RenderingEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version RenderingEngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name SimulationSoftwareSuiteVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-version SimulationSoftwareSuiteName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-name CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-currentrevisionid Default: null RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-name Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-name Default: null Resources: Resource: Type: AWS::RoboMaker::SimulationApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Properties: RenderingEngine: Version: !Ref 'RenderingEngineVersion' Name: !Ref 'RenderingEngineName' SimulationSoftwareSuite: Version: !Ref 'SimulationSoftwareSuiteVersion' Name: !Ref 'SimulationSoftwareSuiteName' CurrentRevisionId: !Ref 'CurrentRevisionId' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-SimulationApplication/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Parameters: RenderingEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version RenderingEngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name SimulationSoftwareSuiteVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-version SimulationSoftwareSuiteName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-name CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-currentrevisionid Default: null RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-name Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-name Default: null Resources: Resource: Type: AWS::RoboMaker::SimulationApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Properties: RenderingEngine: Version: !Ref 'RenderingEngineVersion' Name: !Ref 'RenderingEngineName' SimulationSoftwareSuite: Version: !Ref 'SimulationSoftwareSuiteVersion' Name: !Ref 'SimulationSoftwareSuiteName' CurrentRevisionId: !Ref 'CurrentRevisionId' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-SimulationApplicationVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-currentrevisionid Default: null Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::SimulationApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-SimulationApplicationVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-currentrevisionid Default: null Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::SimulationApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-SimulationApplicationVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-currentrevisionid Default: null Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::SimulationApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-SimulationApplicationVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-currentrevisionid Default: null Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::SimulationApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-SimulationApplicationVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-currentrevisionid Default: null Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::SimulationApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-SimulationApplicationVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-currentrevisionid Default: null Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::SimulationApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-RoboMaker-SimulationApplicationVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Parameters: CurrentRevisionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-currentrevisionid Default: null Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::SimulationApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Properties: CurrentRevisionId: !Ref 'CurrentRevisionId' Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HealthCheck/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigAlarmIdentifierName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name HealthCheckConfigAlarmIdentifierRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region HealthCheckConfigEnableSNI: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigFailureThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold Default: null HealthCheckConfigFullyQualifiedDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname Default: null HealthCheckConfigHealthThreshold: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold Default: null HealthCheckConfigIPAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress Default: null HealthCheckConfigInsufficientDataHealthStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus Default: null HealthCheckConfigInverted: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigMeasureLatency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency AllowedValues: - 'true' - 'false' Default: null HealthCheckConfigPort: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port Default: null HealthCheckConfigRequestInterval: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval Default: null HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath Default: null HealthCheckConfigSearchString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: AlarmIdentifier: Name: !Ref 'HealthCheckConfigAlarmIdentifierName' Region: !Ref 'HealthCheckConfigAlarmIdentifierRegion' EnableSNI: !Ref 'HealthCheckConfigEnableSNI' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' FullyQualifiedDomainName: !Ref 'HealthCheckConfigFullyQualifiedDomainName' HealthThreshold: !Ref 'HealthCheckConfigHealthThreshold' IPAddress: !Ref 'HealthCheckConfigIPAddress' InsufficientDataHealthStatus: !Ref 'HealthCheckConfigInsufficientDataHealthStatus' Inverted: !Ref 'HealthCheckConfigInverted' MeasureLatency: !Ref 'HealthCheckConfigMeasureLatency' Port: !Ref 'HealthCheckConfigPort' RequestInterval: !Ref 'HealthCheckConfigRequestInterval' ResourcePath: !Ref 'HealthCheckConfigResourcePath' SearchString: !Ref 'HealthCheckConfigSearchString' Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-HostedZone/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: HostedZoneConfigComment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name QueryLoggingConfigCloudWatchLogsLogGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: HostedZoneConfig: Comment: !Ref 'HostedZoneConfigComment' Name: !Ref 'Name' QueryLoggingConfig: CloudWatchLogsLogGroupArn: !Ref 'QueryLoggingConfigCloudWatchLogsLogGroupArn' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: AliasTargetDNSName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname AliasTargetEvaluateTargetHealth: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth AllowedValues: - 'true' - 'false' Default: null AliasTargetHostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment Default: null Failover: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover Default: null GeoLocationContinentCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode Default: null GeoLocationCountryCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode Default: null GeoLocationSubdivisionCode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode Default: null HealthCheckId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename Default: null MultiValueAnswer: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region Default: null SetIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier Default: null TTL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl Default: null Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Weight: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight Default: null Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: AliasTarget: DNSName: !Ref 'AliasTargetDNSName' EvaluateTargetHealth: !Ref 'AliasTargetEvaluateTargetHealth' HostedZoneId: !Ref 'AliasTargetHostedZoneId' Comment: !Ref 'Comment' Failover: !Ref 'Failover' GeoLocation: ContinentCode: !Ref 'GeoLocationContinentCode' CountryCode: !Ref 'GeoLocationCountryCode' SubdivisionCode: !Ref 'GeoLocationSubdivisionCode' HealthCheckId: !Ref 'HealthCheckId' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' MultiValueAnswer: !Ref 'MultiValueAnswer' Name: !Ref 'Name' Region: !Ref 'Region' SetIdentifier: !Ref 'SetIdentifier' TTL: !Ref 'TTL' Type: !Ref 'Type' Weight: !Ref 'Weight' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53-RecordSetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Parameters: Comment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment Default: null HostedZoneId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid Default: null HostedZoneName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename Default: null Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Properties: Comment: !Ref 'Comment' HostedZoneId: !Ref 'HostedZoneId' HostedZoneName: !Ref 'HostedZoneName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: ResolverEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-resolverendpointid Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: ResolverEndpointId: !Ref 'ResolverEndpointId' DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: ResolverEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-resolverendpointid Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: ResolverEndpointId: !Ref 'ResolverEndpointId' DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: ResolverEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-resolverendpointid Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: ResolverEndpointId: !Ref 'ResolverEndpointId' DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: ResolverEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-resolverendpointid Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: ResolverEndpointId: !Ref 'ResolverEndpointId' DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: ResolverEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-resolverendpointid Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: ResolverEndpointId: !Ref 'ResolverEndpointId' DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: ResolverEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-resolverendpointid Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: ResolverEndpointId: !Ref 'ResolverEndpointId' DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: ResolverEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-resolverendpointid Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: ResolverEndpointId: !Ref 'ResolverEndpointId' DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: ResolverEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-resolverendpointid Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: ResolverEndpointId: !Ref 'ResolverEndpointId' DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: ResolverEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-resolverendpointid Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: ResolverEndpointId: !Ref 'ResolverEndpointId' DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: ResolverEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-resolverendpointid Default: null DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: ResolverEndpointId: !Ref 'ResolverEndpointId' DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Name: !Ref 'Name' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Name: !Ref 'Name' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Name: !Ref 'Name' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Name: !Ref 'Name' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Name: !Ref 'Name' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Name: !Ref 'Name' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Name: !Ref 'Name' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Name: !Ref 'Name' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Name: !Ref 'Name' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Name: !Ref 'Name' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Name: !Ref 'Name' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-name Default: null Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Name: !Ref 'Name' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-AccessPoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-name Default: null Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket VpcConfigurationVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-vpcconfiguration.html#cfn-s3-accesspoint-vpcconfiguration-vpcid Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-publicaccessblockconfiguration.html#cfn-s3-accesspoint-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policy Default: null PolicyStatus: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-policystatus Default: null NetworkOrigin: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-networkorigin Default: null CreationDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-creationdate Default: null Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Name: !Ref 'Name' Bucket: !Ref 'Bucket' VpcConfiguration: VpcId: !Ref 'VpcConfigurationVpcId' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' Policy: !Ref 'Policy' PolicyStatus: !Ref 'PolicyStatus' NetworkOrigin: !Ref 'NetworkOrigin' CreationDate: !Ref 'CreationDate' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-Bucket/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Parameters: AccelerateConfigurationAccelerationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accelerateconfiguration.html#cfn-s3-bucket-accelerateconfiguration-accelerationstatus AccessControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-accesscontrol Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-name Default: null LoggingConfigurationDestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-destinationbucketname Default: null LoggingConfigurationLogFilePrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-loggingconfig.html#cfn-s3-bucket-loggingconfig-logfileprefix Default: null ObjectLockConfigurationObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-objectlockconfiguration.html#cfn-s3-bucket-objectlockconfiguration-objectlockenabled Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionDays: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-days Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-mode Default: null ObjectLockConfigurationObjectLockRuleDefaultRetentionYears: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html#cfn-s3-bucket-defaultretention-years Default: null ObjectLockEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html#cfn-s3-bucket-objectlockenabled AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationBlockPublicPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-blockpublicpolicy AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationIgnorePublicAcls: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-ignorepublicacls AllowedValues: - 'true' - 'false' Default: null PublicAccessBlockConfigurationRestrictPublicBuckets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html#cfn-s3-bucket-publicaccessblockconfiguration-restrictpublicbuckets AllowedValues: - 'true' - 'false' Default: null ReplicationConfigurationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationconfiguration.html#cfn-s3-bucket-replicationconfiguration-role VersioningConfigurationStatus: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfig.html#cfn-s3-bucket-versioningconfig-status WebsiteConfigurationErrorDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-errordocument Default: null WebsiteConfigurationIndexDocument: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration.html#cfn-s3-websiteconfiguration-indexdocument Default: null WebsiteConfigurationRedirectAllRequestsToHostName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-hostname WebsiteConfigurationRedirectAllRequestsToProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-redirectallrequeststo.html#cfn-s3-websiteconfiguration-redirectallrequeststo-protocol Default: null Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Properties: AccelerateConfiguration: AccelerationStatus: !Ref 'AccelerateConfigurationAccelerationStatus' AccessControl: !Ref 'AccessControl' BucketEncryption: {} BucketName: !Ref 'BucketName' CorsConfiguration: {} LifecycleConfiguration: {} LoggingConfiguration: DestinationBucketName: !Ref 'LoggingConfigurationDestinationBucketName' LogFilePrefix: !Ref 'LoggingConfigurationLogFilePrefix' NotificationConfiguration: {} ObjectLockConfiguration: ObjectLockEnabled: !Ref 'ObjectLockConfigurationObjectLockEnabled' Rule: DefaultRetention: Days: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionDays' Mode: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionMode' Years: !Ref 'ObjectLockConfigurationObjectLockRuleDefaultRetentionYears' ObjectLockEnabled: !Ref 'ObjectLockEnabled' PublicAccessBlockConfiguration: BlockPublicAcls: !Ref 'PublicAccessBlockConfigurationBlockPublicAcls' BlockPublicPolicy: !Ref 'PublicAccessBlockConfigurationBlockPublicPolicy' IgnorePublicAcls: !Ref 'PublicAccessBlockConfigurationIgnorePublicAcls' RestrictPublicBuckets: !Ref 'PublicAccessBlockConfigurationRestrictPublicBuckets' ReplicationConfiguration: Role: !Ref 'ReplicationConfigurationRole' VersioningConfiguration: Status: !Ref 'VersioningConfigurationStatus' WebsiteConfiguration: ErrorDocument: !Ref 'WebsiteConfigurationErrorDocument' IndexDocument: !Ref 'WebsiteConfigurationIndexDocument' RedirectAllRequestsTo: HostName: !Ref 'WebsiteConfigurationRedirectAllRequestsToHostName' Protocol: !Ref 'WebsiteConfigurationRedirectAllRequestsToProtocol' Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-S3-BucketPolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SDB-Domain/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description Default: null Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ConfigurationSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html#cfn-ses-configurationset-name Default: null Resources: Resource: Type: AWS::SES::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ConfigurationSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html#cfn-ses-configurationset-name Default: null Resources: Resource: Type: AWS::SES::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ConfigurationSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html#cfn-ses-configurationset-name Default: null Resources: Resource: Type: AWS::SES::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ConfigurationSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html#cfn-ses-configurationset-name Default: null Resources: Resource: Type: AWS::SES::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ConfigurationSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html#cfn-ses-configurationset-name Default: null Resources: Resource: Type: AWS::SES::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ConfigurationSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html#cfn-ses-configurationset-name Default: null Resources: Resource: Type: AWS::SES::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ConfigurationSetEventDestination/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html Parameters: ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html#cfn-ses-configurationseteventdestination-configurationsetname EventDestinationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-eventdestination.html#cfn-ses-configurationseteventdestination-eventdestination-enabled AllowedValues: - 'true' - 'false' Default: null EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-eventdestination.html#cfn-ses-configurationseteventdestination-eventdestination-name Default: null EventDestinationKinesisFirehoseDestinationIAMRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-kinesisfirehosedestination.html#cfn-ses-configurationseteventdestination-kinesisfirehosedestination-iamrolearn EventDestinationKinesisFirehoseDestinationDeliveryStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-kinesisfirehosedestination.html#cfn-ses-configurationseteventdestination-kinesisfirehosedestination-deliverystreamarn Resources: Resource: Type: AWS::SES::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html Properties: ConfigurationSetName: !Ref 'ConfigurationSetName' EventDestination: CloudWatchDestination: {} Enabled: !Ref 'EventDestinationEnabled' Name: !Ref 'EventDestinationName' KinesisFirehoseDestination: IAMRoleARN: !Ref 'EventDestinationKinesisFirehoseDestinationIAMRoleARN' DeliveryStreamARN: !Ref 'EventDestinationKinesisFirehoseDestinationDeliveryStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ConfigurationSetEventDestination/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html Parameters: ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html#cfn-ses-configurationseteventdestination-configurationsetname EventDestinationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-eventdestination.html#cfn-ses-configurationseteventdestination-eventdestination-enabled AllowedValues: - 'true' - 'false' Default: null EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-eventdestination.html#cfn-ses-configurationseteventdestination-eventdestination-name Default: null EventDestinationKinesisFirehoseDestinationIAMRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-kinesisfirehosedestination.html#cfn-ses-configurationseteventdestination-kinesisfirehosedestination-iamrolearn EventDestinationKinesisFirehoseDestinationDeliveryStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-kinesisfirehosedestination.html#cfn-ses-configurationseteventdestination-kinesisfirehosedestination-deliverystreamarn Resources: Resource: Type: AWS::SES::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html Properties: ConfigurationSetName: !Ref 'ConfigurationSetName' EventDestination: CloudWatchDestination: {} Enabled: !Ref 'EventDestinationEnabled' Name: !Ref 'EventDestinationName' KinesisFirehoseDestination: IAMRoleARN: !Ref 'EventDestinationKinesisFirehoseDestinationIAMRoleARN' DeliveryStreamARN: !Ref 'EventDestinationKinesisFirehoseDestinationDeliveryStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ConfigurationSetEventDestination/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html Parameters: ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html#cfn-ses-configurationseteventdestination-configurationsetname EventDestinationEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-eventdestination.html#cfn-ses-configurationseteventdestination-eventdestination-enabled AllowedValues: - 'true' - 'false' Default: null EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-eventdestination.html#cfn-ses-configurationseteventdestination-eventdestination-name Default: null EventDestinationKinesisFirehoseDestinationIAMRoleARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-kinesisfirehosedestination.html#cfn-ses-configurationseteventdestination-kinesisfirehosedestination-iamrolearn EventDestinationKinesisFirehoseDestinationDeliveryStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-kinesisfirehosedestination.html#cfn-ses-configurationseteventdestination-kinesisfirehosedestination-deliverystreamarn Resources: Resource: Type: AWS::SES::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html Properties: ConfigurationSetName: !Ref 'ConfigurationSetName' EventDestination: CloudWatchDestination: {} Enabled: !Ref 'EventDestinationEnabled' Name: !Ref 'EventDestinationName' KinesisFirehoseDestination: IAMRoleARN: !Ref 'EventDestinationKinesisFirehoseDestinationIAMRoleARN' DeliveryStreamARN: !Ref 'EventDestinationKinesisFirehoseDestinationDeliveryStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ReceiptFilter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html Parameters: FilterIpFilterPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-ipfilter.html#cfn-ses-receiptfilter-ipfilter-policy FilterIpFilterCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-ipfilter.html#cfn-ses-receiptfilter-ipfilter-cidr FilterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-filter.html#cfn-ses-receiptfilter-filter-name Default: null Resources: Resource: Type: AWS::SES::ReceiptFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html Properties: Filter: IpFilter: Policy: !Ref 'FilterIpFilterPolicy' Cidr: !Ref 'FilterIpFilterCidr' Name: !Ref 'FilterName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ReceiptFilter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html Parameters: FilterIpFilterPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-ipfilter.html#cfn-ses-receiptfilter-ipfilter-policy FilterIpFilterCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-ipfilter.html#cfn-ses-receiptfilter-ipfilter-cidr FilterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-filter.html#cfn-ses-receiptfilter-filter-name Default: null Resources: Resource: Type: AWS::SES::ReceiptFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html Properties: Filter: IpFilter: Policy: !Ref 'FilterIpFilterPolicy' Cidr: !Ref 'FilterIpFilterCidr' Name: !Ref 'FilterName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ReceiptFilter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html Parameters: FilterIpFilterPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-ipfilter.html#cfn-ses-receiptfilter-ipfilter-policy FilterIpFilterCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-ipfilter.html#cfn-ses-receiptfilter-ipfilter-cidr FilterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-filter.html#cfn-ses-receiptfilter-filter-name Default: null Resources: Resource: Type: AWS::SES::ReceiptFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html Properties: Filter: IpFilter: Policy: !Ref 'FilterIpFilterPolicy' Cidr: !Ref 'FilterIpFilterCidr' Name: !Ref 'FilterName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ReceiptRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html Parameters: After: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html#cfn-ses-receiptrule-after Default: null RuleScanEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-rule.html#cfn-ses-receiptrule-rule-scanenabled AllowedValues: - 'true' - 'false' Default: null RuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-rule.html#cfn-ses-receiptrule-rule-enabled AllowedValues: - 'true' - 'false' Default: null RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-rule.html#cfn-ses-receiptrule-rule-name Default: null RuleTlsPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-rule.html#cfn-ses-receiptrule-rule-tlspolicy Default: null RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html#cfn-ses-receiptrule-rulesetname Resources: Resource: Type: AWS::SES::ReceiptRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html Properties: After: !Ref 'After' Rule: ScanEnabled: !Ref 'RuleScanEnabled' Enabled: !Ref 'RuleEnabled' Name: !Ref 'RuleName' TlsPolicy: !Ref 'RuleTlsPolicy' RuleSetName: !Ref 'RuleSetName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ReceiptRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html Parameters: After: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html#cfn-ses-receiptrule-after Default: null RuleScanEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-rule.html#cfn-ses-receiptrule-rule-scanenabled AllowedValues: - 'true' - 'false' Default: null RuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-rule.html#cfn-ses-receiptrule-rule-enabled AllowedValues: - 'true' - 'false' Default: null RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-rule.html#cfn-ses-receiptrule-rule-name Default: null RuleTlsPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-rule.html#cfn-ses-receiptrule-rule-tlspolicy Default: null RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html#cfn-ses-receiptrule-rulesetname Resources: Resource: Type: AWS::SES::ReceiptRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html Properties: After: !Ref 'After' Rule: ScanEnabled: !Ref 'RuleScanEnabled' Enabled: !Ref 'RuleEnabled' Name: !Ref 'RuleName' TlsPolicy: !Ref 'RuleTlsPolicy' RuleSetName: !Ref 'RuleSetName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ReceiptRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html Parameters: After: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html#cfn-ses-receiptrule-after Default: null RuleScanEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-rule.html#cfn-ses-receiptrule-rule-scanenabled AllowedValues: - 'true' - 'false' Default: null RuleEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-rule.html#cfn-ses-receiptrule-rule-enabled AllowedValues: - 'true' - 'false' Default: null RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-rule.html#cfn-ses-receiptrule-rule-name Default: null RuleTlsPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-rule.html#cfn-ses-receiptrule-rule-tlspolicy Default: null RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html#cfn-ses-receiptrule-rulesetname Resources: Resource: Type: AWS::SES::ReceiptRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html Properties: After: !Ref 'After' Rule: ScanEnabled: !Ref 'RuleScanEnabled' Enabled: !Ref 'RuleEnabled' Name: !Ref 'RuleName' TlsPolicy: !Ref 'RuleTlsPolicy' RuleSetName: !Ref 'RuleSetName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ReceiptRuleSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html Parameters: RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html#cfn-ses-receiptruleset-rulesetname Default: null Resources: Resource: Type: AWS::SES::ReceiptRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html Properties: RuleSetName: !Ref 'RuleSetName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ReceiptRuleSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html Parameters: RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html#cfn-ses-receiptruleset-rulesetname Default: null Resources: Resource: Type: AWS::SES::ReceiptRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html Properties: RuleSetName: !Ref 'RuleSetName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-ReceiptRuleSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html Parameters: RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html#cfn-ses-receiptruleset-rulesetname Default: null Resources: Resource: Type: AWS::SES::ReceiptRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html Properties: RuleSetName: !Ref 'RuleSetName' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-Template/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html Parameters: TemplateHtmlPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html#cfn-ses-template-template-htmlpart Default: null TemplateTextPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html#cfn-ses-template-template-textpart Default: null TemplateTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html#cfn-ses-template-template-templatename Default: null TemplateSubjectPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html#cfn-ses-template-template-subjectpart Default: null Resources: Resource: Type: AWS::SES::Template Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html Properties: Template: HtmlPart: !Ref 'TemplateHtmlPart' TextPart: !Ref 'TemplateTextPart' TemplateName: !Ref 'TemplateTemplateName' SubjectPart: !Ref 'TemplateSubjectPart' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-Template/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html Parameters: TemplateHtmlPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html#cfn-ses-template-template-htmlpart Default: null TemplateTextPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html#cfn-ses-template-template-textpart Default: null TemplateTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html#cfn-ses-template-template-templatename Default: null TemplateSubjectPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html#cfn-ses-template-template-subjectpart Default: null Resources: Resource: Type: AWS::SES::Template Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html Properties: Template: HtmlPart: !Ref 'TemplateHtmlPart' TextPart: !Ref 'TemplateTextPart' TemplateName: !Ref 'TemplateTemplateName' SubjectPart: !Ref 'TemplateSubjectPart' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SES-Template/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html Parameters: TemplateHtmlPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html#cfn-ses-template-template-htmlpart Default: null TemplateTextPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html#cfn-ses-template-template-textpart Default: null TemplateTemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html#cfn-ses-template-template-templatename Default: null TemplateSubjectPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html#cfn-ses-template-template-subjectpart Default: null Resources: Resource: Type: AWS::SES::Template Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html Properties: Template: HtmlPart: !Ref 'TemplateHtmlPart' TextPart: !Ref 'TemplateTextPart' TemplateName: !Ref 'TemplateTemplateName' SubjectPart: !Ref 'TemplateSubjectPart' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Subscription/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: DeliveryPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-deliverypolicy Default: null Endpoint: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-endpoint Default: null FilterPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-filterpolicy Default: null Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol RawMessageDelivery: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-rawmessagedelivery AllowedValues: - 'true' - 'false' Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy Default: null Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-region Default: null TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: DeliveryPolicy: !Ref 'DeliveryPolicy' Endpoint: !Ref 'Endpoint' FilterPolicy: !Ref 'FilterPolicy' Protocol: !Ref 'Protocol' RawMessageDelivery: !Ref 'RawMessageDelivery' RedrivePolicy: !Ref 'RedrivePolicy' Region: !Ref 'Region' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-Topic/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-displayname Default: null FifoTopic: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-fifotopic AllowedValues: - 'true' - 'false' Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-kmsmasterkeyid Default: null TopicName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html#cfn-sns-topic-topicname Default: null Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DisplayName: !Ref 'DisplayName' FifoTopic: !Ref 'FifoTopic' KmsMasterKeyId: !Ref 'KmsMasterKeyId' TopicName: !Ref 'TopicName' Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SNS-TopicPolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-Queue/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Parameters: ContentBasedDeduplication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-contentbaseddeduplication AllowedValues: - 'true' - 'false' Default: null DelaySeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-delayseconds Default: null FifoQueue: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-fifoqueue AllowedValues: - 'true' - 'false' Default: null KmsDataKeyReusePeriodSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsdatakeyreuseperiodseconds Default: null KmsMasterKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-kmsmasterkeyid Default: null MaximumMessageSize: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-maxmesgsize Default: null MessageRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-msgretentionperiod Default: null QueueName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-name Default: null ReceiveMessageWaitTimeSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-receivemsgwaittime Default: null RedrivePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-redrive Default: null VisibilityTimeout: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html#aws-sqs-queue-visiblitytimeout Default: null Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Properties: ContentBasedDeduplication: !Ref 'ContentBasedDeduplication' DelaySeconds: !Ref 'DelaySeconds' FifoQueue: !Ref 'FifoQueue' KmsDataKeyReusePeriodSeconds: !Ref 'KmsDataKeyReusePeriodSeconds' KmsMasterKeyId: !Ref 'KmsMasterKeyId' MaximumMessageSize: !Ref 'MaximumMessageSize' MessageRetentionPeriod: !Ref 'MessageRetentionPeriod' QueueName: !Ref 'QueueName' ReceiveMessageWaitTimeSeconds: !Ref 'ReceiveMessageWaitTimeSeconds' RedrivePolicy: !Ref 'RedrivePolicy' VisibilityTimeout: !Ref 'VisibilityTimeout' Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SQS-QueuePolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' OutputLocation: S3Location: OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' ScheduleExpression: !Ref 'ScheduleExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' OutputLocation: S3Location: OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' ScheduleExpression: !Ref 'ScheduleExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' OutputLocation: S3Location: OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' ScheduleExpression: !Ref 'ScheduleExpression' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Association/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: AssociationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-associationname Default: null DocumentVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion Default: null InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3Region: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname Default: null InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix Default: null AutomationTargetParameterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername Default: null MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxerrors Default: null MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-maxconcurrency Default: null ComplianceSeverity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-complianceseverity Default: null SyncCompliance: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-synccompliance Default: null WaitForSuccessTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-waitforsuccesstimeoutseconds Default: null ApplyOnlyAtCronInterval: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-applyonlyatcroninterval AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: AssociationName: !Ref 'AssociationName' DocumentVersion: !Ref 'DocumentVersion' InstanceId: !Ref 'InstanceId' Name: !Ref 'Name' ScheduleExpression: !Ref 'ScheduleExpression' OutputLocation: S3Location: OutputS3Region: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3Region' OutputS3BucketName: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3BucketName' OutputS3KeyPrefix: !Ref 'InstanceAssociationOutputLocationS3OutputLocationOutputS3KeyPrefix' AutomationTargetParameterName: !Ref 'AutomationTargetParameterName' MaxErrors: !Ref 'MaxErrors' MaxConcurrency: !Ref 'MaxConcurrency' ComplianceSeverity: !Ref 'ComplianceSeverity' SyncCompliance: !Ref 'SyncCompliance' WaitForSuccessTimeoutSeconds: !Ref 'WaitForSuccessTimeoutSeconds' ApplyOnlyAtCronInterval: !Ref 'ApplyOnlyAtCronInterval' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Document/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content DocumentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name Default: null Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' DocumentType: !Ref 'DocumentType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindow/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: StartDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-description Default: null AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration ScheduleOffset: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduleoffset Default: null EndDate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-enddate Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name ScheduleTimezone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-scheduletimezone Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: StartDate: !Ref 'StartDate' Description: !Ref 'Description' AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' ScheduleOffset: !Ref 'ScheduleOffset' EndDate: !Ref 'EndDate' Name: !Ref 'Name' ScheduleTimezone: !Ref 'ScheduleTimezone' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: OwnerInformation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-ownerinformation Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-description Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-name Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: OwnerInformation: !Ref 'OwnerInformation' Description: !Ref 'Description' WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description Default: null ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn Default: null Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name Default: null TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname Default: null TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersParameters: Type: Json Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters Default: null TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input Default: null TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier Default: null TaskInvocationParametersMaintenanceWindowLambdaParametersPayload: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload Default: null WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskParameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters Default: null TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype LoggingInfoS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket LoggingInfoRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region LoggingInfoS3Prefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix Default: null Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Description: !Ref 'Description' ServiceRoleArn: !Ref 'ServiceRoleArn' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' Name: !Ref 'Name' TaskArn: !Ref 'TaskArn' TaskInvocationParameters: MaintenanceWindowRunCommandParameters: TimeoutSeconds: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersTimeoutSeconds' Comment: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersComment' OutputS3KeyPrefix: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3KeyPrefix' Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersParameters' DocumentHashType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHashType' ServiceRoleArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersServiceRoleArn' NotificationConfig: NotificationArn: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationArn' NotificationType: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersNotificationConfigNotificationType' OutputS3BucketName: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersOutputS3BucketName' DocumentHash: !Ref 'TaskInvocationParametersMaintenanceWindowRunCommandParametersDocumentHash' MaintenanceWindowAutomationParameters: Parameters: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersParameters' DocumentVersion: !Ref 'TaskInvocationParametersMaintenanceWindowAutomationParametersDocumentVersion' MaintenanceWindowStepFunctionsParameters: Input: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersInput' Name: !Ref 'TaskInvocationParametersMaintenanceWindowStepFunctionsParametersName' MaintenanceWindowLambdaParameters: ClientContext: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersClientContext' Qualifier: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersQualifier' Payload: !Ref 'TaskInvocationParametersMaintenanceWindowLambdaParametersPayload' WindowId: !Ref 'WindowId' TaskParameters: !Ref 'TaskParameters' TaskType: !Ref 'TaskType' LoggingInfo: S3Bucket: !Ref 'LoggingInfoS3Bucket' Region: !Ref 'LoggingInfoRegion' S3Prefix: !Ref 'LoggingInfoS3Prefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-Parameter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description Default: null Policies: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-policies Default: null AllowedPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern Default: null Tier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tier Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value DataType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-datatype Default: null Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-tags Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name Default: null Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Description: !Ref 'Description' Policies: !Ref 'Policies' AllowedPattern: !Ref 'AllowedPattern' Tier: !Ref 'Tier' Value: !Ref 'Value' DataType: !Ref 'DataType' Tags: !Ref 'Tags' Name: !Ref 'Name' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-PatchBaseline/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name RejectedPatchesAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatchesaction Default: null ApprovedPatchesComplianceLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel Default: null ApprovedPatchesEnableNonSecurity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchesenablenonsecurity AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: OperatingSystem: !Ref 'OperatingSystem' Description: !Ref 'Description' ApprovalRules: {} Name: !Ref 'Name' RejectedPatchesAction: !Ref 'RejectedPatchesAction' ApprovedPatchesComplianceLevel: !Ref 'ApprovedPatchesComplianceLevel' ApprovedPatchesEnableNonSecurity: !Ref 'ApprovedPatchesEnableNonSecurity' GlobalFilters: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-PatchBaseline/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name RejectedPatchesAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatchesaction Default: null ApprovedPatchesComplianceLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel Default: null ApprovedPatchesEnableNonSecurity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchesenablenonsecurity AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: OperatingSystem: !Ref 'OperatingSystem' Description: !Ref 'Description' ApprovalRules: {} Name: !Ref 'Name' RejectedPatchesAction: !Ref 'RejectedPatchesAction' ApprovedPatchesComplianceLevel: !Ref 'ApprovedPatchesComplianceLevel' ApprovedPatchesEnableNonSecurity: !Ref 'ApprovedPatchesEnableNonSecurity' GlobalFilters: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-PatchBaseline/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name RejectedPatchesAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatchesaction Default: null ApprovedPatchesComplianceLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel Default: null ApprovedPatchesEnableNonSecurity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchesenablenonsecurity AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: OperatingSystem: !Ref 'OperatingSystem' Description: !Ref 'Description' ApprovalRules: {} Name: !Ref 'Name' RejectedPatchesAction: !Ref 'RejectedPatchesAction' ApprovedPatchesComplianceLevel: !Ref 'ApprovedPatchesComplianceLevel' ApprovedPatchesEnableNonSecurity: !Ref 'ApprovedPatchesEnableNonSecurity' GlobalFilters: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-PatchBaseline/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name RejectedPatchesAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatchesaction Default: null ApprovedPatchesComplianceLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel Default: null ApprovedPatchesEnableNonSecurity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchesenablenonsecurity AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: OperatingSystem: !Ref 'OperatingSystem' Description: !Ref 'Description' ApprovalRules: {} Name: !Ref 'Name' RejectedPatchesAction: !Ref 'RejectedPatchesAction' ApprovedPatchesComplianceLevel: !Ref 'ApprovedPatchesComplianceLevel' ApprovedPatchesEnableNonSecurity: !Ref 'ApprovedPatchesEnableNonSecurity' GlobalFilters: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-PatchBaseline/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name RejectedPatchesAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatchesaction Default: null ApprovedPatchesComplianceLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel Default: null ApprovedPatchesEnableNonSecurity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchesenablenonsecurity AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: OperatingSystem: !Ref 'OperatingSystem' Description: !Ref 'Description' ApprovalRules: {} Name: !Ref 'Name' RejectedPatchesAction: !Ref 'RejectedPatchesAction' ApprovedPatchesComplianceLevel: !Ref 'ApprovedPatchesComplianceLevel' ApprovedPatchesEnableNonSecurity: !Ref 'ApprovedPatchesEnableNonSecurity' GlobalFilters: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-PatchBaseline/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name RejectedPatchesAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatchesaction Default: null ApprovedPatchesComplianceLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel Default: null ApprovedPatchesEnableNonSecurity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchesenablenonsecurity AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: OperatingSystem: !Ref 'OperatingSystem' Description: !Ref 'Description' ApprovalRules: {} Name: !Ref 'Name' RejectedPatchesAction: !Ref 'RejectedPatchesAction' ApprovedPatchesComplianceLevel: !Ref 'ApprovedPatchesComplianceLevel' ApprovedPatchesEnableNonSecurity: !Ref 'ApprovedPatchesEnableNonSecurity' GlobalFilters: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-PatchBaseline/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name RejectedPatchesAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatchesaction Default: null ApprovedPatchesComplianceLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel Default: null ApprovedPatchesEnableNonSecurity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchesenablenonsecurity AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: OperatingSystem: !Ref 'OperatingSystem' Description: !Ref 'Description' ApprovalRules: {} Name: !Ref 'Name' RejectedPatchesAction: !Ref 'RejectedPatchesAction' ApprovedPatchesComplianceLevel: !Ref 'ApprovedPatchesComplianceLevel' ApprovedPatchesEnableNonSecurity: !Ref 'ApprovedPatchesEnableNonSecurity' GlobalFilters: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-PatchBaseline/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name RejectedPatchesAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatchesaction Default: null ApprovedPatchesComplianceLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel Default: null ApprovedPatchesEnableNonSecurity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchesenablenonsecurity AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: OperatingSystem: !Ref 'OperatingSystem' Description: !Ref 'Description' ApprovalRules: {} Name: !Ref 'Name' RejectedPatchesAction: !Ref 'RejectedPatchesAction' ApprovedPatchesComplianceLevel: !Ref 'ApprovedPatchesComplianceLevel' ApprovedPatchesEnableNonSecurity: !Ref 'ApprovedPatchesEnableNonSecurity' GlobalFilters: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-PatchBaseline/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name RejectedPatchesAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatchesaction Default: null ApprovedPatchesComplianceLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel Default: null ApprovedPatchesEnableNonSecurity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchesenablenonsecurity AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: OperatingSystem: !Ref 'OperatingSystem' Description: !Ref 'Description' ApprovalRules: {} Name: !Ref 'Name' RejectedPatchesAction: !Ref 'RejectedPatchesAction' ApprovedPatchesComplianceLevel: !Ref 'ApprovedPatchesComplianceLevel' ApprovedPatchesEnableNonSecurity: !Ref 'ApprovedPatchesEnableNonSecurity' GlobalFilters: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-PatchBaseline/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name RejectedPatchesAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatchesaction Default: null ApprovedPatchesComplianceLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel Default: null ApprovedPatchesEnableNonSecurity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchesenablenonsecurity AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: OperatingSystem: !Ref 'OperatingSystem' Description: !Ref 'Description' ApprovalRules: {} Name: !Ref 'Name' RejectedPatchesAction: !Ref 'RejectedPatchesAction' ApprovedPatchesComplianceLevel: !Ref 'ApprovedPatchesComplianceLevel' ApprovedPatchesEnableNonSecurity: !Ref 'ApprovedPatchesEnableNonSecurity' GlobalFilters: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-PatchBaseline/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name RejectedPatchesAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatchesaction Default: null ApprovedPatchesComplianceLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel Default: null ApprovedPatchesEnableNonSecurity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchesenablenonsecurity AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: OperatingSystem: !Ref 'OperatingSystem' Description: !Ref 'Description' ApprovalRules: {} Name: !Ref 'Name' RejectedPatchesAction: !Ref 'RejectedPatchesAction' ApprovedPatchesComplianceLevel: !Ref 'ApprovedPatchesComplianceLevel' ApprovedPatchesEnableNonSecurity: !Ref 'ApprovedPatchesEnableNonSecurity' GlobalFilters: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-PatchBaseline/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name RejectedPatchesAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatchesaction Default: null ApprovedPatchesComplianceLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel Default: null ApprovedPatchesEnableNonSecurity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchesenablenonsecurity AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: OperatingSystem: !Ref 'OperatingSystem' Description: !Ref 'Description' ApprovalRules: {} Name: !Ref 'Name' RejectedPatchesAction: !Ref 'RejectedPatchesAction' ApprovedPatchesComplianceLevel: !Ref 'ApprovedPatchesComplianceLevel' ApprovedPatchesEnableNonSecurity: !Ref 'ApprovedPatchesEnableNonSecurity' GlobalFilters: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-PatchBaseline/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name RejectedPatchesAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatchesaction Default: null ApprovedPatchesComplianceLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel Default: null ApprovedPatchesEnableNonSecurity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchesenablenonsecurity AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: OperatingSystem: !Ref 'OperatingSystem' Description: !Ref 'Description' ApprovalRules: {} Name: !Ref 'Name' RejectedPatchesAction: !Ref 'RejectedPatchesAction' ApprovedPatchesComplianceLevel: !Ref 'ApprovedPatchesComplianceLevel' ApprovedPatchesEnableNonSecurity: !Ref 'ApprovedPatchesEnableNonSecurity' GlobalFilters: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-PatchBaseline/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: OperatingSystem: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name RejectedPatchesAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatchesaction Default: null ApprovedPatchesComplianceLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel Default: null ApprovedPatchesEnableNonSecurity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchesenablenonsecurity AllowedValues: - 'true' - 'false' Default: null Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: OperatingSystem: !Ref 'OperatingSystem' Description: !Ref 'Description' ApprovalRules: {} Name: !Ref 'Name' RejectedPatchesAction: !Ref 'RejectedPatchesAction' ApprovedPatchesComplianceLevel: !Ref 'ApprovedPatchesComplianceLevel' ApprovedPatchesEnableNonSecurity: !Ref 'ApprovedPatchesEnableNonSecurity' GlobalFilters: {} ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SSM-ResourceDataSync/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: S3DestinationKMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn Default: null S3DestinationBucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname S3DestinationBucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion S3DestinationSyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat S3DestinationBucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix Default: null KMSKeyArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn Default: null SyncSourceSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype SyncSourceAwsOrganizationsSourceOrganizationSourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-awsorganizationssource.html#cfn-ssm-resourcedatasync-awsorganizationssource-organizationsourcetype SyncSourceIncludeFutureRegions: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions AllowedValues: - 'true' - 'false' Default: null BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketname Default: null BucketRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketregion Default: null SyncFormat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncformat Default: null SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname SyncType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-synctype Default: null BucketPrefix: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-bucketprefix Default: null Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: S3Destination: KMSKeyArn: !Ref 'S3DestinationKMSKeyArn' BucketName: !Ref 'S3DestinationBucketName' BucketRegion: !Ref 'S3DestinationBucketRegion' SyncFormat: !Ref 'S3DestinationSyncFormat' BucketPrefix: !Ref 'S3DestinationBucketPrefix' KMSKeyArn: !Ref 'KMSKeyArn' SyncSource: SourceType: !Ref 'SyncSourceSourceType' AwsOrganizationsSource: OrganizationSourceType: !Ref 'SyncSourceAwsOrganizationsSourceOrganizationSourceType' IncludeFutureRegions: !Ref 'SyncSourceIncludeFutureRegions' BucketName: !Ref 'BucketName' BucketRegion: !Ref 'BucketRegion' SyncFormat: !Ref 'SyncFormat' SyncName: !Ref 'SyncName' SyncType: !Ref 'SyncType' BucketPrefix: !Ref 'BucketPrefix' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-CodeRepository/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: CodeRepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html#cfn-sagemaker-coderepository-coderepositoryname Default: null GitConfigSecretArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-secretarn Default: null GitConfigBranch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-branch Default: null GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: CodeRepositoryName: !Ref 'CodeRepositoryName' GitConfig: SecretArn: !Ref 'GitConfigSecretArn' Branch: !Ref 'GitConfigBranch' RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-CodeRepository/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: CodeRepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html#cfn-sagemaker-coderepository-coderepositoryname Default: null GitConfigSecretArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-secretarn Default: null GitConfigBranch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-branch Default: null GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: CodeRepositoryName: !Ref 'CodeRepositoryName' GitConfig: SecretArn: !Ref 'GitConfigSecretArn' Branch: !Ref 'GitConfigBranch' RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-CodeRepository/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: CodeRepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html#cfn-sagemaker-coderepository-coderepositoryname Default: null GitConfigSecretArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-secretarn Default: null GitConfigBranch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-branch Default: null GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: CodeRepositoryName: !Ref 'CodeRepositoryName' GitConfig: SecretArn: !Ref 'GitConfigSecretArn' Branch: !Ref 'GitConfigBranch' RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-CodeRepository/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: CodeRepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html#cfn-sagemaker-coderepository-coderepositoryname Default: null GitConfigSecretArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-secretarn Default: null GitConfigBranch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-branch Default: null GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: CodeRepositoryName: !Ref 'CodeRepositoryName' GitConfig: SecretArn: !Ref 'GitConfigSecretArn' Branch: !Ref 'GitConfigBranch' RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-CodeRepository/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: CodeRepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html#cfn-sagemaker-coderepository-coderepositoryname Default: null GitConfigSecretArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-secretarn Default: null GitConfigBranch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-branch Default: null GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: CodeRepositoryName: !Ref 'CodeRepositoryName' GitConfig: SecretArn: !Ref 'GitConfigSecretArn' Branch: !Ref 'GitConfigBranch' RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-CodeRepository/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: CodeRepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html#cfn-sagemaker-coderepository-coderepositoryname Default: null GitConfigSecretArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-secretarn Default: null GitConfigBranch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-branch Default: null GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: CodeRepositoryName: !Ref 'CodeRepositoryName' GitConfig: SecretArn: !Ref 'GitConfigSecretArn' Branch: !Ref 'GitConfigBranch' RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-CodeRepository/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: CodeRepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html#cfn-sagemaker-coderepository-coderepositoryname Default: null GitConfigSecretArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-secretarn Default: null GitConfigBranch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-branch Default: null GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: CodeRepositoryName: !Ref 'CodeRepositoryName' GitConfig: SecretArn: !Ref 'GitConfigSecretArn' Branch: !Ref 'GitConfigBranch' RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-CodeRepository/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: CodeRepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html#cfn-sagemaker-coderepository-coderepositoryname Default: null GitConfigSecretArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-secretarn Default: null GitConfigBranch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-branch Default: null GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: CodeRepositoryName: !Ref 'CodeRepositoryName' GitConfig: SecretArn: !Ref 'GitConfigSecretArn' Branch: !Ref 'GitConfigBranch' RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-CodeRepository/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: CodeRepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html#cfn-sagemaker-coderepository-coderepositoryname Default: null GitConfigSecretArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-secretarn Default: null GitConfigBranch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-branch Default: null GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: CodeRepositoryName: !Ref 'CodeRepositoryName' GitConfig: SecretArn: !Ref 'GitConfigSecretArn' Branch: !Ref 'GitConfigBranch' RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-CodeRepository/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: CodeRepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html#cfn-sagemaker-coderepository-coderepositoryname Default: null GitConfigSecretArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-secretarn Default: null GitConfigBranch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-branch Default: null GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: CodeRepositoryName: !Ref 'CodeRepositoryName' GitConfig: SecretArn: !Ref 'GitConfigSecretArn' Branch: !Ref 'GitConfigBranch' RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-CodeRepository/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: CodeRepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html#cfn-sagemaker-coderepository-coderepositoryname Default: null GitConfigSecretArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-secretarn Default: null GitConfigBranch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-branch Default: null GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: CodeRepositoryName: !Ref 'CodeRepositoryName' GitConfig: SecretArn: !Ref 'GitConfigSecretArn' Branch: !Ref 'GitConfigBranch' RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-CodeRepository/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: CodeRepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html#cfn-sagemaker-coderepository-coderepositoryname Default: null GitConfigSecretArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-secretarn Default: null GitConfigBranch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-branch Default: null GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: CodeRepositoryName: !Ref 'CodeRepositoryName' GitConfig: SecretArn: !Ref 'GitConfigSecretArn' Branch: !Ref 'GitConfigBranch' RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-CodeRepository/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: CodeRepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html#cfn-sagemaker-coderepository-coderepositoryname Default: null GitConfigSecretArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-secretarn Default: null GitConfigBranch: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-branch Default: null GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: CodeRepositoryName: !Ref 'CodeRepositoryName' GitConfig: SecretArn: !Ref 'GitConfigSecretArn' Branch: !Ref 'GitConfigBranch' RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Endpoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Parameters: RetainAllVariantProperties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-retainallvariantproperties AllowedValues: - 'true' - 'false' Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointname Default: null EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointconfigname Resources: Resource: Type: AWS::SageMaker::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Properties: RetainAllVariantProperties: !Ref 'RetainAllVariantProperties' EndpointName: !Ref 'EndpointName' EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointName: Value: GetAtt: - Resource - EndpointName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Endpoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Parameters: RetainAllVariantProperties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-retainallvariantproperties AllowedValues: - 'true' - 'false' Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointname Default: null EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointconfigname Resources: Resource: Type: AWS::SageMaker::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Properties: RetainAllVariantProperties: !Ref 'RetainAllVariantProperties' EndpointName: !Ref 'EndpointName' EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointName: Value: GetAtt: - Resource - EndpointName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Endpoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Parameters: RetainAllVariantProperties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-retainallvariantproperties AllowedValues: - 'true' - 'false' Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointname Default: null EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointconfigname Resources: Resource: Type: AWS::SageMaker::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Properties: RetainAllVariantProperties: !Ref 'RetainAllVariantProperties' EndpointName: !Ref 'EndpointName' EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointName: Value: GetAtt: - Resource - EndpointName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Endpoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Parameters: RetainAllVariantProperties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-retainallvariantproperties AllowedValues: - 'true' - 'false' Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointname Default: null EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointconfigname Resources: Resource: Type: AWS::SageMaker::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Properties: RetainAllVariantProperties: !Ref 'RetainAllVariantProperties' EndpointName: !Ref 'EndpointName' EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointName: Value: GetAtt: - Resource - EndpointName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Endpoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Parameters: RetainAllVariantProperties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-retainallvariantproperties AllowedValues: - 'true' - 'false' Default: null EndpointName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointname Default: null EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointconfigname Resources: Resource: Type: AWS::SageMaker::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Properties: RetainAllVariantProperties: !Ref 'RetainAllVariantProperties' EndpointName: !Ref 'EndpointName' EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointName: Value: GetAtt: - Resource - EndpointName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-EndpointConfig/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Parameters: DataCaptureConfigKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-kmskeyid Default: null DataCaptureConfigDestinationS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-destinations3uri DataCaptureConfigInitialSamplingPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-initialsamplingpercentage DataCaptureConfigEnableCapture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-enablecapture AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html#cfn-sagemaker-endpointconfig-kmskeyid Default: null EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html#cfn-sagemaker-endpointconfig-endpointconfigname Default: null Resources: Resource: Type: AWS::SageMaker::EndpointConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Properties: DataCaptureConfig: KmsKeyId: !Ref 'DataCaptureConfigKmsKeyId' DestinationS3Uri: !Ref 'DataCaptureConfigDestinationS3Uri' InitialSamplingPercentage: !Ref 'DataCaptureConfigInitialSamplingPercentage' CaptureContentTypeHeader: {} EnableCapture: !Ref 'DataCaptureConfigEnableCapture' KmsKeyId: !Ref 'KmsKeyId' EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointConfigName: Value: GetAtt: - Resource - EndpointConfigName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-EndpointConfig/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Parameters: DataCaptureConfigKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-kmskeyid Default: null DataCaptureConfigDestinationS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-destinations3uri DataCaptureConfigInitialSamplingPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-initialsamplingpercentage DataCaptureConfigEnableCapture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-enablecapture AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html#cfn-sagemaker-endpointconfig-kmskeyid Default: null EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html#cfn-sagemaker-endpointconfig-endpointconfigname Default: null Resources: Resource: Type: AWS::SageMaker::EndpointConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Properties: DataCaptureConfig: KmsKeyId: !Ref 'DataCaptureConfigKmsKeyId' DestinationS3Uri: !Ref 'DataCaptureConfigDestinationS3Uri' InitialSamplingPercentage: !Ref 'DataCaptureConfigInitialSamplingPercentage' CaptureContentTypeHeader: {} EnableCapture: !Ref 'DataCaptureConfigEnableCapture' KmsKeyId: !Ref 'KmsKeyId' EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointConfigName: Value: GetAtt: - Resource - EndpointConfigName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-EndpointConfig/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Parameters: DataCaptureConfigKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-kmskeyid Default: null DataCaptureConfigDestinationS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-destinations3uri DataCaptureConfigInitialSamplingPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-initialsamplingpercentage DataCaptureConfigEnableCapture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-enablecapture AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html#cfn-sagemaker-endpointconfig-kmskeyid Default: null EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html#cfn-sagemaker-endpointconfig-endpointconfigname Default: null Resources: Resource: Type: AWS::SageMaker::EndpointConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Properties: DataCaptureConfig: KmsKeyId: !Ref 'DataCaptureConfigKmsKeyId' DestinationS3Uri: !Ref 'DataCaptureConfigDestinationS3Uri' InitialSamplingPercentage: !Ref 'DataCaptureConfigInitialSamplingPercentage' CaptureContentTypeHeader: {} EnableCapture: !Ref 'DataCaptureConfigEnableCapture' KmsKeyId: !Ref 'KmsKeyId' EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointConfigName: Value: GetAtt: - Resource - EndpointConfigName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-EndpointConfig/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Parameters: DataCaptureConfigKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-kmskeyid Default: null DataCaptureConfigDestinationS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-destinations3uri DataCaptureConfigInitialSamplingPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-initialsamplingpercentage DataCaptureConfigEnableCapture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-enablecapture AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html#cfn-sagemaker-endpointconfig-kmskeyid Default: null EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html#cfn-sagemaker-endpointconfig-endpointconfigname Default: null Resources: Resource: Type: AWS::SageMaker::EndpointConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Properties: DataCaptureConfig: KmsKeyId: !Ref 'DataCaptureConfigKmsKeyId' DestinationS3Uri: !Ref 'DataCaptureConfigDestinationS3Uri' InitialSamplingPercentage: !Ref 'DataCaptureConfigInitialSamplingPercentage' CaptureContentTypeHeader: {} EnableCapture: !Ref 'DataCaptureConfigEnableCapture' KmsKeyId: !Ref 'KmsKeyId' EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointConfigName: Value: GetAtt: - Resource - EndpointConfigName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-EndpointConfig/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Parameters: DataCaptureConfigKmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-kmskeyid Default: null DataCaptureConfigDestinationS3Uri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-destinations3uri DataCaptureConfigInitialSamplingPercentage: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-initialsamplingpercentage DataCaptureConfigEnableCapture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-datacaptureconfig.html#cfn-sagemaker-endpointconfig-datacaptureconfig-enablecapture AllowedValues: - 'true' - 'false' Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html#cfn-sagemaker-endpointconfig-kmskeyid Default: null EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html#cfn-sagemaker-endpointconfig-endpointconfigname Default: null Resources: Resource: Type: AWS::SageMaker::EndpointConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Properties: DataCaptureConfig: KmsKeyId: !Ref 'DataCaptureConfigKmsKeyId' DestinationS3Uri: !Ref 'DataCaptureConfigDestinationS3Uri' InitialSamplingPercentage: !Ref 'DataCaptureConfigInitialSamplingPercentage' CaptureContentTypeHeader: {} EnableCapture: !Ref 'DataCaptureConfigEnableCapture' KmsKeyId: !Ref 'KmsKeyId' EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointConfigName: Value: GetAtt: - Resource - EndpointConfigName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Model/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn ContainerDefinitionContainerHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-containerhostname Default: null ContainerDefinitionModelPackageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modelpackagename Default: null ContainerDefinitionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-mode Default: null ContainerDefinitionEnvironment: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-environment Default: null ContainerDefinitionModelDataUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modeldataurl Default: null ContainerDefinitionImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-image Default: null ModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-modelname Default: null Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' PrimaryContainer: ContainerHostname: !Ref 'ContainerDefinitionContainerHostname' ModelPackageName: !Ref 'ContainerDefinitionModelPackageName' Mode: !Ref 'ContainerDefinitionMode' Environment: !Ref 'ContainerDefinitionEnvironment' ModelDataUrl: !Ref 'ContainerDefinitionModelDataUrl' Image: !Ref 'ContainerDefinitionImage' ModelName: !Ref 'ModelName' VpcConfig: {} Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Model/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn ContainerDefinitionContainerHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-containerhostname Default: null ContainerDefinitionModelPackageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modelpackagename Default: null ContainerDefinitionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-mode Default: null ContainerDefinitionEnvironment: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-environment Default: null ContainerDefinitionModelDataUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modeldataurl Default: null ContainerDefinitionImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-image Default: null ModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-modelname Default: null Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' PrimaryContainer: ContainerHostname: !Ref 'ContainerDefinitionContainerHostname' ModelPackageName: !Ref 'ContainerDefinitionModelPackageName' Mode: !Ref 'ContainerDefinitionMode' Environment: !Ref 'ContainerDefinitionEnvironment' ModelDataUrl: !Ref 'ContainerDefinitionModelDataUrl' Image: !Ref 'ContainerDefinitionImage' ModelName: !Ref 'ModelName' VpcConfig: {} Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Model/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn ContainerDefinitionContainerHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-containerhostname Default: null ContainerDefinitionModelPackageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modelpackagename Default: null ContainerDefinitionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-mode Default: null ContainerDefinitionEnvironment: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-environment Default: null ContainerDefinitionModelDataUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modeldataurl Default: null ContainerDefinitionImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-image Default: null ModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-modelname Default: null Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' PrimaryContainer: ContainerHostname: !Ref 'ContainerDefinitionContainerHostname' ModelPackageName: !Ref 'ContainerDefinitionModelPackageName' Mode: !Ref 'ContainerDefinitionMode' Environment: !Ref 'ContainerDefinitionEnvironment' ModelDataUrl: !Ref 'ContainerDefinitionModelDataUrl' Image: !Ref 'ContainerDefinitionImage' ModelName: !Ref 'ModelName' VpcConfig: {} Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Model/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn ContainerDefinitionContainerHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-containerhostname Default: null ContainerDefinitionModelPackageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modelpackagename Default: null ContainerDefinitionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-mode Default: null ContainerDefinitionEnvironment: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-environment Default: null ContainerDefinitionModelDataUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modeldataurl Default: null ContainerDefinitionImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-image Default: null ModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-modelname Default: null Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' PrimaryContainer: ContainerHostname: !Ref 'ContainerDefinitionContainerHostname' ModelPackageName: !Ref 'ContainerDefinitionModelPackageName' Mode: !Ref 'ContainerDefinitionMode' Environment: !Ref 'ContainerDefinitionEnvironment' ModelDataUrl: !Ref 'ContainerDefinitionModelDataUrl' Image: !Ref 'ContainerDefinitionImage' ModelName: !Ref 'ModelName' VpcConfig: {} Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Model/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn ContainerDefinitionContainerHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-containerhostname Default: null ContainerDefinitionModelPackageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modelpackagename Default: null ContainerDefinitionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-mode Default: null ContainerDefinitionEnvironment: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-environment Default: null ContainerDefinitionModelDataUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modeldataurl Default: null ContainerDefinitionImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-image Default: null ModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-modelname Default: null Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' PrimaryContainer: ContainerHostname: !Ref 'ContainerDefinitionContainerHostname' ModelPackageName: !Ref 'ContainerDefinitionModelPackageName' Mode: !Ref 'ContainerDefinitionMode' Environment: !Ref 'ContainerDefinitionEnvironment' ModelDataUrl: !Ref 'ContainerDefinitionModelDataUrl' Image: !Ref 'ContainerDefinitionImage' ModelName: !Ref 'ModelName' VpcConfig: {} Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Model/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn ContainerDefinitionContainerHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-containerhostname Default: null ContainerDefinitionModelPackageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modelpackagename Default: null ContainerDefinitionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-mode Default: null ContainerDefinitionEnvironment: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-environment Default: null ContainerDefinitionModelDataUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modeldataurl Default: null ContainerDefinitionImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-image Default: null ModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-modelname Default: null Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' PrimaryContainer: ContainerHostname: !Ref 'ContainerDefinitionContainerHostname' ModelPackageName: !Ref 'ContainerDefinitionModelPackageName' Mode: !Ref 'ContainerDefinitionMode' Environment: !Ref 'ContainerDefinitionEnvironment' ModelDataUrl: !Ref 'ContainerDefinitionModelDataUrl' Image: !Ref 'ContainerDefinitionImage' ModelName: !Ref 'ModelName' VpcConfig: {} Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Model/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn ContainerDefinitionContainerHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-containerhostname Default: null ContainerDefinitionModelPackageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modelpackagename Default: null ContainerDefinitionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-mode Default: null ContainerDefinitionEnvironment: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-environment Default: null ContainerDefinitionModelDataUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modeldataurl Default: null ContainerDefinitionImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-image Default: null ModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-modelname Default: null Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' PrimaryContainer: ContainerHostname: !Ref 'ContainerDefinitionContainerHostname' ModelPackageName: !Ref 'ContainerDefinitionModelPackageName' Mode: !Ref 'ContainerDefinitionMode' Environment: !Ref 'ContainerDefinitionEnvironment' ModelDataUrl: !Ref 'ContainerDefinitionModelDataUrl' Image: !Ref 'ContainerDefinitionImage' ModelName: !Ref 'ModelName' VpcConfig: {} Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Model/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn ContainerDefinitionContainerHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-containerhostname Default: null ContainerDefinitionModelPackageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modelpackagename Default: null ContainerDefinitionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-mode Default: null ContainerDefinitionEnvironment: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-environment Default: null ContainerDefinitionModelDataUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modeldataurl Default: null ContainerDefinitionImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-image Default: null ModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-modelname Default: null Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' PrimaryContainer: ContainerHostname: !Ref 'ContainerDefinitionContainerHostname' ModelPackageName: !Ref 'ContainerDefinitionModelPackageName' Mode: !Ref 'ContainerDefinitionMode' Environment: !Ref 'ContainerDefinitionEnvironment' ModelDataUrl: !Ref 'ContainerDefinitionModelDataUrl' Image: !Ref 'ContainerDefinitionImage' ModelName: !Ref 'ModelName' VpcConfig: {} Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Model/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn ContainerDefinitionContainerHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-containerhostname Default: null ContainerDefinitionModelPackageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modelpackagename Default: null ContainerDefinitionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-mode Default: null ContainerDefinitionEnvironment: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-environment Default: null ContainerDefinitionModelDataUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modeldataurl Default: null ContainerDefinitionImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-image Default: null ModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-modelname Default: null Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' PrimaryContainer: ContainerHostname: !Ref 'ContainerDefinitionContainerHostname' ModelPackageName: !Ref 'ContainerDefinitionModelPackageName' Mode: !Ref 'ContainerDefinitionMode' Environment: !Ref 'ContainerDefinitionEnvironment' ModelDataUrl: !Ref 'ContainerDefinitionModelDataUrl' Image: !Ref 'ContainerDefinitionImage' ModelName: !Ref 'ModelName' VpcConfig: {} Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Model/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn ContainerDefinitionContainerHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-containerhostname Default: null ContainerDefinitionModelPackageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modelpackagename Default: null ContainerDefinitionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-mode Default: null ContainerDefinitionEnvironment: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-environment Default: null ContainerDefinitionModelDataUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modeldataurl Default: null ContainerDefinitionImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-image Default: null ModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-modelname Default: null Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' PrimaryContainer: ContainerHostname: !Ref 'ContainerDefinitionContainerHostname' ModelPackageName: !Ref 'ContainerDefinitionModelPackageName' Mode: !Ref 'ContainerDefinitionMode' Environment: !Ref 'ContainerDefinitionEnvironment' ModelDataUrl: !Ref 'ContainerDefinitionModelDataUrl' Image: !Ref 'ContainerDefinitionImage' ModelName: !Ref 'ModelName' VpcConfig: {} Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Model/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn ContainerDefinitionContainerHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-containerhostname Default: null ContainerDefinitionModelPackageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modelpackagename Default: null ContainerDefinitionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-mode Default: null ContainerDefinitionEnvironment: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-environment Default: null ContainerDefinitionModelDataUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modeldataurl Default: null ContainerDefinitionImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-image Default: null ModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-modelname Default: null Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' PrimaryContainer: ContainerHostname: !Ref 'ContainerDefinitionContainerHostname' ModelPackageName: !Ref 'ContainerDefinitionModelPackageName' Mode: !Ref 'ContainerDefinitionMode' Environment: !Ref 'ContainerDefinitionEnvironment' ModelDataUrl: !Ref 'ContainerDefinitionModelDataUrl' Image: !Ref 'ContainerDefinitionImage' ModelName: !Ref 'ModelName' VpcConfig: {} Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Model/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn ContainerDefinitionContainerHostname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-containerhostname Default: null ContainerDefinitionModelPackageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modelpackagename Default: null ContainerDefinitionMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-mode Default: null ContainerDefinitionEnvironment: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-environment Default: null ContainerDefinitionModelDataUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modeldataurl Default: null ContainerDefinitionImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-image Default: null ModelName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-modelname Default: null Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' PrimaryContainer: ContainerHostname: !Ref 'ContainerDefinitionContainerHostname' ModelPackageName: !Ref 'ContainerDefinitionModelPackageName' Mode: !Ref 'ContainerDefinitionMode' Environment: !Ref 'ContainerDefinitionEnvironment' ModelDataUrl: !Ref 'ContainerDefinitionModelDataUrl' Image: !Ref 'ContainerDefinitionImage' ModelName: !Ref 'ModelName' VpcConfig: {} Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstance/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-kmskeyid Default: null VolumeSizeInGB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-volumesizeingb Default: null DefaultCodeRepository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-defaultcoderepository Default: null DirectInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-directinternetaccess Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn RootAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rootaccess Default: null NotebookInstanceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-notebookinstancename Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype LifecycleConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-lifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: KmsKeyId: !Ref 'KmsKeyId' VolumeSizeInGB: !Ref 'VolumeSizeInGB' DefaultCodeRepository: !Ref 'DefaultCodeRepository' DirectInternetAccess: !Ref 'DirectInternetAccess' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' RootAccess: !Ref 'RootAccess' NotebookInstanceName: !Ref 'NotebookInstanceName' InstanceType: !Ref 'InstanceType' LifecycleConfigName: !Ref 'LifecycleConfigName' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstance/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-kmskeyid Default: null VolumeSizeInGB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-volumesizeingb Default: null DefaultCodeRepository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-defaultcoderepository Default: null DirectInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-directinternetaccess Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn RootAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rootaccess Default: null NotebookInstanceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-notebookinstancename Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype LifecycleConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-lifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: KmsKeyId: !Ref 'KmsKeyId' VolumeSizeInGB: !Ref 'VolumeSizeInGB' DefaultCodeRepository: !Ref 'DefaultCodeRepository' DirectInternetAccess: !Ref 'DirectInternetAccess' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' RootAccess: !Ref 'RootAccess' NotebookInstanceName: !Ref 'NotebookInstanceName' InstanceType: !Ref 'InstanceType' LifecycleConfigName: !Ref 'LifecycleConfigName' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstance/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-kmskeyid Default: null VolumeSizeInGB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-volumesizeingb Default: null DefaultCodeRepository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-defaultcoderepository Default: null DirectInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-directinternetaccess Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn RootAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rootaccess Default: null NotebookInstanceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-notebookinstancename Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype LifecycleConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-lifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: KmsKeyId: !Ref 'KmsKeyId' VolumeSizeInGB: !Ref 'VolumeSizeInGB' DefaultCodeRepository: !Ref 'DefaultCodeRepository' DirectInternetAccess: !Ref 'DirectInternetAccess' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' RootAccess: !Ref 'RootAccess' NotebookInstanceName: !Ref 'NotebookInstanceName' InstanceType: !Ref 'InstanceType' LifecycleConfigName: !Ref 'LifecycleConfigName' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstance/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-kmskeyid Default: null VolumeSizeInGB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-volumesizeingb Default: null DefaultCodeRepository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-defaultcoderepository Default: null DirectInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-directinternetaccess Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn RootAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rootaccess Default: null NotebookInstanceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-notebookinstancename Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype LifecycleConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-lifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: KmsKeyId: !Ref 'KmsKeyId' VolumeSizeInGB: !Ref 'VolumeSizeInGB' DefaultCodeRepository: !Ref 'DefaultCodeRepository' DirectInternetAccess: !Ref 'DirectInternetAccess' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' RootAccess: !Ref 'RootAccess' NotebookInstanceName: !Ref 'NotebookInstanceName' InstanceType: !Ref 'InstanceType' LifecycleConfigName: !Ref 'LifecycleConfigName' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstance/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-kmskeyid Default: null VolumeSizeInGB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-volumesizeingb Default: null DefaultCodeRepository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-defaultcoderepository Default: null DirectInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-directinternetaccess Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn RootAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rootaccess Default: null NotebookInstanceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-notebookinstancename Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype LifecycleConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-lifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: KmsKeyId: !Ref 'KmsKeyId' VolumeSizeInGB: !Ref 'VolumeSizeInGB' DefaultCodeRepository: !Ref 'DefaultCodeRepository' DirectInternetAccess: !Ref 'DirectInternetAccess' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' RootAccess: !Ref 'RootAccess' NotebookInstanceName: !Ref 'NotebookInstanceName' InstanceType: !Ref 'InstanceType' LifecycleConfigName: !Ref 'LifecycleConfigName' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstance/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-kmskeyid Default: null VolumeSizeInGB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-volumesizeingb Default: null DefaultCodeRepository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-defaultcoderepository Default: null DirectInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-directinternetaccess Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn RootAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rootaccess Default: null NotebookInstanceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-notebookinstancename Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype LifecycleConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-lifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: KmsKeyId: !Ref 'KmsKeyId' VolumeSizeInGB: !Ref 'VolumeSizeInGB' DefaultCodeRepository: !Ref 'DefaultCodeRepository' DirectInternetAccess: !Ref 'DirectInternetAccess' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' RootAccess: !Ref 'RootAccess' NotebookInstanceName: !Ref 'NotebookInstanceName' InstanceType: !Ref 'InstanceType' LifecycleConfigName: !Ref 'LifecycleConfigName' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-kmskeyid Default: null VolumeSizeInGB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-volumesizeingb Default: null DefaultCodeRepository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-defaultcoderepository Default: null DirectInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-directinternetaccess Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn RootAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rootaccess Default: null NotebookInstanceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-notebookinstancename Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype LifecycleConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-lifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: KmsKeyId: !Ref 'KmsKeyId' VolumeSizeInGB: !Ref 'VolumeSizeInGB' DefaultCodeRepository: !Ref 'DefaultCodeRepository' DirectInternetAccess: !Ref 'DirectInternetAccess' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' RootAccess: !Ref 'RootAccess' NotebookInstanceName: !Ref 'NotebookInstanceName' InstanceType: !Ref 'InstanceType' LifecycleConfigName: !Ref 'LifecycleConfigName' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-kmskeyid Default: null VolumeSizeInGB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-volumesizeingb Default: null DefaultCodeRepository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-defaultcoderepository Default: null DirectInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-directinternetaccess Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn RootAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rootaccess Default: null NotebookInstanceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-notebookinstancename Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype LifecycleConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-lifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: KmsKeyId: !Ref 'KmsKeyId' VolumeSizeInGB: !Ref 'VolumeSizeInGB' DefaultCodeRepository: !Ref 'DefaultCodeRepository' DirectInternetAccess: !Ref 'DirectInternetAccess' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' RootAccess: !Ref 'RootAccess' NotebookInstanceName: !Ref 'NotebookInstanceName' InstanceType: !Ref 'InstanceType' LifecycleConfigName: !Ref 'LifecycleConfigName' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-kmskeyid Default: null VolumeSizeInGB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-volumesizeingb Default: null DefaultCodeRepository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-defaultcoderepository Default: null DirectInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-directinternetaccess Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn RootAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rootaccess Default: null NotebookInstanceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-notebookinstancename Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype LifecycleConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-lifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: KmsKeyId: !Ref 'KmsKeyId' VolumeSizeInGB: !Ref 'VolumeSizeInGB' DefaultCodeRepository: !Ref 'DefaultCodeRepository' DirectInternetAccess: !Ref 'DirectInternetAccess' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' RootAccess: !Ref 'RootAccess' NotebookInstanceName: !Ref 'NotebookInstanceName' InstanceType: !Ref 'InstanceType' LifecycleConfigName: !Ref 'LifecycleConfigName' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-kmskeyid Default: null VolumeSizeInGB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-volumesizeingb Default: null DefaultCodeRepository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-defaultcoderepository Default: null DirectInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-directinternetaccess Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn RootAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rootaccess Default: null NotebookInstanceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-notebookinstancename Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype LifecycleConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-lifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: KmsKeyId: !Ref 'KmsKeyId' VolumeSizeInGB: !Ref 'VolumeSizeInGB' DefaultCodeRepository: !Ref 'DefaultCodeRepository' DirectInternetAccess: !Ref 'DirectInternetAccess' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' RootAccess: !Ref 'RootAccess' NotebookInstanceName: !Ref 'NotebookInstanceName' InstanceType: !Ref 'InstanceType' LifecycleConfigName: !Ref 'LifecycleConfigName' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-kmskeyid Default: null VolumeSizeInGB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-volumesizeingb Default: null DefaultCodeRepository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-defaultcoderepository Default: null DirectInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-directinternetaccess Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn RootAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rootaccess Default: null NotebookInstanceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-notebookinstancename Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype LifecycleConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-lifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: KmsKeyId: !Ref 'KmsKeyId' VolumeSizeInGB: !Ref 'VolumeSizeInGB' DefaultCodeRepository: !Ref 'DefaultCodeRepository' DirectInternetAccess: !Ref 'DirectInternetAccess' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' RootAccess: !Ref 'RootAccess' NotebookInstanceName: !Ref 'NotebookInstanceName' InstanceType: !Ref 'InstanceType' LifecycleConfigName: !Ref 'LifecycleConfigName' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstance/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-kmskeyid Default: null VolumeSizeInGB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-volumesizeingb Default: null DefaultCodeRepository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-defaultcoderepository Default: null DirectInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-directinternetaccess Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn RootAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rootaccess Default: null NotebookInstanceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-notebookinstancename Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype LifecycleConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-lifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: KmsKeyId: !Ref 'KmsKeyId' VolumeSizeInGB: !Ref 'VolumeSizeInGB' DefaultCodeRepository: !Ref 'DefaultCodeRepository' DirectInternetAccess: !Ref 'DirectInternetAccess' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' RootAccess: !Ref 'RootAccess' NotebookInstanceName: !Ref 'NotebookInstanceName' InstanceType: !Ref 'InstanceType' LifecycleConfigName: !Ref 'LifecycleConfigName' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-kmskeyid Default: null VolumeSizeInGB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-volumesizeingb Default: null DefaultCodeRepository: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-defaultcoderepository Default: null DirectInternetAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-directinternetaccess Default: null SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-subnetid Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn RootAccess: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rootaccess Default: null NotebookInstanceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-notebookinstancename Default: null InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype LifecycleConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-lifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: KmsKeyId: !Ref 'KmsKeyId' VolumeSizeInGB: !Ref 'VolumeSizeInGB' DefaultCodeRepository: !Ref 'DefaultCodeRepository' DirectInternetAccess: !Ref 'DirectInternetAccess' SubnetId: !Ref 'SubnetId' RoleArn: !Ref 'RoleArn' RootAccess: !Ref 'RootAccess' NotebookInstanceName: !Ref 'NotebookInstanceName' InstanceType: !Ref 'InstanceType' LifecycleConfigName: !Ref 'LifecycleConfigName' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstanceLifecycleConfig/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Parameters: NotebookInstanceLifecycleConfigName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html#cfn-sagemaker-notebookinstancelifecycleconfig-notebookinstancelifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstanceLifecycleConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Properties: NotebookInstanceLifecycleConfigName: !Ref 'NotebookInstanceLifecycleConfigName' Outputs: NotebookInstanceLifecycleConfigName: Value: GetAtt: - Resource - NotebookInstanceLifecycleConfigName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstanceLifecycleConfig/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Parameters: NotebookInstanceLifecycleConfigName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html#cfn-sagemaker-notebookinstancelifecycleconfig-notebookinstancelifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstanceLifecycleConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Properties: NotebookInstanceLifecycleConfigName: !Ref 'NotebookInstanceLifecycleConfigName' Outputs: NotebookInstanceLifecycleConfigName: Value: GetAtt: - Resource - NotebookInstanceLifecycleConfigName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstanceLifecycleConfig/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Parameters: NotebookInstanceLifecycleConfigName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html#cfn-sagemaker-notebookinstancelifecycleconfig-notebookinstancelifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstanceLifecycleConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Properties: NotebookInstanceLifecycleConfigName: !Ref 'NotebookInstanceLifecycleConfigName' Outputs: NotebookInstanceLifecycleConfigName: Value: GetAtt: - Resource - NotebookInstanceLifecycleConfigName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstanceLifecycleConfig/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Parameters: NotebookInstanceLifecycleConfigName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html#cfn-sagemaker-notebookinstancelifecycleconfig-notebookinstancelifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstanceLifecycleConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Properties: NotebookInstanceLifecycleConfigName: !Ref 'NotebookInstanceLifecycleConfigName' Outputs: NotebookInstanceLifecycleConfigName: Value: GetAtt: - Resource - NotebookInstanceLifecycleConfigName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-NotebookInstanceLifecycleConfig/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Parameters: NotebookInstanceLifecycleConfigName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html#cfn-sagemaker-notebookinstancelifecycleconfig-notebookinstancelifecycleconfigname Default: null Resources: Resource: Type: AWS::SageMaker::NotebookInstanceLifecycleConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Properties: NotebookInstanceLifecycleConfigName: !Ref 'NotebookInstanceLifecycleConfigName' Outputs: NotebookInstanceLifecycleConfigName: Value: GetAtt: - Resource - NotebookInstanceLifecycleConfigName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Workteam/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html#cfn-sagemaker-workteam-description Default: null NotificationConfigurationNotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-workteam-notificationconfiguration.html#cfn-sagemaker-workteam-notificationconfiguration-notificationtopicarn WorkteamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html#cfn-sagemaker-workteam-workteamname Default: null Resources: Resource: Type: AWS::SageMaker::Workteam Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Properties: Description: !Ref 'Description' NotificationConfiguration: NotificationTopicArn: !Ref 'NotificationConfigurationNotificationTopicArn' WorkteamName: !Ref 'WorkteamName' Outputs: WorkteamName: Value: GetAtt: - Resource - WorkteamName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Workteam/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html#cfn-sagemaker-workteam-description Default: null NotificationConfigurationNotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-workteam-notificationconfiguration.html#cfn-sagemaker-workteam-notificationconfiguration-notificationtopicarn WorkteamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html#cfn-sagemaker-workteam-workteamname Default: null Resources: Resource: Type: AWS::SageMaker::Workteam Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Properties: Description: !Ref 'Description' NotificationConfiguration: NotificationTopicArn: !Ref 'NotificationConfigurationNotificationTopicArn' WorkteamName: !Ref 'WorkteamName' Outputs: WorkteamName: Value: GetAtt: - Resource - WorkteamName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Workteam/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html#cfn-sagemaker-workteam-description Default: null NotificationConfigurationNotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-workteam-notificationconfiguration.html#cfn-sagemaker-workteam-notificationconfiguration-notificationtopicarn WorkteamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html#cfn-sagemaker-workteam-workteamname Default: null Resources: Resource: Type: AWS::SageMaker::Workteam Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Properties: Description: !Ref 'Description' NotificationConfiguration: NotificationTopicArn: !Ref 'NotificationConfigurationNotificationTopicArn' WorkteamName: !Ref 'WorkteamName' Outputs: WorkteamName: Value: GetAtt: - Resource - WorkteamName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Workteam/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html#cfn-sagemaker-workteam-description Default: null NotificationConfigurationNotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-workteam-notificationconfiguration.html#cfn-sagemaker-workteam-notificationconfiguration-notificationtopicarn WorkteamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html#cfn-sagemaker-workteam-workteamname Default: null Resources: Resource: Type: AWS::SageMaker::Workteam Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Properties: Description: !Ref 'Description' NotificationConfiguration: NotificationTopicArn: !Ref 'NotificationConfigurationNotificationTopicArn' WorkteamName: !Ref 'WorkteamName' Outputs: WorkteamName: Value: GetAtt: - Resource - WorkteamName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Workteam/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html#cfn-sagemaker-workteam-description Default: null NotificationConfigurationNotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-workteam-notificationconfiguration.html#cfn-sagemaker-workteam-notificationconfiguration-notificationtopicarn WorkteamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html#cfn-sagemaker-workteam-workteamname Default: null Resources: Resource: Type: AWS::SageMaker::Workteam Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Properties: Description: !Ref 'Description' NotificationConfiguration: NotificationTopicArn: !Ref 'NotificationConfigurationNotificationTopicArn' WorkteamName: !Ref 'WorkteamName' Outputs: WorkteamName: Value: GetAtt: - Resource - WorkteamName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SageMaker-Workteam/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html#cfn-sagemaker-workteam-description Default: null NotificationConfigurationNotificationTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-workteam-notificationconfiguration.html#cfn-sagemaker-workteam-notificationconfiguration-notificationtopicarn WorkteamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html#cfn-sagemaker-workteam-workteamname Default: null Resources: Resource: Type: AWS::SageMaker::Workteam Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Properties: Description: !Ref 'Description' NotificationConfiguration: NotificationTopicArn: !Ref 'NotificationConfigurationNotificationTopicArn' WorkteamName: !Ref 'WorkteamName' Outputs: WorkteamName: Value: GetAtt: - Resource - WorkteamName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid RotationLambdaARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-rotationlambdaarn Default: null RotationRulesAutomaticallyAfterDays: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html#cfn-secretsmanager-rotationschedule-rotationrules-automaticallyafterdays Default: null Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' RotationLambdaARN: !Ref 'RotationLambdaARN' RotationRules: AutomaticallyAfterDays: !Ref 'RotationRulesAutomaticallyAfterDays' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-Secret/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-description Default: null KmsKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-kmskeyid Default: null SecretString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-secretstring Default: null GenerateSecretStringExcludeUppercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludeuppercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringRequireEachIncludedType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-requireeachincludedtype AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringIncludeSpace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-includespace AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeCharacters: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludecharacters Default: null GenerateSecretStringGenerateStringKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-generatestringkey Default: null GenerateSecretStringPasswordLength: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-passwordlength Default: null GenerateSecretStringExcludePunctuation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludepunctuation AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringExcludeLowercase: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludelowercase AllowedValues: - 'true' - 'false' Default: null GenerateSecretStringSecretStringTemplate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-secretstringtemplate Default: null GenerateSecretStringExcludeNumbers: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html#cfn-secretsmanager-secret-generatesecretstring-excludenumbers AllowedValues: - 'true' - 'false' Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html#cfn-secretsmanager-secret-name Default: null Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Properties: Description: !Ref 'Description' KmsKeyId: !Ref 'KmsKeyId' SecretString: !Ref 'SecretString' GenerateSecretString: ExcludeUppercase: !Ref 'GenerateSecretStringExcludeUppercase' RequireEachIncludedType: !Ref 'GenerateSecretStringRequireEachIncludedType' IncludeSpace: !Ref 'GenerateSecretStringIncludeSpace' ExcludeCharacters: !Ref 'GenerateSecretStringExcludeCharacters' GenerateStringKey: !Ref 'GenerateSecretStringGenerateStringKey' PasswordLength: !Ref 'GenerateSecretStringPasswordLength' ExcludePunctuation: !Ref 'GenerateSecretStringExcludePunctuation' ExcludeLowercase: !Ref 'GenerateSecretStringExcludeLowercase' SecretStringTemplate: !Ref 'GenerateSecretStringSecretStringTemplate' ExcludeNumbers: !Ref 'GenerateSecretStringExcludeNumbers' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-SecurityHub-Hub/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Parameters: Tags: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags Default: null Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Properties: Tags: !Ref 'Tags' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: ReplaceProvisioningArtifacts: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-replaceprovisioningartifacts AllowedValues: - 'true' - 'false' Default: null Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner SupportDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportdescription Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-description Default: null Distributor: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-distributor Default: null SupportEmail: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supportemail Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-acceptlanguage Default: null SupportUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-supporturl Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: ReplaceProvisioningArtifacts: !Ref 'ReplaceProvisioningArtifacts' Owner: !Ref 'Owner' SupportDescription: !Ref 'SupportDescription' Description: !Ref 'Description' Distributor: !Ref 'Distributor' SupportEmail: !Ref 'SupportEmail' AcceptLanguage: !Ref 'AcceptLanguage' SupportUrl: !Ref 'SupportUrl' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: PathId: !Ref 'PathId' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' ProductName: !Ref 'ProductName' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' AcceptLanguage: !Ref 'AcceptLanguage' ProductId: !Ref 'ProductId' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' Outputs: CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn RecordId: Value: GetAtt: - Resource - RecordId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: PathId: !Ref 'PathId' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' ProductName: !Ref 'ProductName' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' AcceptLanguage: !Ref 'AcceptLanguage' ProductId: !Ref 'ProductId' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' Outputs: CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn RecordId: Value: GetAtt: - Resource - RecordId ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Parameters: AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-acceptlanguage Default: null PathId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-pathid Default: null ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productid Default: null ProductName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-productname Default: null ProvisionedProductName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisionedproductname Default: null ProvisioningArtifactId: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactid Default: null ProvisioningArtifactName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningartifactname Default: null ProvisioningPreferencesStackSetFailureToleranceCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancecount Default: null ProvisioningPreferencesStackSetFailureTolerancePercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetfailuretolerancepercentage Default: null ProvisioningPreferencesStackSetMaxConcurrencyCount: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencycount Default: null ProvisioningPreferencesStackSetMaxConcurrencyPercentage: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetmaxconcurrencypercentage Default: null ProvisioningPreferencesStackSetOperationType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences.html#cfn-servicecatalog-cloudformationprovisionedproduct-provisioningpreferences-stacksetoperationtype Default: null Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Properties: AcceptLanguage: !Ref 'AcceptLanguage' PathId: !Ref 'PathId' ProductId: !Ref 'ProductId' ProductName: !Ref 'ProductName' ProvisionedProductName: !Ref 'ProvisionedProductName' ProvisioningArtifactId: !Ref 'ProvisioningArtifactId' ProvisioningArtifactName: !Ref 'ProvisioningArtifactName' ProvisioningPreferences: StackSetFailureToleranceCount: !Ref 'ProvisioningPreferencesStackSetFailureToleranceCount' StackSetFailureTolerancePercentage: !Ref 'ProvisioningPreferencesStackSetFailureTolerancePercentage' StackSetMaxConcurrencyCount: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyCount' StackSetMaxConcurrencyPercentage: !Ref 'ProvisioningPreferencesStackSetMaxConcurrencyPercentage' StackSetOperationType: !Ref 'ProvisioningPreferencesStackSetOperationType' Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-description Default: null LocalRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-localrolename Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-rolearn Default: null Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: Description: !Ref 'Description' LocalRoleName: !Ref 'LocalRoleName' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description Default: null DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage Default: null Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' Description: !Ref 'Description' DisplayName: !Ref 'DisplayName' AcceptLanguage: !Ref 'AcceptLanguage' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: SourcePortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: SourcePortfolioId: !Ref 'SourcePortfolioId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-description Default: null AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-acceptlanguage Default: null TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: Description: !Ref 'Description' AcceptLanguage: !Ref 'AcceptLanguage' TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol AcceptLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-acceptlanguage Default: null PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' AcceptLanguage: !Ref 'AcceptLanguage' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOption/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Active: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active AllowedValues: - 'true' - 'false' Default: null Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Active: !Ref 'Active' Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Instance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid Default: null ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' InstanceId: !Ref 'InstanceId' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description Default: null Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Description: !Ref 'Description' Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-ServiceDiscovery-Service/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description Default: null HealthCheckCustomConfigFailureThreshold: Type: Double Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html#cfn-servicediscovery-service-healthcheckcustomconfig-failurethreshold Default: null DnsConfigRoutingPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-routingpolicy Default: null DnsConfigNamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid Default: null NamespaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-namespaceid Default: null HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type HealthCheckConfigResourcePath: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath Default: null HealthCheckConfigFailureThreshold: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name Default: null Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Properties: Description: !Ref 'Description' HealthCheckCustomConfig: FailureThreshold: !Ref 'HealthCheckCustomConfigFailureThreshold' DnsConfig: RoutingPolicy: !Ref 'DnsConfigRoutingPolicy' NamespaceId: !Ref 'DnsConfigNamespaceId' NamespaceId: !Ref 'NamespaceId' HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ResourcePath: !Ref 'HealthCheckConfigResourcePath' FailureThreshold: !Ref 'HealthCheckConfigFailureThreshold' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-StepFunctions-Activity/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html#cfn-stepfunctions-activity-name Resources: Resource: Type: AWS::StepFunctions::Activity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Properties: Name: !Ref 'Name' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-StepFunctions-Activity/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html#cfn-stepfunctions-activity-name Resources: Resource: Type: AWS::StepFunctions::Activity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Properties: Name: !Ref 'Name' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-StepFunctions-Activity/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html#cfn-stepfunctions-activity-name Resources: Resource: Type: AWS::StepFunctions::Activity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Properties: Name: !Ref 'Name' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-StepFunctions-Activity/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html#cfn-stepfunctions-activity-name Resources: Resource: Type: AWS::StepFunctions::Activity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Properties: Name: !Ref 'Name' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-StepFunctions-Activity/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html#cfn-stepfunctions-activity-name Resources: Resource: Type: AWS::StepFunctions::Activity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Properties: Name: !Ref 'Name' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-StepFunctions-Activity/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html#cfn-stepfunctions-activity-name Resources: Resource: Type: AWS::StepFunctions::Activity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Properties: Name: !Ref 'Name' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-StepFunctions-StateMachine/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Parameters: DefinitionString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-definitionstring Default: null LoggingConfigurationIncludeExecutionData: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-loggingconfiguration.html#cfn-stepfunctions-statemachine-loggingconfiguration-includeexecutiondata AllowedValues: - 'true' - 'false' Default: null LoggingConfigurationLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-loggingconfiguration.html#cfn-stepfunctions-statemachine-loggingconfiguration-level Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-bucket S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-version Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-key StateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-statemachinename Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-rolearn StateMachineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-statemachinetype Default: null Resources: Resource: Type: AWS::StepFunctions::StateMachine Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Properties: DefinitionString: |- { "Ref": "DefinitionString" } LoggingConfiguration: IncludeExecutionData: !Ref 'LoggingConfigurationIncludeExecutionData' Level: !Ref 'LoggingConfigurationLevel' DefinitionSubstitutions: {} DefinitionS3Location: Bucket: !Ref 'S3LocationBucket' Version: !Ref 'S3LocationVersion' Key: !Ref 'S3LocationKey' StateMachineName: !Ref 'StateMachineName' RoleArn: !Ref 'RoleArn' StateMachineType: !Ref 'StateMachineType' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-StepFunctions-StateMachine/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Parameters: DefinitionString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-definitionstring Default: null LoggingConfigurationIncludeExecutionData: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-loggingconfiguration.html#cfn-stepfunctions-statemachine-loggingconfiguration-includeexecutiondata AllowedValues: - 'true' - 'false' Default: null LoggingConfigurationLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-loggingconfiguration.html#cfn-stepfunctions-statemachine-loggingconfiguration-level Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-bucket S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-version Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-key StateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-statemachinename Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-rolearn StateMachineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-statemachinetype Default: null Resources: Resource: Type: AWS::StepFunctions::StateMachine Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Properties: DefinitionString: |- { "Ref": "DefinitionString" } LoggingConfiguration: IncludeExecutionData: !Ref 'LoggingConfigurationIncludeExecutionData' Level: !Ref 'LoggingConfigurationLevel' DefinitionSubstitutions: {} DefinitionS3Location: Bucket: !Ref 'S3LocationBucket' Version: !Ref 'S3LocationVersion' Key: !Ref 'S3LocationKey' StateMachineName: !Ref 'StateMachineName' RoleArn: !Ref 'RoleArn' StateMachineType: !Ref 'StateMachineType' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-StepFunctions-StateMachine/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Parameters: DefinitionString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-definitionstring Default: null LoggingConfigurationIncludeExecutionData: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-loggingconfiguration.html#cfn-stepfunctions-statemachine-loggingconfiguration-includeexecutiondata AllowedValues: - 'true' - 'false' Default: null LoggingConfigurationLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-loggingconfiguration.html#cfn-stepfunctions-statemachine-loggingconfiguration-level Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-bucket S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-version Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-key StateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-statemachinename Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-rolearn StateMachineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-statemachinetype Default: null TracingConfigurationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-tracingconfiguration.html#cfn-stepfunctions-statemachine-tracingconfiguration-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::StepFunctions::StateMachine Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Properties: DefinitionString: |- { "Ref": "DefinitionString" } LoggingConfiguration: IncludeExecutionData: !Ref 'LoggingConfigurationIncludeExecutionData' Level: !Ref 'LoggingConfigurationLevel' DefinitionSubstitutions: {} DefinitionS3Location: Bucket: !Ref 'S3LocationBucket' Version: !Ref 'S3LocationVersion' Key: !Ref 'S3LocationKey' StateMachineName: !Ref 'StateMachineName' RoleArn: !Ref 'RoleArn' StateMachineType: !Ref 'StateMachineType' TracingConfiguration: Enabled: !Ref 'TracingConfigurationEnabled' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-StepFunctions-StateMachine/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Parameters: DefinitionString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-definitionstring Default: null LoggingConfigurationIncludeExecutionData: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-loggingconfiguration.html#cfn-stepfunctions-statemachine-loggingconfiguration-includeexecutiondata AllowedValues: - 'true' - 'false' Default: null LoggingConfigurationLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-loggingconfiguration.html#cfn-stepfunctions-statemachine-loggingconfiguration-level Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-bucket S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-version Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-key StateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-statemachinename Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-rolearn StateMachineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-statemachinetype Default: null Resources: Resource: Type: AWS::StepFunctions::StateMachine Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Properties: DefinitionString: |- { "Ref": "DefinitionString" } LoggingConfiguration: IncludeExecutionData: !Ref 'LoggingConfigurationIncludeExecutionData' Level: !Ref 'LoggingConfigurationLevel' DefinitionSubstitutions: {} DefinitionS3Location: Bucket: !Ref 'S3LocationBucket' Version: !Ref 'S3LocationVersion' Key: !Ref 'S3LocationKey' StateMachineName: !Ref 'StateMachineName' RoleArn: !Ref 'RoleArn' StateMachineType: !Ref 'StateMachineType' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-StepFunctions-StateMachine/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Parameters: DefinitionString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-definitionstring Default: null LoggingConfigurationIncludeExecutionData: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-loggingconfiguration.html#cfn-stepfunctions-statemachine-loggingconfiguration-includeexecutiondata AllowedValues: - 'true' - 'false' Default: null LoggingConfigurationLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-loggingconfiguration.html#cfn-stepfunctions-statemachine-loggingconfiguration-level Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-bucket S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-version Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-key StateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-statemachinename Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-rolearn StateMachineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-statemachinetype Default: null Resources: Resource: Type: AWS::StepFunctions::StateMachine Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Properties: DefinitionString: |- { "Ref": "DefinitionString" } LoggingConfiguration: IncludeExecutionData: !Ref 'LoggingConfigurationIncludeExecutionData' Level: !Ref 'LoggingConfigurationLevel' DefinitionSubstitutions: {} DefinitionS3Location: Bucket: !Ref 'S3LocationBucket' Version: !Ref 'S3LocationVersion' Key: !Ref 'S3LocationKey' StateMachineName: !Ref 'StateMachineName' RoleArn: !Ref 'RoleArn' StateMachineType: !Ref 'StateMachineType' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-StepFunctions-StateMachine/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Parameters: DefinitionString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-definitionstring Default: null LoggingConfigurationIncludeExecutionData: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-loggingconfiguration.html#cfn-stepfunctions-statemachine-loggingconfiguration-includeexecutiondata AllowedValues: - 'true' - 'false' Default: null LoggingConfigurationLevel: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-loggingconfiguration.html#cfn-stepfunctions-statemachine-loggingconfiguration-level Default: null S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-bucket S3LocationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-version Default: null S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-s3location.html#cfn-stepfunctions-statemachine-s3location-key StateMachineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-statemachinename Default: null RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-rolearn StateMachineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-statemachinetype Default: null Resources: Resource: Type: AWS::StepFunctions::StateMachine Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Properties: DefinitionString: |- { "Ref": "DefinitionString" } LoggingConfiguration: IncludeExecutionData: !Ref 'LoggingConfigurationIncludeExecutionData' Level: !Ref 'LoggingConfigurationLevel' DefinitionSubstitutions: {} DefinitionS3Location: Bucket: !Ref 'S3LocationBucket' Version: !Ref 'S3LocationVersion' Key: !Ref 'S3LocationKey' StateMachineName: !Ref 'StateMachineName' RoleArn: !Ref 'RoleArn' StateMachineType: !Ref 'StateMachineType' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Synthetics-Canary/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name CodeS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3bucket Default: null CodeS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3key Default: null CodeS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion Default: null CodeScript: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-script Default: null CodeHandler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler Default: null ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ScheduleDurationInSeconds: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-durationinseconds Default: null ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion SuccessRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-successretentionperiod Default: null FailureRetentionPeriod: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-failureretentionperiod Default: null VPCConfigVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-vpcid Default: null RunConfigTimeoutInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-timeoutinseconds RunConfigMemoryInMB: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html#cfn-synthetics-canary-runconfig-memoryinmb Default: null StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: S3Bucket: !Ref 'CodeS3Bucket' S3Key: !Ref 'CodeS3Key' S3ObjectVersion: !Ref 'CodeS3ObjectVersion' Script: !Ref 'CodeScript' Handler: !Ref 'CodeHandler' ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' DurationInSeconds: !Ref 'ScheduleDurationInSeconds' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' SuccessRetentionPeriod: !Ref 'SuccessRetentionPeriod' FailureRetentionPeriod: !Ref 'FailureRetentionPeriod' VPCConfig: VpcId: !Ref 'VPCConfigVpcId' RunConfig: TimeoutInSeconds: !Ref 'RunConfigTimeoutInSeconds' MemoryInMB: !Ref 'RunConfigMemoryInMB' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-Server/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Parameters: LoggingRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-loggingrole Default: null IdentityProviderDetailsInvocationRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-invocationrole IdentityProviderDetailsUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityproviderdetails.html#cfn-transfer-server-identityproviderdetails-url EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-endpointtype Default: null EndpointDetailsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcid Default: null EndpointDetailsVpcEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-endpointdetails.html#cfn-transfer-server-endpointdetails-vpcendpointid Default: null IdentityProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-identityprovidertype Default: null Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html#cfn-transfer-server-certificate Default: null Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Properties: LoggingRole: !Ref 'LoggingRole' IdentityProviderDetails: InvocationRole: !Ref 'IdentityProviderDetailsInvocationRole' Url: !Ref 'IdentityProviderDetailsUrl' EndpointType: !Ref 'EndpointType' EndpointDetails: VpcId: !Ref 'EndpointDetailsVpcId' VpcEndpointId: !Ref 'EndpointDetailsVpcEndpointId' IdentityProviderType: !Ref 'IdentityProviderType' Certificate: !Ref 'Certificate' Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-Transfer-User/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Policy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-policy Default: null Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role HomeDirectory: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectory Default: null HomeDirectoryType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-homedirectorytype Default: null ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Policy: !Ref 'Policy' Role: !Ref 'Role' HomeDirectory: !Ref 'HomeDirectory' HomeDirectoryType: !Ref 'HomeDirectoryType' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-ByteMatchSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-IPSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-Rule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SizeConstraintSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-WebACL/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAF-XssMatchSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-IPSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-IPSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-IPSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-IPSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-IPSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-IPSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-IPSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-IPSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-IPSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-IPSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-IPSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-IPSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-Rule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-Rule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-Rule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-Rule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-Rule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-Rule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-Rule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-Rule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-Rule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-Rule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-Rule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-Rule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACL/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACL/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACL/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACL/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACL/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACL/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACL/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACL/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACL/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACL/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACL/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACL/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-IPSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-RuleGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACL/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: DefaultActionAllow: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-allow Default: null DefaultActionBlock: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-defaultaction.html#cfn-wafv2-webacl-defaultaction-block Default: null Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-description Default: null Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-name Default: null Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: Allow: !Ref 'DefaultActionAllow' Block: !Ref 'DefaultActionBlock' Description: !Ref 'Description' Name: !Ref 'Name' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/AWS-WorkSpaces-Workspace/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid RootVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username UserVolumeEncryptionEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled AllowedValues: - 'true' - 'false' Default: null VolumeEncryptionKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey Default: null WorkspacePropertiesComputeTypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-computetypename Default: null WorkspacePropertiesRootVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-rootvolumesizegib Default: null WorkspacePropertiesRunningMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode Default: null WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmodeautostoptimeoutinminutes Default: null WorkspacePropertiesUserVolumeSizeGib: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-uservolumesizegib Default: null Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' RootVolumeEncryptionEnabled: !Ref 'RootVolumeEncryptionEnabled' UserName: !Ref 'UserName' UserVolumeEncryptionEnabled: !Ref 'UserVolumeEncryptionEnabled' VolumeEncryptionKey: !Ref 'VolumeEncryptionKey' WorkspaceProperties: ComputeTypeName: !Ref 'WorkspacePropertiesComputeTypeName' RootVolumeSizeGib: !Ref 'WorkspacePropertiesRootVolumeSizeGib' RunningMode: !Ref 'WorkspacePropertiesRunningMode' RunningModeAutoStopTimeoutInMinutes: !Ref 'WorkspacePropertiesRunningModeAutoStopTimeoutInMinutes' UserVolumeSizeGib: !Ref 'WorkspacePropertiesUserVolumeSizeGib' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/Alexa-ASK-Skill/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3BucketRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole Default: null SkillPackageS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion Default: null SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key SkillPackageOverridesManifest: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Default: null Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3BucketRole: !Ref 'SkillPackageS3BucketRole' S3ObjectVersion: !Ref 'SkillPackageS3ObjectVersion' S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' Overrides: Manifest: !Ref 'SkillPackageOverridesManifest' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/Alexa-ASK-Skill/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3BucketRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole Default: null SkillPackageS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion Default: null SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key SkillPackageOverridesManifest: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Default: null Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3BucketRole: !Ref 'SkillPackageS3BucketRole' S3ObjectVersion: !Ref 'SkillPackageS3ObjectVersion' S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' Overrides: Manifest: !Ref 'SkillPackageOverridesManifest' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/Alexa-ASK-Skill/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3BucketRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole Default: null SkillPackageS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion Default: null SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key SkillPackageOverridesManifest: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Default: null Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3BucketRole: !Ref 'SkillPackageS3BucketRole' S3ObjectVersion: !Ref 'SkillPackageS3ObjectVersion' S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' Overrides: Manifest: !Ref 'SkillPackageOverridesManifest' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/Alexa-ASK-Skill/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3BucketRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole Default: null SkillPackageS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion Default: null SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key SkillPackageOverridesManifest: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Default: null Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3BucketRole: !Ref 'SkillPackageS3BucketRole' S3ObjectVersion: !Ref 'SkillPackageS3ObjectVersion' S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' Overrides: Manifest: !Ref 'SkillPackageOverridesManifest' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/Alexa-ASK-Skill/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3BucketRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole Default: null SkillPackageS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion Default: null SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key SkillPackageOverridesManifest: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Default: null Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3BucketRole: !Ref 'SkillPackageS3BucketRole' S3ObjectVersion: !Ref 'SkillPackageS3ObjectVersion' S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' Overrides: Manifest: !Ref 'SkillPackageOverridesManifest' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/Alexa-ASK-Skill/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3BucketRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole Default: null SkillPackageS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion Default: null SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key SkillPackageOverridesManifest: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Default: null Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3BucketRole: !Ref 'SkillPackageS3BucketRole' S3ObjectVersion: !Ref 'SkillPackageS3ObjectVersion' S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' Overrides: Manifest: !Ref 'SkillPackageOverridesManifest' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/Alexa-ASK-Skill/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3BucketRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole Default: null SkillPackageS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion Default: null SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key SkillPackageOverridesManifest: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Default: null Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3BucketRole: !Ref 'SkillPackageS3BucketRole' S3ObjectVersion: !Ref 'SkillPackageS3ObjectVersion' S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' Overrides: Manifest: !Ref 'SkillPackageOverridesManifest' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/Alexa-ASK-Skill/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3BucketRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole Default: null SkillPackageS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion Default: null SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key SkillPackageOverridesManifest: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Default: null Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3BucketRole: !Ref 'SkillPackageS3BucketRole' S3ObjectVersion: !Ref 'SkillPackageS3ObjectVersion' S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' Overrides: Manifest: !Ref 'SkillPackageOverridesManifest' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/Alexa-ASK-Skill/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3BucketRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole Default: null SkillPackageS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion Default: null SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key SkillPackageOverridesManifest: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Default: null Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3BucketRole: !Ref 'SkillPackageS3BucketRole' S3ObjectVersion: !Ref 'SkillPackageS3ObjectVersion' S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' Overrides: Manifest: !Ref 'SkillPackageOverridesManifest' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/Alexa-ASK-Skill/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3BucketRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole Default: null SkillPackageS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion Default: null SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key SkillPackageOverridesManifest: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Default: null Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3BucketRole: !Ref 'SkillPackageS3BucketRole' S3ObjectVersion: !Ref 'SkillPackageS3ObjectVersion' S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' Overrides: Manifest: !Ref 'SkillPackageOverridesManifest' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/Alexa-ASK-Skill/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3BucketRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole Default: null SkillPackageS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion Default: null SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key SkillPackageOverridesManifest: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Default: null Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3BucketRole: !Ref 'SkillPackageS3BucketRole' S3ObjectVersion: !Ref 'SkillPackageS3ObjectVersion' S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' Overrides: Manifest: !Ref 'SkillPackageOverridesManifest' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/Alexa-ASK-Skill/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3BucketRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole Default: null SkillPackageS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion Default: null SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key SkillPackageOverridesManifest: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Default: null Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3BucketRole: !Ref 'SkillPackageS3BucketRole' S3ObjectVersion: !Ref 'SkillPackageS3ObjectVersion' S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' Overrides: Manifest: !Ref 'SkillPackageOverridesManifest' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/Alexa-ASK-Skill/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3BucketRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole Default: null SkillPackageS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion Default: null SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key SkillPackageOverridesManifest: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Default: null Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3BucketRole: !Ref 'SkillPackageS3BucketRole' S3ObjectVersion: !Ref 'SkillPackageS3ObjectVersion' S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' Overrides: Manifest: !Ref 'SkillPackageOverridesManifest' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/Alexa-ASK-Skill/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3BucketRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole Default: null SkillPackageS3ObjectVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion Default: null SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key SkillPackageOverridesManifest: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Default: null Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3BucketRole: !Ref 'SkillPackageS3BucketRole' S3ObjectVersion: !Ref 'SkillPackageS3ObjectVersion' S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' Overrides: Manifest: !Ref 'SkillPackageOverridesManifest' ================================================ FILE: reference/aws-cloudformation-resources-all-fields/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: AWS-ACMPCA-Certificate Owner: central-it@customer.com Description: AWS-ACMPCA-Certificate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ACMPCA-Certificate Tags: - Key: product-type Value: AWS-ACMPCA-Certificate Versions: - Name: 16.1.0 Description: AWS-ACMPCA-Certificate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ACMPCA-Certificate BranchName: 16.1.0 - Name: AWS-ACMPCA-CertificateAuthority Owner: central-it@customer.com Description: AWS-ACMPCA-CertificateAuthority Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ACMPCA-CertificateAuthority Tags: - Key: product-type Value: AWS-ACMPCA-CertificateAuthority Versions: - Name: 16.1.0 Description: AWS-ACMPCA-CertificateAuthority-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ACMPCA-CertificateAuthority BranchName: 16.1.0 - Name: AWS-ACMPCA-CertificateAuthorityActivation Owner: central-it@customer.com Description: AWS-ACMPCA-CertificateAuthorityActivation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ACMPCA-CertificateAuthorityActivation Tags: - Key: product-type Value: AWS-ACMPCA-CertificateAuthorityActivation Versions: - Name: 16.1.0 Description: AWS-ACMPCA-CertificateAuthorityActivation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ACMPCA-CertificateAuthorityActivation BranchName: 16.1.0 - Name: AWS-AccessAnalyzer-Analyzer Owner: central-it@customer.com Description: AWS-AccessAnalyzer-Analyzer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AccessAnalyzer-Analyzer Tags: - Key: product-type Value: AWS-AccessAnalyzer-Analyzer Versions: - Name: 16.1.0 Description: AWS-AccessAnalyzer-Analyzer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AccessAnalyzer-Analyzer BranchName: 16.1.0 - Name: AWS-AmazonMQ-Broker Owner: central-it@customer.com Description: AWS-AmazonMQ-Broker Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AmazonMQ-Broker Tags: - Key: product-type Value: AWS-AmazonMQ-Broker Versions: - Name: 16.1.0 Description: AWS-AmazonMQ-Broker-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AmazonMQ-Broker BranchName: 16.1.0 - Name: AWS-AmazonMQ-Configuration Owner: central-it@customer.com Description: AWS-AmazonMQ-Configuration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AmazonMQ-Configuration Tags: - Key: product-type Value: AWS-AmazonMQ-Configuration Versions: - Name: 16.1.0 Description: AWS-AmazonMQ-Configuration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AmazonMQ-Configuration BranchName: 16.1.0 - Name: AWS-AmazonMQ-ConfigurationAssociation Owner: central-it@customer.com Description: AWS-AmazonMQ-ConfigurationAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AmazonMQ-ConfigurationAssociation Tags: - Key: product-type Value: AWS-AmazonMQ-ConfigurationAssociation Versions: - Name: 16.1.0 Description: AWS-AmazonMQ-ConfigurationAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AmazonMQ-ConfigurationAssociation BranchName: 16.1.0 - Name: AWS-Amplify-App Owner: central-it@customer.com Description: AWS-Amplify-App Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Amplify-App Tags: - Key: product-type Value: AWS-Amplify-App Versions: - Name: 16.1.0 Description: AWS-Amplify-App-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Amplify-App BranchName: 16.1.0 - Name: AWS-Amplify-Branch Owner: central-it@customer.com Description: AWS-Amplify-Branch Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Amplify-Branch Tags: - Key: product-type Value: AWS-Amplify-Branch Versions: - Name: 16.1.0 Description: AWS-Amplify-Branch-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Amplify-Branch BranchName: 16.1.0 - Name: AWS-Amplify-Domain Owner: central-it@customer.com Description: AWS-Amplify-Domain Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Amplify-Domain Tags: - Key: product-type Value: AWS-Amplify-Domain Versions: - Name: 16.1.0 Description: AWS-Amplify-Domain-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Amplify-Domain BranchName: 16.1.0 - Name: AWS-ApiGateway-Account Owner: central-it@customer.com Description: AWS-ApiGateway-Account Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-Account Tags: - Key: product-type Value: AWS-ApiGateway-Account Versions: - Name: 16.1.0 Description: AWS-ApiGateway-Account-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-Account BranchName: 16.1.0 - Name: AWS-ApiGateway-ApiKey Owner: central-it@customer.com Description: AWS-ApiGateway-ApiKey Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-ApiKey Tags: - Key: product-type Value: AWS-ApiGateway-ApiKey Versions: - Name: 16.1.0 Description: AWS-ApiGateway-ApiKey-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-ApiKey BranchName: 16.1.0 - Name: AWS-ApiGateway-Authorizer Owner: central-it@customer.com Description: AWS-ApiGateway-Authorizer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-Authorizer Tags: - Key: product-type Value: AWS-ApiGateway-Authorizer Versions: - Name: 16.1.0 Description: AWS-ApiGateway-Authorizer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-Authorizer BranchName: 16.1.0 - Name: AWS-ApiGateway-BasePathMapping Owner: central-it@customer.com Description: AWS-ApiGateway-BasePathMapping Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-BasePathMapping Tags: - Key: product-type Value: AWS-ApiGateway-BasePathMapping Versions: - Name: 16.1.0 Description: AWS-ApiGateway-BasePathMapping-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-BasePathMapping BranchName: 16.1.0 - Name: AWS-ApiGateway-ClientCertificate Owner: central-it@customer.com Description: AWS-ApiGateway-ClientCertificate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-ClientCertificate Tags: - Key: product-type Value: AWS-ApiGateway-ClientCertificate Versions: - Name: 16.1.0 Description: AWS-ApiGateway-ClientCertificate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-ClientCertificate BranchName: 16.1.0 - Name: AWS-ApiGateway-Deployment Owner: central-it@customer.com Description: AWS-ApiGateway-Deployment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-Deployment Tags: - Key: product-type Value: AWS-ApiGateway-Deployment Versions: - Name: 16.1.0 Description: AWS-ApiGateway-Deployment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-Deployment BranchName: 16.1.0 - Name: AWS-ApiGateway-DocumentationPart Owner: central-it@customer.com Description: AWS-ApiGateway-DocumentationPart Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-DocumentationPart Tags: - Key: product-type Value: AWS-ApiGateway-DocumentationPart Versions: - Name: 16.1.0 Description: AWS-ApiGateway-DocumentationPart-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-DocumentationPart BranchName: 16.1.0 - Name: AWS-ApiGateway-DocumentationVersion Owner: central-it@customer.com Description: AWS-ApiGateway-DocumentationVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-DocumentationVersion Tags: - Key: product-type Value: AWS-ApiGateway-DocumentationVersion Versions: - Name: 16.1.0 Description: AWS-ApiGateway-DocumentationVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-DocumentationVersion BranchName: 16.1.0 - Name: AWS-ApiGateway-DomainName Owner: central-it@customer.com Description: AWS-ApiGateway-DomainName Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-DomainName Tags: - Key: product-type Value: AWS-ApiGateway-DomainName Versions: - Name: 16.1.0 Description: AWS-ApiGateway-DomainName-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-DomainName BranchName: 16.1.0 - Name: AWS-ApiGateway-GatewayResponse Owner: central-it@customer.com Description: AWS-ApiGateway-GatewayResponse Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-GatewayResponse Tags: - Key: product-type Value: AWS-ApiGateway-GatewayResponse Versions: - Name: 16.1.0 Description: AWS-ApiGateway-GatewayResponse-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-GatewayResponse BranchName: 16.1.0 - Name: AWS-ApiGateway-Method Owner: central-it@customer.com Description: AWS-ApiGateway-Method Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-Method Tags: - Key: product-type Value: AWS-ApiGateway-Method Versions: - Name: 16.1.0 Description: AWS-ApiGateway-Method-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-Method BranchName: 16.1.0 - Name: AWS-ApiGateway-Model Owner: central-it@customer.com Description: AWS-ApiGateway-Model Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-Model Tags: - Key: product-type Value: AWS-ApiGateway-Model Versions: - Name: 16.1.0 Description: AWS-ApiGateway-Model-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-Model BranchName: 16.1.0 - Name: AWS-ApiGateway-RequestValidator Owner: central-it@customer.com Description: AWS-ApiGateway-RequestValidator Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-RequestValidator Tags: - Key: product-type Value: AWS-ApiGateway-RequestValidator Versions: - Name: 16.1.0 Description: AWS-ApiGateway-RequestValidator-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-RequestValidator BranchName: 16.1.0 - Name: AWS-ApiGateway-Resource Owner: central-it@customer.com Description: AWS-ApiGateway-Resource Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-Resource Tags: - Key: product-type Value: AWS-ApiGateway-Resource Versions: - Name: 16.1.0 Description: AWS-ApiGateway-Resource-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-Resource BranchName: 16.1.0 - Name: AWS-ApiGateway-RestApi Owner: central-it@customer.com Description: AWS-ApiGateway-RestApi Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-RestApi Tags: - Key: product-type Value: AWS-ApiGateway-RestApi Versions: - Name: 16.1.0 Description: AWS-ApiGateway-RestApi-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-RestApi BranchName: 16.1.0 - Name: AWS-ApiGateway-Stage Owner: central-it@customer.com Description: AWS-ApiGateway-Stage Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-Stage Tags: - Key: product-type Value: AWS-ApiGateway-Stage Versions: - Name: 16.1.0 Description: AWS-ApiGateway-Stage-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-Stage BranchName: 16.1.0 - Name: AWS-ApiGateway-UsagePlan Owner: central-it@customer.com Description: AWS-ApiGateway-UsagePlan Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-UsagePlan Tags: - Key: product-type Value: AWS-ApiGateway-UsagePlan Versions: - Name: 16.1.0 Description: AWS-ApiGateway-UsagePlan-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-UsagePlan BranchName: 16.1.0 - Name: AWS-ApiGateway-UsagePlanKey Owner: central-it@customer.com Description: AWS-ApiGateway-UsagePlanKey Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-UsagePlanKey Tags: - Key: product-type Value: AWS-ApiGateway-UsagePlanKey Versions: - Name: 16.1.0 Description: AWS-ApiGateway-UsagePlanKey-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-UsagePlanKey BranchName: 16.1.0 - Name: AWS-ApiGateway-VpcLink Owner: central-it@customer.com Description: AWS-ApiGateway-VpcLink Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-VpcLink Tags: - Key: product-type Value: AWS-ApiGateway-VpcLink Versions: - Name: 16.1.0 Description: AWS-ApiGateway-VpcLink-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-VpcLink BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-Api Owner: central-it@customer.com Description: AWS-ApiGatewayV2-Api Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-Api Tags: - Key: product-type Value: AWS-ApiGatewayV2-Api Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-Api-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-Api BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-ApiMapping Owner: central-it@customer.com Description: AWS-ApiGatewayV2-ApiMapping Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-ApiMapping Tags: - Key: product-type Value: AWS-ApiGatewayV2-ApiMapping Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-ApiMapping-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-ApiMapping BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-Authorizer Owner: central-it@customer.com Description: AWS-ApiGatewayV2-Authorizer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-Authorizer Tags: - Key: product-type Value: AWS-ApiGatewayV2-Authorizer Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-Authorizer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-Authorizer BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-Deployment Owner: central-it@customer.com Description: AWS-ApiGatewayV2-Deployment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-Deployment Tags: - Key: product-type Value: AWS-ApiGatewayV2-Deployment Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-Deployment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-Deployment BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-DomainName Owner: central-it@customer.com Description: AWS-ApiGatewayV2-DomainName Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-DomainName Tags: - Key: product-type Value: AWS-ApiGatewayV2-DomainName Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-DomainName-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-DomainName BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-Integration Owner: central-it@customer.com Description: AWS-ApiGatewayV2-Integration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-Integration Tags: - Key: product-type Value: AWS-ApiGatewayV2-Integration Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-Integration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-Integration BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-IntegrationResponse Owner: central-it@customer.com Description: AWS-ApiGatewayV2-IntegrationResponse Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-IntegrationResponse Tags: - Key: product-type Value: AWS-ApiGatewayV2-IntegrationResponse Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-IntegrationResponse-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-IntegrationResponse BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-Model Owner: central-it@customer.com Description: AWS-ApiGatewayV2-Model Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-Model Tags: - Key: product-type Value: AWS-ApiGatewayV2-Model Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-Model-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-Model BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-Route Owner: central-it@customer.com Description: AWS-ApiGatewayV2-Route Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-Route Tags: - Key: product-type Value: AWS-ApiGatewayV2-Route Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-Route-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-Route BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-RouteResponse Owner: central-it@customer.com Description: AWS-ApiGatewayV2-RouteResponse Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-RouteResponse Tags: - Key: product-type Value: AWS-ApiGatewayV2-RouteResponse Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-RouteResponse-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-RouteResponse BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-Stage Owner: central-it@customer.com Description: AWS-ApiGatewayV2-Stage Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-Stage Tags: - Key: product-type Value: AWS-ApiGatewayV2-Stage Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-Stage-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-Stage BranchName: 16.1.0 - Name: AWS-AppConfig-Application Owner: central-it@customer.com Description: AWS-AppConfig-Application Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppConfig-Application Tags: - Key: product-type Value: AWS-AppConfig-Application Versions: - Name: 16.1.0 Description: AWS-AppConfig-Application-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppConfig-Application BranchName: 16.1.0 - Name: AWS-AppConfig-ConfigurationProfile Owner: central-it@customer.com Description: AWS-AppConfig-ConfigurationProfile Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppConfig-ConfigurationProfile Tags: - Key: product-type Value: AWS-AppConfig-ConfigurationProfile Versions: - Name: 16.1.0 Description: AWS-AppConfig-ConfigurationProfile-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppConfig-ConfigurationProfile BranchName: 16.1.0 - Name: AWS-AppConfig-Deployment Owner: central-it@customer.com Description: AWS-AppConfig-Deployment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppConfig-Deployment Tags: - Key: product-type Value: AWS-AppConfig-Deployment Versions: - Name: 16.1.0 Description: AWS-AppConfig-Deployment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppConfig-Deployment BranchName: 16.1.0 - Name: AWS-AppConfig-DeploymentStrategy Owner: central-it@customer.com Description: AWS-AppConfig-DeploymentStrategy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppConfig-DeploymentStrategy Tags: - Key: product-type Value: AWS-AppConfig-DeploymentStrategy Versions: - Name: 16.1.0 Description: AWS-AppConfig-DeploymentStrategy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppConfig-DeploymentStrategy BranchName: 16.1.0 - Name: AWS-AppConfig-Environment Owner: central-it@customer.com Description: AWS-AppConfig-Environment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppConfig-Environment Tags: - Key: product-type Value: AWS-AppConfig-Environment Versions: - Name: 16.1.0 Description: AWS-AppConfig-Environment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppConfig-Environment BranchName: 16.1.0 - Name: AWS-AppConfig-HostedConfigurationVersion Owner: central-it@customer.com Description: AWS-AppConfig-HostedConfigurationVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppConfig-HostedConfigurationVersion Tags: - Key: product-type Value: AWS-AppConfig-HostedConfigurationVersion Versions: - Name: 16.1.0 Description: AWS-AppConfig-HostedConfigurationVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppConfig-HostedConfigurationVersion BranchName: 16.1.0 - Name: AWS-AppMesh-Mesh Owner: central-it@customer.com Description: AWS-AppMesh-Mesh Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppMesh-Mesh Tags: - Key: product-type Value: AWS-AppMesh-Mesh Versions: - Name: 16.1.0 Description: AWS-AppMesh-Mesh-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppMesh-Mesh BranchName: 16.1.0 - Name: AWS-AppMesh-Route Owner: central-it@customer.com Description: AWS-AppMesh-Route Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppMesh-Route Tags: - Key: product-type Value: AWS-AppMesh-Route Versions: - Name: 16.1.0 Description: AWS-AppMesh-Route-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppMesh-Route BranchName: 16.1.0 - Name: AWS-AppMesh-VirtualNode Owner: central-it@customer.com Description: AWS-AppMesh-VirtualNode Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppMesh-VirtualNode Tags: - Key: product-type Value: AWS-AppMesh-VirtualNode Versions: - Name: 16.1.0 Description: AWS-AppMesh-VirtualNode-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppMesh-VirtualNode BranchName: 16.1.0 - Name: AWS-AppMesh-VirtualRouter Owner: central-it@customer.com Description: AWS-AppMesh-VirtualRouter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppMesh-VirtualRouter Tags: - Key: product-type Value: AWS-AppMesh-VirtualRouter Versions: - Name: 16.1.0 Description: AWS-AppMesh-VirtualRouter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppMesh-VirtualRouter BranchName: 16.1.0 - Name: AWS-AppMesh-VirtualService Owner: central-it@customer.com Description: AWS-AppMesh-VirtualService Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppMesh-VirtualService Tags: - Key: product-type Value: AWS-AppMesh-VirtualService Versions: - Name: 16.1.0 Description: AWS-AppMesh-VirtualService-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppMesh-VirtualService BranchName: 16.1.0 - Name: AWS-AppStream-DirectoryConfig Owner: central-it@customer.com Description: AWS-AppStream-DirectoryConfig Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppStream-DirectoryConfig Tags: - Key: product-type Value: AWS-AppStream-DirectoryConfig Versions: - Name: 16.1.0 Description: AWS-AppStream-DirectoryConfig-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppStream-DirectoryConfig BranchName: 16.1.0 - Name: AWS-AppStream-Fleet Owner: central-it@customer.com Description: AWS-AppStream-Fleet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppStream-Fleet Tags: - Key: product-type Value: AWS-AppStream-Fleet Versions: - Name: 16.1.0 Description: AWS-AppStream-Fleet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppStream-Fleet BranchName: 16.1.0 - Name: AWS-AppStream-ImageBuilder Owner: central-it@customer.com Description: AWS-AppStream-ImageBuilder Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppStream-ImageBuilder Tags: - Key: product-type Value: AWS-AppStream-ImageBuilder Versions: - Name: 16.1.0 Description: AWS-AppStream-ImageBuilder-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppStream-ImageBuilder BranchName: 16.1.0 - Name: AWS-AppStream-Stack Owner: central-it@customer.com Description: AWS-AppStream-Stack Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppStream-Stack Tags: - Key: product-type Value: AWS-AppStream-Stack Versions: - Name: 16.1.0 Description: AWS-AppStream-Stack-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppStream-Stack BranchName: 16.1.0 - Name: AWS-AppStream-StackFleetAssociation Owner: central-it@customer.com Description: AWS-AppStream-StackFleetAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppStream-StackFleetAssociation Tags: - Key: product-type Value: AWS-AppStream-StackFleetAssociation Versions: - Name: 16.1.0 Description: AWS-AppStream-StackFleetAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppStream-StackFleetAssociation BranchName: 16.1.0 - Name: AWS-AppStream-StackUserAssociation Owner: central-it@customer.com Description: AWS-AppStream-StackUserAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppStream-StackUserAssociation Tags: - Key: product-type Value: AWS-AppStream-StackUserAssociation Versions: - Name: 16.1.0 Description: AWS-AppStream-StackUserAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppStream-StackUserAssociation BranchName: 16.1.0 - Name: AWS-AppStream-User Owner: central-it@customer.com Description: AWS-AppStream-User Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppStream-User Tags: - Key: product-type Value: AWS-AppStream-User Versions: - Name: 16.1.0 Description: AWS-AppStream-User-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppStream-User BranchName: 16.1.0 - Name: AWS-AppSync-ApiCache Owner: central-it@customer.com Description: AWS-AppSync-ApiCache Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppSync-ApiCache Tags: - Key: product-type Value: AWS-AppSync-ApiCache Versions: - Name: 16.1.0 Description: AWS-AppSync-ApiCache-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppSync-ApiCache BranchName: 16.1.0 - Name: AWS-AppSync-ApiKey Owner: central-it@customer.com Description: AWS-AppSync-ApiKey Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppSync-ApiKey Tags: - Key: product-type Value: AWS-AppSync-ApiKey Versions: - Name: 16.1.0 Description: AWS-AppSync-ApiKey-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppSync-ApiKey BranchName: 16.1.0 - Name: AWS-AppSync-DataSource Owner: central-it@customer.com Description: AWS-AppSync-DataSource Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppSync-DataSource Tags: - Key: product-type Value: AWS-AppSync-DataSource Versions: - Name: 16.1.0 Description: AWS-AppSync-DataSource-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppSync-DataSource BranchName: 16.1.0 - Name: AWS-AppSync-FunctionConfiguration Owner: central-it@customer.com Description: AWS-AppSync-FunctionConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppSync-FunctionConfiguration Tags: - Key: product-type Value: AWS-AppSync-FunctionConfiguration Versions: - Name: 16.1.0 Description: AWS-AppSync-FunctionConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppSync-FunctionConfiguration BranchName: 16.1.0 - Name: AWS-AppSync-GraphQLApi Owner: central-it@customer.com Description: AWS-AppSync-GraphQLApi Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppSync-GraphQLApi Tags: - Key: product-type Value: AWS-AppSync-GraphQLApi Versions: - Name: 16.1.0 Description: AWS-AppSync-GraphQLApi-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppSync-GraphQLApi BranchName: 16.1.0 - Name: AWS-AppSync-GraphQLSchema Owner: central-it@customer.com Description: AWS-AppSync-GraphQLSchema Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppSync-GraphQLSchema Tags: - Key: product-type Value: AWS-AppSync-GraphQLSchema Versions: - Name: 16.1.0 Description: AWS-AppSync-GraphQLSchema-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppSync-GraphQLSchema BranchName: 16.1.0 - Name: AWS-AppSync-Resolver Owner: central-it@customer.com Description: AWS-AppSync-Resolver Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppSync-Resolver Tags: - Key: product-type Value: AWS-AppSync-Resolver Versions: - Name: 16.1.0 Description: AWS-AppSync-Resolver-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppSync-Resolver BranchName: 16.1.0 - Name: AWS-ApplicationAutoScaling-ScalableTarget Owner: central-it@customer.com Description: AWS-ApplicationAutoScaling-ScalableTarget Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApplicationAutoScaling-ScalableTarget Tags: - Key: product-type Value: AWS-ApplicationAutoScaling-ScalableTarget Versions: - Name: 16.1.0 Description: AWS-ApplicationAutoScaling-ScalableTarget-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApplicationAutoScaling-ScalableTarget BranchName: 16.1.0 - Name: AWS-ApplicationAutoScaling-ScalingPolicy Owner: central-it@customer.com Description: AWS-ApplicationAutoScaling-ScalingPolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApplicationAutoScaling-ScalingPolicy Tags: - Key: product-type Value: AWS-ApplicationAutoScaling-ScalingPolicy Versions: - Name: 16.1.0 Description: AWS-ApplicationAutoScaling-ScalingPolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApplicationAutoScaling-ScalingPolicy BranchName: 16.1.0 - Name: AWS-Athena-DataCatalog Owner: central-it@customer.com Description: AWS-Athena-DataCatalog Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Athena-DataCatalog Tags: - Key: product-type Value: AWS-Athena-DataCatalog Versions: - Name: 16.1.0 Description: AWS-Athena-DataCatalog-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Athena-DataCatalog BranchName: 16.1.0 - Name: AWS-Athena-NamedQuery Owner: central-it@customer.com Description: AWS-Athena-NamedQuery Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Athena-NamedQuery Tags: - Key: product-type Value: AWS-Athena-NamedQuery Versions: - Name: 16.1.0 Description: AWS-Athena-NamedQuery-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Athena-NamedQuery BranchName: 16.1.0 - Name: AWS-Athena-WorkGroup Owner: central-it@customer.com Description: AWS-Athena-WorkGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Athena-WorkGroup Tags: - Key: product-type Value: AWS-Athena-WorkGroup Versions: - Name: 16.1.0 Description: AWS-Athena-WorkGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Athena-WorkGroup BranchName: 16.1.0 - Name: AWS-AutoScaling-AutoScalingGroup Owner: central-it@customer.com Description: AWS-AutoScaling-AutoScalingGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AutoScaling-AutoScalingGroup Tags: - Key: product-type Value: AWS-AutoScaling-AutoScalingGroup Versions: - Name: 16.1.0 Description: AWS-AutoScaling-AutoScalingGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AutoScaling-AutoScalingGroup BranchName: 16.1.0 - Name: AWS-AutoScaling-LaunchConfiguration Owner: central-it@customer.com Description: AWS-AutoScaling-LaunchConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AutoScaling-LaunchConfiguration Tags: - Key: product-type Value: AWS-AutoScaling-LaunchConfiguration Versions: - Name: 16.1.0 Description: AWS-AutoScaling-LaunchConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AutoScaling-LaunchConfiguration BranchName: 16.1.0 - Name: AWS-AutoScaling-LifecycleHook Owner: central-it@customer.com Description: AWS-AutoScaling-LifecycleHook Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AutoScaling-LifecycleHook Tags: - Key: product-type Value: AWS-AutoScaling-LifecycleHook Versions: - Name: 16.1.0 Description: AWS-AutoScaling-LifecycleHook-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AutoScaling-LifecycleHook BranchName: 16.1.0 - Name: AWS-AutoScaling-ScalingPolicy Owner: central-it@customer.com Description: AWS-AutoScaling-ScalingPolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AutoScaling-ScalingPolicy Tags: - Key: product-type Value: AWS-AutoScaling-ScalingPolicy Versions: - Name: 16.1.0 Description: AWS-AutoScaling-ScalingPolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AutoScaling-ScalingPolicy BranchName: 16.1.0 - Name: AWS-AutoScaling-ScheduledAction Owner: central-it@customer.com Description: AWS-AutoScaling-ScheduledAction Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AutoScaling-ScheduledAction Tags: - Key: product-type Value: AWS-AutoScaling-ScheduledAction Versions: - Name: 16.1.0 Description: AWS-AutoScaling-ScheduledAction-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AutoScaling-ScheduledAction BranchName: 16.1.0 - Name: AWS-AutoScalingPlans-ScalingPlan Owner: central-it@customer.com Description: AWS-AutoScalingPlans-ScalingPlan Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AutoScalingPlans-ScalingPlan Tags: - Key: product-type Value: AWS-AutoScalingPlans-ScalingPlan Versions: - Name: 16.1.0 Description: AWS-AutoScalingPlans-ScalingPlan-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AutoScalingPlans-ScalingPlan BranchName: 16.1.0 - Name: AWS-Backup-BackupPlan Owner: central-it@customer.com Description: AWS-Backup-BackupPlan Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Backup-BackupPlan Tags: - Key: product-type Value: AWS-Backup-BackupPlan Versions: - Name: 16.1.0 Description: AWS-Backup-BackupPlan-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Backup-BackupPlan BranchName: 16.1.0 - Name: AWS-Backup-BackupSelection Owner: central-it@customer.com Description: AWS-Backup-BackupSelection Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Backup-BackupSelection Tags: - Key: product-type Value: AWS-Backup-BackupSelection Versions: - Name: 16.1.0 Description: AWS-Backup-BackupSelection-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Backup-BackupSelection BranchName: 16.1.0 - Name: AWS-Backup-BackupVault Owner: central-it@customer.com Description: AWS-Backup-BackupVault Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Backup-BackupVault Tags: - Key: product-type Value: AWS-Backup-BackupVault Versions: - Name: 16.1.0 Description: AWS-Backup-BackupVault-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Backup-BackupVault BranchName: 16.1.0 - Name: AWS-Batch-ComputeEnvironment Owner: central-it@customer.com Description: AWS-Batch-ComputeEnvironment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Batch-ComputeEnvironment Tags: - Key: product-type Value: AWS-Batch-ComputeEnvironment Versions: - Name: 16.1.0 Description: AWS-Batch-ComputeEnvironment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Batch-ComputeEnvironment BranchName: 16.1.0 - Name: AWS-Batch-JobDefinition Owner: central-it@customer.com Description: AWS-Batch-JobDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Batch-JobDefinition Tags: - Key: product-type Value: AWS-Batch-JobDefinition Versions: - Name: 16.1.0 Description: AWS-Batch-JobDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Batch-JobDefinition BranchName: 16.1.0 - Name: AWS-Batch-JobQueue Owner: central-it@customer.com Description: AWS-Batch-JobQueue Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Batch-JobQueue Tags: - Key: product-type Value: AWS-Batch-JobQueue Versions: - Name: 16.1.0 Description: AWS-Batch-JobQueue-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Batch-JobQueue BranchName: 16.1.0 - Name: AWS-Budgets-Budget Owner: central-it@customer.com Description: AWS-Budgets-Budget Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Budgets-Budget Tags: - Key: product-type Value: AWS-Budgets-Budget Versions: - Name: 16.1.0 Description: AWS-Budgets-Budget-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Budgets-Budget BranchName: 16.1.0 - Name: AWS-CE-CostCategory Owner: central-it@customer.com Description: AWS-CE-CostCategory Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CE-CostCategory Tags: - Key: product-type Value: AWS-CE-CostCategory Versions: - Name: 16.1.0 Description: AWS-CE-CostCategory-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CE-CostCategory BranchName: 16.1.0 - Name: AWS-Cassandra-Keyspace Owner: central-it@customer.com Description: AWS-Cassandra-Keyspace Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cassandra-Keyspace Tags: - Key: product-type Value: AWS-Cassandra-Keyspace Versions: - Name: 16.1.0 Description: AWS-Cassandra-Keyspace-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cassandra-Keyspace BranchName: 16.1.0 - Name: AWS-Cassandra-Table Owner: central-it@customer.com Description: AWS-Cassandra-Table Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cassandra-Table Tags: - Key: product-type Value: AWS-Cassandra-Table Versions: - Name: 16.1.0 Description: AWS-Cassandra-Table-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cassandra-Table BranchName: 16.1.0 - Name: AWS-CertificateManager-Certificate Owner: central-it@customer.com Description: AWS-CertificateManager-Certificate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CertificateManager-Certificate Tags: - Key: product-type Value: AWS-CertificateManager-Certificate Versions: - Name: 16.1.0 Description: AWS-CertificateManager-Certificate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CertificateManager-Certificate BranchName: 16.1.0 - Name: AWS-Chatbot-SlackChannelConfiguration Owner: central-it@customer.com Description: AWS-Chatbot-SlackChannelConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Chatbot-SlackChannelConfiguration Tags: - Key: product-type Value: AWS-Chatbot-SlackChannelConfiguration Versions: - Name: 16.1.0 Description: AWS-Chatbot-SlackChannelConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Chatbot-SlackChannelConfiguration BranchName: 16.1.0 - Name: AWS-Cloud9-EnvironmentEC2 Owner: central-it@customer.com Description: AWS-Cloud9-EnvironmentEC2 Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cloud9-EnvironmentEC2 Tags: - Key: product-type Value: AWS-Cloud9-EnvironmentEC2 Versions: - Name: 16.1.0 Description: AWS-Cloud9-EnvironmentEC2-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cloud9-EnvironmentEC2 BranchName: 16.1.0 - Name: AWS-CloudFormation-CustomResource Owner: central-it@customer.com Description: AWS-CloudFormation-CustomResource Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFormation-CustomResource Tags: - Key: product-type Value: AWS-CloudFormation-CustomResource Versions: - Name: 16.1.0 Description: AWS-CloudFormation-CustomResource-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFormation-CustomResource BranchName: 16.1.0 - Name: AWS-CloudFormation-Macro Owner: central-it@customer.com Description: AWS-CloudFormation-Macro Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFormation-Macro Tags: - Key: product-type Value: AWS-CloudFormation-Macro Versions: - Name: 16.1.0 Description: AWS-CloudFormation-Macro-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFormation-Macro BranchName: 16.1.0 - Name: AWS-CloudFormation-Stack Owner: central-it@customer.com Description: AWS-CloudFormation-Stack Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFormation-Stack Tags: - Key: product-type Value: AWS-CloudFormation-Stack Versions: - Name: 16.1.0 Description: AWS-CloudFormation-Stack-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFormation-Stack BranchName: 16.1.0 - Name: AWS-CloudFormation-WaitCondition Owner: central-it@customer.com Description: AWS-CloudFormation-WaitCondition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFormation-WaitCondition Tags: - Key: product-type Value: AWS-CloudFormation-WaitCondition Versions: - Name: 16.1.0 Description: AWS-CloudFormation-WaitCondition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFormation-WaitCondition BranchName: 16.1.0 - Name: AWS-CloudFormation-WaitConditionHandle Owner: central-it@customer.com Description: AWS-CloudFormation-WaitConditionHandle Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFormation-WaitConditionHandle Tags: - Key: product-type Value: AWS-CloudFormation-WaitConditionHandle Versions: - Name: 16.1.0 Description: AWS-CloudFormation-WaitConditionHandle-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFormation-WaitConditionHandle BranchName: 16.1.0 - Name: AWS-CloudFront-CloudFrontOriginAccessIdentity Owner: central-it@customer.com Description: AWS-CloudFront-CloudFrontOriginAccessIdentity Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFront-CloudFrontOriginAccessIdentity Tags: - Key: product-type Value: AWS-CloudFront-CloudFrontOriginAccessIdentity Versions: - Name: 16.1.0 Description: AWS-CloudFront-CloudFrontOriginAccessIdentity-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFront-CloudFrontOriginAccessIdentity BranchName: 16.1.0 - Name: AWS-CloudFront-Distribution Owner: central-it@customer.com Description: AWS-CloudFront-Distribution Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFront-Distribution Tags: - Key: product-type Value: AWS-CloudFront-Distribution Versions: - Name: 16.1.0 Description: AWS-CloudFront-Distribution-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFront-Distribution BranchName: 16.1.0 - Name: AWS-CloudFront-StreamingDistribution Owner: central-it@customer.com Description: AWS-CloudFront-StreamingDistribution Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFront-StreamingDistribution Tags: - Key: product-type Value: AWS-CloudFront-StreamingDistribution Versions: - Name: 16.1.0 Description: AWS-CloudFront-StreamingDistribution-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFront-StreamingDistribution BranchName: 16.1.0 - Name: AWS-CloudTrail-Trail Owner: central-it@customer.com Description: AWS-CloudTrail-Trail Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudTrail-Trail Tags: - Key: product-type Value: AWS-CloudTrail-Trail Versions: - Name: 16.1.0 Description: AWS-CloudTrail-Trail-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudTrail-Trail BranchName: 16.1.0 - Name: AWS-CloudWatch-Alarm Owner: central-it@customer.com Description: AWS-CloudWatch-Alarm Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudWatch-Alarm Tags: - Key: product-type Value: AWS-CloudWatch-Alarm Versions: - Name: 16.1.0 Description: AWS-CloudWatch-Alarm-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudWatch-Alarm BranchName: 16.1.0 - Name: AWS-CloudWatch-AnomalyDetector Owner: central-it@customer.com Description: AWS-CloudWatch-AnomalyDetector Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudWatch-AnomalyDetector Tags: - Key: product-type Value: AWS-CloudWatch-AnomalyDetector Versions: - Name: 16.1.0 Description: AWS-CloudWatch-AnomalyDetector-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudWatch-AnomalyDetector BranchName: 16.1.0 - Name: AWS-CloudWatch-CompositeAlarm Owner: central-it@customer.com Description: AWS-CloudWatch-CompositeAlarm Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudWatch-CompositeAlarm Tags: - Key: product-type Value: AWS-CloudWatch-CompositeAlarm Versions: - Name: 16.1.0 Description: AWS-CloudWatch-CompositeAlarm-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudWatch-CompositeAlarm BranchName: 16.1.0 - Name: AWS-CloudWatch-Dashboard Owner: central-it@customer.com Description: AWS-CloudWatch-Dashboard Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudWatch-Dashboard Tags: - Key: product-type Value: AWS-CloudWatch-Dashboard Versions: - Name: 16.1.0 Description: AWS-CloudWatch-Dashboard-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudWatch-Dashboard BranchName: 16.1.0 - Name: AWS-CloudWatch-InsightRule Owner: central-it@customer.com Description: AWS-CloudWatch-InsightRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudWatch-InsightRule Tags: - Key: product-type Value: AWS-CloudWatch-InsightRule Versions: - Name: 16.1.0 Description: AWS-CloudWatch-InsightRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudWatch-InsightRule BranchName: 16.1.0 - Name: AWS-CodeBuild-Project Owner: central-it@customer.com Description: AWS-CodeBuild-Project Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeBuild-Project Tags: - Key: product-type Value: AWS-CodeBuild-Project Versions: - Name: 16.1.0 Description: AWS-CodeBuild-Project-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeBuild-Project BranchName: 16.1.0 - Name: AWS-CodeBuild-ReportGroup Owner: central-it@customer.com Description: AWS-CodeBuild-ReportGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeBuild-ReportGroup Tags: - Key: product-type Value: AWS-CodeBuild-ReportGroup Versions: - Name: 16.1.0 Description: AWS-CodeBuild-ReportGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeBuild-ReportGroup BranchName: 16.1.0 - Name: AWS-CodeBuild-SourceCredential Owner: central-it@customer.com Description: AWS-CodeBuild-SourceCredential Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeBuild-SourceCredential Tags: - Key: product-type Value: AWS-CodeBuild-SourceCredential Versions: - Name: 16.1.0 Description: AWS-CodeBuild-SourceCredential-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeBuild-SourceCredential BranchName: 16.1.0 - Name: AWS-CodeCommit-Repository Owner: central-it@customer.com Description: AWS-CodeCommit-Repository Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeCommit-Repository Tags: - Key: product-type Value: AWS-CodeCommit-Repository Versions: - Name: 16.1.0 Description: AWS-CodeCommit-Repository-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeCommit-Repository BranchName: 16.1.0 - Name: AWS-CodeDeploy-Application Owner: central-it@customer.com Description: AWS-CodeDeploy-Application Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeDeploy-Application Tags: - Key: product-type Value: AWS-CodeDeploy-Application Versions: - Name: 16.1.0 Description: AWS-CodeDeploy-Application-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeDeploy-Application BranchName: 16.1.0 - Name: AWS-CodeDeploy-DeploymentConfig Owner: central-it@customer.com Description: AWS-CodeDeploy-DeploymentConfig Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeDeploy-DeploymentConfig Tags: - Key: product-type Value: AWS-CodeDeploy-DeploymentConfig Versions: - Name: 16.1.0 Description: AWS-CodeDeploy-DeploymentConfig-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeDeploy-DeploymentConfig BranchName: 16.1.0 - Name: AWS-CodeDeploy-DeploymentGroup Owner: central-it@customer.com Description: AWS-CodeDeploy-DeploymentGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeDeploy-DeploymentGroup Tags: - Key: product-type Value: AWS-CodeDeploy-DeploymentGroup Versions: - Name: 16.1.0 Description: AWS-CodeDeploy-DeploymentGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeDeploy-DeploymentGroup BranchName: 16.1.0 - Name: AWS-CodeGuruProfiler-ProfilingGroup Owner: central-it@customer.com Description: AWS-CodeGuruProfiler-ProfilingGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeGuruProfiler-ProfilingGroup Tags: - Key: product-type Value: AWS-CodeGuruProfiler-ProfilingGroup Versions: - Name: 16.1.0 Description: AWS-CodeGuruProfiler-ProfilingGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeGuruProfiler-ProfilingGroup BranchName: 16.1.0 - Name: AWS-CodePipeline-CustomActionType Owner: central-it@customer.com Description: AWS-CodePipeline-CustomActionType Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodePipeline-CustomActionType Tags: - Key: product-type Value: AWS-CodePipeline-CustomActionType Versions: - Name: 16.1.0 Description: AWS-CodePipeline-CustomActionType-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodePipeline-CustomActionType BranchName: 16.1.0 - Name: AWS-CodePipeline-Pipeline Owner: central-it@customer.com Description: AWS-CodePipeline-Pipeline Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodePipeline-Pipeline Tags: - Key: product-type Value: AWS-CodePipeline-Pipeline Versions: - Name: 16.1.0 Description: AWS-CodePipeline-Pipeline-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodePipeline-Pipeline BranchName: 16.1.0 - Name: AWS-CodePipeline-Webhook Owner: central-it@customer.com Description: AWS-CodePipeline-Webhook Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodePipeline-Webhook Tags: - Key: product-type Value: AWS-CodePipeline-Webhook Versions: - Name: 16.1.0 Description: AWS-CodePipeline-Webhook-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodePipeline-Webhook BranchName: 16.1.0 - Name: AWS-CodeStar-GitHubRepository Owner: central-it@customer.com Description: AWS-CodeStar-GitHubRepository Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeStar-GitHubRepository Tags: - Key: product-type Value: AWS-CodeStar-GitHubRepository Versions: - Name: 16.1.0 Description: AWS-CodeStar-GitHubRepository-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeStar-GitHubRepository BranchName: 16.1.0 - Name: AWS-CodeStarConnections-Connection Owner: central-it@customer.com Description: AWS-CodeStarConnections-Connection Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeStarConnections-Connection Tags: - Key: product-type Value: AWS-CodeStarConnections-Connection Versions: - Name: 16.1.0 Description: AWS-CodeStarConnections-Connection-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeStarConnections-Connection BranchName: 16.1.0 - Name: AWS-CodeStarNotifications-NotificationRule Owner: central-it@customer.com Description: AWS-CodeStarNotifications-NotificationRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeStarNotifications-NotificationRule Tags: - Key: product-type Value: AWS-CodeStarNotifications-NotificationRule Versions: - Name: 16.1.0 Description: AWS-CodeStarNotifications-NotificationRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeStarNotifications-NotificationRule BranchName: 16.1.0 - Name: AWS-Cognito-IdentityPool Owner: central-it@customer.com Description: AWS-Cognito-IdentityPool Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-IdentityPool Tags: - Key: product-type Value: AWS-Cognito-IdentityPool Versions: - Name: 16.1.0 Description: AWS-Cognito-IdentityPool-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-IdentityPool BranchName: 16.1.0 - Name: AWS-Cognito-IdentityPoolRoleAttachment Owner: central-it@customer.com Description: AWS-Cognito-IdentityPoolRoleAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-IdentityPoolRoleAttachment Tags: - Key: product-type Value: AWS-Cognito-IdentityPoolRoleAttachment Versions: - Name: 16.1.0 Description: AWS-Cognito-IdentityPoolRoleAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-IdentityPoolRoleAttachment BranchName: 16.1.0 - Name: AWS-Cognito-UserPool Owner: central-it@customer.com Description: AWS-Cognito-UserPool Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPool Tags: - Key: product-type Value: AWS-Cognito-UserPool Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPool-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPool BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolClient Owner: central-it@customer.com Description: AWS-Cognito-UserPoolClient Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolClient Tags: - Key: product-type Value: AWS-Cognito-UserPoolClient Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolClient-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolClient BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolDomain Owner: central-it@customer.com Description: AWS-Cognito-UserPoolDomain Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolDomain Tags: - Key: product-type Value: AWS-Cognito-UserPoolDomain Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolDomain-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolDomain BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolGroup Owner: central-it@customer.com Description: AWS-Cognito-UserPoolGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolGroup Tags: - Key: product-type Value: AWS-Cognito-UserPoolGroup Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolGroup BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolIdentityProvider Owner: central-it@customer.com Description: AWS-Cognito-UserPoolIdentityProvider Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolIdentityProvider Tags: - Key: product-type Value: AWS-Cognito-UserPoolIdentityProvider Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolIdentityProvider-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolIdentityProvider BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolResourceServer Owner: central-it@customer.com Description: AWS-Cognito-UserPoolResourceServer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolResourceServer Tags: - Key: product-type Value: AWS-Cognito-UserPoolResourceServer Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolResourceServer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolResourceServer BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolRiskConfigurationAttachment Owner: central-it@customer.com Description: AWS-Cognito-UserPoolRiskConfigurationAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolRiskConfigurationAttachment Tags: - Key: product-type Value: AWS-Cognito-UserPoolRiskConfigurationAttachment Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolRiskConfigurationAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolRiskConfigurationAttachment BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolUICustomizationAttachment Owner: central-it@customer.com Description: AWS-Cognito-UserPoolUICustomizationAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolUICustomizationAttachment Tags: - Key: product-type Value: AWS-Cognito-UserPoolUICustomizationAttachment Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolUICustomizationAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolUICustomizationAttachment BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolUser Owner: central-it@customer.com Description: AWS-Cognito-UserPoolUser Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolUser Tags: - Key: product-type Value: AWS-Cognito-UserPoolUser Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolUser-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolUser BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolUserToGroupAttachment Owner: central-it@customer.com Description: AWS-Cognito-UserPoolUserToGroupAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolUserToGroupAttachment Tags: - Key: product-type Value: AWS-Cognito-UserPoolUserToGroupAttachment Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolUserToGroupAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolUserToGroupAttachment BranchName: 16.1.0 - Name: AWS-Config-AggregationAuthorization Owner: central-it@customer.com Description: AWS-Config-AggregationAuthorization Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-AggregationAuthorization Tags: - Key: product-type Value: AWS-Config-AggregationAuthorization Versions: - Name: 16.1.0 Description: AWS-Config-AggregationAuthorization-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-AggregationAuthorization BranchName: 16.1.0 - Name: AWS-Config-ConfigRule Owner: central-it@customer.com Description: AWS-Config-ConfigRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-ConfigRule Tags: - Key: product-type Value: AWS-Config-ConfigRule Versions: - Name: 16.1.0 Description: AWS-Config-ConfigRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-ConfigRule BranchName: 16.1.0 - Name: AWS-Config-ConfigurationAggregator Owner: central-it@customer.com Description: AWS-Config-ConfigurationAggregator Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-ConfigurationAggregator Tags: - Key: product-type Value: AWS-Config-ConfigurationAggregator Versions: - Name: 16.1.0 Description: AWS-Config-ConfigurationAggregator-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-ConfigurationAggregator BranchName: 16.1.0 - Name: AWS-Config-ConfigurationRecorder Owner: central-it@customer.com Description: AWS-Config-ConfigurationRecorder Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-ConfigurationRecorder Tags: - Key: product-type Value: AWS-Config-ConfigurationRecorder Versions: - Name: 16.1.0 Description: AWS-Config-ConfigurationRecorder-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-ConfigurationRecorder BranchName: 16.1.0 - Name: AWS-Config-ConformancePack Owner: central-it@customer.com Description: AWS-Config-ConformancePack Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-ConformancePack Tags: - Key: product-type Value: AWS-Config-ConformancePack Versions: - Name: 16.1.0 Description: AWS-Config-ConformancePack-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-ConformancePack BranchName: 16.1.0 - Name: AWS-Config-DeliveryChannel Owner: central-it@customer.com Description: AWS-Config-DeliveryChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-DeliveryChannel Tags: - Key: product-type Value: AWS-Config-DeliveryChannel Versions: - Name: 16.1.0 Description: AWS-Config-DeliveryChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-DeliveryChannel BranchName: 16.1.0 - Name: AWS-Config-OrganizationConfigRule Owner: central-it@customer.com Description: AWS-Config-OrganizationConfigRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-OrganizationConfigRule Tags: - Key: product-type Value: AWS-Config-OrganizationConfigRule Versions: - Name: 16.1.0 Description: AWS-Config-OrganizationConfigRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-OrganizationConfigRule BranchName: 16.1.0 - Name: AWS-Config-OrganizationConformancePack Owner: central-it@customer.com Description: AWS-Config-OrganizationConformancePack Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-OrganizationConformancePack Tags: - Key: product-type Value: AWS-Config-OrganizationConformancePack Versions: - Name: 16.1.0 Description: AWS-Config-OrganizationConformancePack-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-OrganizationConformancePack BranchName: 16.1.0 - Name: AWS-Config-RemediationConfiguration Owner: central-it@customer.com Description: AWS-Config-RemediationConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-RemediationConfiguration Tags: - Key: product-type Value: AWS-Config-RemediationConfiguration Versions: - Name: 16.1.0 Description: AWS-Config-RemediationConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-RemediationConfiguration BranchName: 16.1.0 - Name: AWS-DAX-Cluster Owner: central-it@customer.com Description: AWS-DAX-Cluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DAX-Cluster Tags: - Key: product-type Value: AWS-DAX-Cluster Versions: - Name: 16.1.0 Description: AWS-DAX-Cluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DAX-Cluster BranchName: 16.1.0 - Name: AWS-DAX-ParameterGroup Owner: central-it@customer.com Description: AWS-DAX-ParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DAX-ParameterGroup Tags: - Key: product-type Value: AWS-DAX-ParameterGroup Versions: - Name: 16.1.0 Description: AWS-DAX-ParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DAX-ParameterGroup BranchName: 16.1.0 - Name: AWS-DAX-SubnetGroup Owner: central-it@customer.com Description: AWS-DAX-SubnetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DAX-SubnetGroup Tags: - Key: product-type Value: AWS-DAX-SubnetGroup Versions: - Name: 16.1.0 Description: AWS-DAX-SubnetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DAX-SubnetGroup BranchName: 16.1.0 - Name: AWS-DLM-LifecyclePolicy Owner: central-it@customer.com Description: AWS-DLM-LifecyclePolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DLM-LifecyclePolicy Tags: - Key: product-type Value: AWS-DLM-LifecyclePolicy Versions: - Name: 16.1.0 Description: AWS-DLM-LifecyclePolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DLM-LifecyclePolicy BranchName: 16.1.0 - Name: AWS-DMS-Certificate Owner: central-it@customer.com Description: AWS-DMS-Certificate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DMS-Certificate Tags: - Key: product-type Value: AWS-DMS-Certificate Versions: - Name: 16.1.0 Description: AWS-DMS-Certificate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DMS-Certificate BranchName: 16.1.0 - Name: AWS-DMS-Endpoint Owner: central-it@customer.com Description: AWS-DMS-Endpoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DMS-Endpoint Tags: - Key: product-type Value: AWS-DMS-Endpoint Versions: - Name: 16.1.0 Description: AWS-DMS-Endpoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DMS-Endpoint BranchName: 16.1.0 - Name: AWS-DMS-EventSubscription Owner: central-it@customer.com Description: AWS-DMS-EventSubscription Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DMS-EventSubscription Tags: - Key: product-type Value: AWS-DMS-EventSubscription Versions: - Name: 16.1.0 Description: AWS-DMS-EventSubscription-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DMS-EventSubscription BranchName: 16.1.0 - Name: AWS-DMS-ReplicationInstance Owner: central-it@customer.com Description: AWS-DMS-ReplicationInstance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DMS-ReplicationInstance Tags: - Key: product-type Value: AWS-DMS-ReplicationInstance Versions: - Name: 16.1.0 Description: AWS-DMS-ReplicationInstance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DMS-ReplicationInstance BranchName: 16.1.0 - Name: AWS-DMS-ReplicationSubnetGroup Owner: central-it@customer.com Description: AWS-DMS-ReplicationSubnetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DMS-ReplicationSubnetGroup Tags: - Key: product-type Value: AWS-DMS-ReplicationSubnetGroup Versions: - Name: 16.1.0 Description: AWS-DMS-ReplicationSubnetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DMS-ReplicationSubnetGroup BranchName: 16.1.0 - Name: AWS-DMS-ReplicationTask Owner: central-it@customer.com Description: AWS-DMS-ReplicationTask Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DMS-ReplicationTask Tags: - Key: product-type Value: AWS-DMS-ReplicationTask Versions: - Name: 16.1.0 Description: AWS-DMS-ReplicationTask-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DMS-ReplicationTask BranchName: 16.1.0 - Name: AWS-DataPipeline-Pipeline Owner: central-it@customer.com Description: AWS-DataPipeline-Pipeline Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DataPipeline-Pipeline Tags: - Key: product-type Value: AWS-DataPipeline-Pipeline Versions: - Name: 16.1.0 Description: AWS-DataPipeline-Pipeline-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DataPipeline-Pipeline BranchName: 16.1.0 - Name: AWS-Detective-Graph Owner: central-it@customer.com Description: AWS-Detective-Graph Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Detective-Graph Tags: - Key: product-type Value: AWS-Detective-Graph Versions: - Name: 16.1.0 Description: AWS-Detective-Graph-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Detective-Graph BranchName: 16.1.0 - Name: AWS-Detective-MemberInvitation Owner: central-it@customer.com Description: AWS-Detective-MemberInvitation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Detective-MemberInvitation Tags: - Key: product-type Value: AWS-Detective-MemberInvitation Versions: - Name: 16.1.0 Description: AWS-Detective-MemberInvitation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Detective-MemberInvitation BranchName: 16.1.0 - Name: AWS-DirectoryService-MicrosoftAD Owner: central-it@customer.com Description: AWS-DirectoryService-MicrosoftAD Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DirectoryService-MicrosoftAD Tags: - Key: product-type Value: AWS-DirectoryService-MicrosoftAD Versions: - Name: 16.1.0 Description: AWS-DirectoryService-MicrosoftAD-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DirectoryService-MicrosoftAD BranchName: 16.1.0 - Name: AWS-DirectoryService-SimpleAD Owner: central-it@customer.com Description: AWS-DirectoryService-SimpleAD Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DirectoryService-SimpleAD Tags: - Key: product-type Value: AWS-DirectoryService-SimpleAD Versions: - Name: 16.1.0 Description: AWS-DirectoryService-SimpleAD-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DirectoryService-SimpleAD BranchName: 16.1.0 - Name: AWS-DocDB-DBCluster Owner: central-it@customer.com Description: AWS-DocDB-DBCluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DocDB-DBCluster Tags: - Key: product-type Value: AWS-DocDB-DBCluster Versions: - Name: 16.1.0 Description: AWS-DocDB-DBCluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DocDB-DBCluster BranchName: 16.1.0 - Name: AWS-DocDB-DBClusterParameterGroup Owner: central-it@customer.com Description: AWS-DocDB-DBClusterParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DocDB-DBClusterParameterGroup Tags: - Key: product-type Value: AWS-DocDB-DBClusterParameterGroup Versions: - Name: 16.1.0 Description: AWS-DocDB-DBClusterParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DocDB-DBClusterParameterGroup BranchName: 16.1.0 - Name: AWS-DocDB-DBInstance Owner: central-it@customer.com Description: AWS-DocDB-DBInstance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DocDB-DBInstance Tags: - Key: product-type Value: AWS-DocDB-DBInstance Versions: - Name: 16.1.0 Description: AWS-DocDB-DBInstance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DocDB-DBInstance BranchName: 16.1.0 - Name: AWS-DocDB-DBSubnetGroup Owner: central-it@customer.com Description: AWS-DocDB-DBSubnetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DocDB-DBSubnetGroup Tags: - Key: product-type Value: AWS-DocDB-DBSubnetGroup Versions: - Name: 16.1.0 Description: AWS-DocDB-DBSubnetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DocDB-DBSubnetGroup BranchName: 16.1.0 - Name: AWS-DynamoDB-Table Owner: central-it@customer.com Description: AWS-DynamoDB-Table Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DynamoDB-Table Tags: - Key: product-type Value: AWS-DynamoDB-Table Versions: - Name: 16.1.0 Description: AWS-DynamoDB-Table-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DynamoDB-Table BranchName: 16.1.0 - Name: AWS-EC2-CapacityReservation Owner: central-it@customer.com Description: AWS-EC2-CapacityReservation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-CapacityReservation Tags: - Key: product-type Value: AWS-EC2-CapacityReservation Versions: - Name: 16.1.0 Description: AWS-EC2-CapacityReservation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-CapacityReservation BranchName: 16.1.0 - Name: AWS-EC2-ClientVpnAuthorizationRule Owner: central-it@customer.com Description: AWS-EC2-ClientVpnAuthorizationRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-ClientVpnAuthorizationRule Tags: - Key: product-type Value: AWS-EC2-ClientVpnAuthorizationRule Versions: - Name: 16.1.0 Description: AWS-EC2-ClientVpnAuthorizationRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-ClientVpnAuthorizationRule BranchName: 16.1.0 - Name: AWS-EC2-ClientVpnEndpoint Owner: central-it@customer.com Description: AWS-EC2-ClientVpnEndpoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-ClientVpnEndpoint Tags: - Key: product-type Value: AWS-EC2-ClientVpnEndpoint Versions: - Name: 16.1.0 Description: AWS-EC2-ClientVpnEndpoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-ClientVpnEndpoint BranchName: 16.1.0 - Name: AWS-EC2-ClientVpnRoute Owner: central-it@customer.com Description: AWS-EC2-ClientVpnRoute Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-ClientVpnRoute Tags: - Key: product-type Value: AWS-EC2-ClientVpnRoute Versions: - Name: 16.1.0 Description: AWS-EC2-ClientVpnRoute-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-ClientVpnRoute BranchName: 16.1.0 - Name: AWS-EC2-ClientVpnTargetNetworkAssociation Owner: central-it@customer.com Description: AWS-EC2-ClientVpnTargetNetworkAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-ClientVpnTargetNetworkAssociation Tags: - Key: product-type Value: AWS-EC2-ClientVpnTargetNetworkAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-ClientVpnTargetNetworkAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-ClientVpnTargetNetworkAssociation BranchName: 16.1.0 - Name: AWS-EC2-CustomerGateway Owner: central-it@customer.com Description: AWS-EC2-CustomerGateway Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-CustomerGateway Tags: - Key: product-type Value: AWS-EC2-CustomerGateway Versions: - Name: 16.1.0 Description: AWS-EC2-CustomerGateway-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-CustomerGateway BranchName: 16.1.0 - Name: AWS-EC2-DHCPOptions Owner: central-it@customer.com Description: AWS-EC2-DHCPOptions Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-DHCPOptions Tags: - Key: product-type Value: AWS-EC2-DHCPOptions Versions: - Name: 16.1.0 Description: AWS-EC2-DHCPOptions-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-DHCPOptions BranchName: 16.1.0 - Name: AWS-EC2-EC2Fleet Owner: central-it@customer.com Description: AWS-EC2-EC2Fleet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-EC2Fleet Tags: - Key: product-type Value: AWS-EC2-EC2Fleet Versions: - Name: 16.1.0 Description: AWS-EC2-EC2Fleet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-EC2Fleet BranchName: 16.1.0 - Name: AWS-EC2-EIP Owner: central-it@customer.com Description: AWS-EC2-EIP Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-EIP Tags: - Key: product-type Value: AWS-EC2-EIP Versions: - Name: 16.1.0 Description: AWS-EC2-EIP-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-EIP BranchName: 16.1.0 - Name: AWS-EC2-EIPAssociation Owner: central-it@customer.com Description: AWS-EC2-EIPAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-EIPAssociation Tags: - Key: product-type Value: AWS-EC2-EIPAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-EIPAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-EIPAssociation BranchName: 16.1.0 - Name: AWS-EC2-EgressOnlyInternetGateway Owner: central-it@customer.com Description: AWS-EC2-EgressOnlyInternetGateway Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-EgressOnlyInternetGateway Tags: - Key: product-type Value: AWS-EC2-EgressOnlyInternetGateway Versions: - Name: 16.1.0 Description: AWS-EC2-EgressOnlyInternetGateway-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-EgressOnlyInternetGateway BranchName: 16.1.0 - Name: AWS-EC2-FlowLog Owner: central-it@customer.com Description: AWS-EC2-FlowLog Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-FlowLog Tags: - Key: product-type Value: AWS-EC2-FlowLog Versions: - Name: 16.1.0 Description: AWS-EC2-FlowLog-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-FlowLog BranchName: 16.1.0 - Name: AWS-EC2-GatewayRouteTableAssociation Owner: central-it@customer.com Description: AWS-EC2-GatewayRouteTableAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-GatewayRouteTableAssociation Tags: - Key: product-type Value: AWS-EC2-GatewayRouteTableAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-GatewayRouteTableAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-GatewayRouteTableAssociation BranchName: 16.1.0 - Name: AWS-EC2-Host Owner: central-it@customer.com Description: AWS-EC2-Host Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-Host Tags: - Key: product-type Value: AWS-EC2-Host Versions: - Name: 16.1.0 Description: AWS-EC2-Host-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-Host BranchName: 16.1.0 - Name: AWS-EC2-Instance Owner: central-it@customer.com Description: AWS-EC2-Instance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-Instance Tags: - Key: product-type Value: AWS-EC2-Instance Versions: - Name: 16.1.0 Description: AWS-EC2-Instance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-Instance BranchName: 16.1.0 - Name: AWS-EC2-InternetGateway Owner: central-it@customer.com Description: AWS-EC2-InternetGateway Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-InternetGateway Tags: - Key: product-type Value: AWS-EC2-InternetGateway Versions: - Name: 16.1.0 Description: AWS-EC2-InternetGateway-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-InternetGateway BranchName: 16.1.0 - Name: AWS-EC2-LaunchTemplate Owner: central-it@customer.com Description: AWS-EC2-LaunchTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-LaunchTemplate Tags: - Key: product-type Value: AWS-EC2-LaunchTemplate Versions: - Name: 16.1.0 Description: AWS-EC2-LaunchTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-LaunchTemplate BranchName: 16.1.0 - Name: AWS-EC2-LocalGatewayRoute Owner: central-it@customer.com Description: AWS-EC2-LocalGatewayRoute Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-LocalGatewayRoute Tags: - Key: product-type Value: AWS-EC2-LocalGatewayRoute Versions: - Name: 16.1.0 Description: AWS-EC2-LocalGatewayRoute-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-LocalGatewayRoute BranchName: 16.1.0 - Name: AWS-EC2-LocalGatewayRouteTableVPCAssociation Owner: central-it@customer.com Description: AWS-EC2-LocalGatewayRouteTableVPCAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-LocalGatewayRouteTableVPCAssociation Tags: - Key: product-type Value: AWS-EC2-LocalGatewayRouteTableVPCAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-LocalGatewayRouteTableVPCAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-LocalGatewayRouteTableVPCAssociation BranchName: 16.1.0 - Name: AWS-EC2-NatGateway Owner: central-it@customer.com Description: AWS-EC2-NatGateway Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-NatGateway Tags: - Key: product-type Value: AWS-EC2-NatGateway Versions: - Name: 16.1.0 Description: AWS-EC2-NatGateway-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-NatGateway BranchName: 16.1.0 - Name: AWS-EC2-NetworkAcl Owner: central-it@customer.com Description: AWS-EC2-NetworkAcl Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-NetworkAcl Tags: - Key: product-type Value: AWS-EC2-NetworkAcl Versions: - Name: 16.1.0 Description: AWS-EC2-NetworkAcl-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-NetworkAcl BranchName: 16.1.0 - Name: AWS-EC2-NetworkAclEntry Owner: central-it@customer.com Description: AWS-EC2-NetworkAclEntry Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-NetworkAclEntry Tags: - Key: product-type Value: AWS-EC2-NetworkAclEntry Versions: - Name: 16.1.0 Description: AWS-EC2-NetworkAclEntry-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-NetworkAclEntry BranchName: 16.1.0 - Name: AWS-EC2-NetworkInterface Owner: central-it@customer.com Description: AWS-EC2-NetworkInterface Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-NetworkInterface Tags: - Key: product-type Value: AWS-EC2-NetworkInterface Versions: - Name: 16.1.0 Description: AWS-EC2-NetworkInterface-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-NetworkInterface BranchName: 16.1.0 - Name: AWS-EC2-NetworkInterfaceAttachment Owner: central-it@customer.com Description: AWS-EC2-NetworkInterfaceAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-NetworkInterfaceAttachment Tags: - Key: product-type Value: AWS-EC2-NetworkInterfaceAttachment Versions: - Name: 16.1.0 Description: AWS-EC2-NetworkInterfaceAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-NetworkInterfaceAttachment BranchName: 16.1.0 - Name: AWS-EC2-NetworkInterfacePermission Owner: central-it@customer.com Description: AWS-EC2-NetworkInterfacePermission Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-NetworkInterfacePermission Tags: - Key: product-type Value: AWS-EC2-NetworkInterfacePermission Versions: - Name: 16.1.0 Description: AWS-EC2-NetworkInterfacePermission-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-NetworkInterfacePermission BranchName: 16.1.0 - Name: AWS-EC2-PlacementGroup Owner: central-it@customer.com Description: AWS-EC2-PlacementGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-PlacementGroup Tags: - Key: product-type Value: AWS-EC2-PlacementGroup Versions: - Name: 16.1.0 Description: AWS-EC2-PlacementGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-PlacementGroup BranchName: 16.1.0 - Name: AWS-EC2-PrefixList Owner: central-it@customer.com Description: AWS-EC2-PrefixList Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-PrefixList Tags: - Key: product-type Value: AWS-EC2-PrefixList Versions: - Name: 16.1.0 Description: AWS-EC2-PrefixList-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-PrefixList BranchName: 16.1.0 - Name: AWS-EC2-Route Owner: central-it@customer.com Description: AWS-EC2-Route Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-Route Tags: - Key: product-type Value: AWS-EC2-Route Versions: - Name: 16.1.0 Description: AWS-EC2-Route-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-Route BranchName: 16.1.0 - Name: AWS-EC2-RouteTable Owner: central-it@customer.com Description: AWS-EC2-RouteTable Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-RouteTable Tags: - Key: product-type Value: AWS-EC2-RouteTable Versions: - Name: 16.1.0 Description: AWS-EC2-RouteTable-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-RouteTable BranchName: 16.1.0 - Name: AWS-EC2-SecurityGroup Owner: central-it@customer.com Description: AWS-EC2-SecurityGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-SecurityGroup Tags: - Key: product-type Value: AWS-EC2-SecurityGroup Versions: - Name: 16.1.0 Description: AWS-EC2-SecurityGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-SecurityGroup BranchName: 16.1.0 - Name: AWS-EC2-SecurityGroupEgress Owner: central-it@customer.com Description: AWS-EC2-SecurityGroupEgress Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-SecurityGroupEgress Tags: - Key: product-type Value: AWS-EC2-SecurityGroupEgress Versions: - Name: 16.1.0 Description: AWS-EC2-SecurityGroupEgress-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-SecurityGroupEgress BranchName: 16.1.0 - Name: AWS-EC2-SecurityGroupIngress Owner: central-it@customer.com Description: AWS-EC2-SecurityGroupIngress Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-SecurityGroupIngress Tags: - Key: product-type Value: AWS-EC2-SecurityGroupIngress Versions: - Name: 16.1.0 Description: AWS-EC2-SecurityGroupIngress-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-SecurityGroupIngress BranchName: 16.1.0 - Name: AWS-EC2-SpotFleet Owner: central-it@customer.com Description: AWS-EC2-SpotFleet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-SpotFleet Tags: - Key: product-type Value: AWS-EC2-SpotFleet Versions: - Name: 16.1.0 Description: AWS-EC2-SpotFleet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-SpotFleet BranchName: 16.1.0 - Name: AWS-EC2-Subnet Owner: central-it@customer.com Description: AWS-EC2-Subnet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-Subnet Tags: - Key: product-type Value: AWS-EC2-Subnet Versions: - Name: 16.1.0 Description: AWS-EC2-Subnet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-Subnet BranchName: 16.1.0 - Name: AWS-EC2-SubnetCidrBlock Owner: central-it@customer.com Description: AWS-EC2-SubnetCidrBlock Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-SubnetCidrBlock Tags: - Key: product-type Value: AWS-EC2-SubnetCidrBlock Versions: - Name: 16.1.0 Description: AWS-EC2-SubnetCidrBlock-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-SubnetCidrBlock BranchName: 16.1.0 - Name: AWS-EC2-SubnetNetworkAclAssociation Owner: central-it@customer.com Description: AWS-EC2-SubnetNetworkAclAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-SubnetNetworkAclAssociation Tags: - Key: product-type Value: AWS-EC2-SubnetNetworkAclAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-SubnetNetworkAclAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-SubnetNetworkAclAssociation BranchName: 16.1.0 - Name: AWS-EC2-SubnetRouteTableAssociation Owner: central-it@customer.com Description: AWS-EC2-SubnetRouteTableAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-SubnetRouteTableAssociation Tags: - Key: product-type Value: AWS-EC2-SubnetRouteTableAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-SubnetRouteTableAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-SubnetRouteTableAssociation BranchName: 16.1.0 - Name: AWS-EC2-TrafficMirrorFilter Owner: central-it@customer.com Description: AWS-EC2-TrafficMirrorFilter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TrafficMirrorFilter Tags: - Key: product-type Value: AWS-EC2-TrafficMirrorFilter Versions: - Name: 16.1.0 Description: AWS-EC2-TrafficMirrorFilter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TrafficMirrorFilter BranchName: 16.1.0 - Name: AWS-EC2-TrafficMirrorFilterRule Owner: central-it@customer.com Description: AWS-EC2-TrafficMirrorFilterRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TrafficMirrorFilterRule Tags: - Key: product-type Value: AWS-EC2-TrafficMirrorFilterRule Versions: - Name: 16.1.0 Description: AWS-EC2-TrafficMirrorFilterRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TrafficMirrorFilterRule BranchName: 16.1.0 - Name: AWS-EC2-TrafficMirrorSession Owner: central-it@customer.com Description: AWS-EC2-TrafficMirrorSession Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TrafficMirrorSession Tags: - Key: product-type Value: AWS-EC2-TrafficMirrorSession Versions: - Name: 16.1.0 Description: AWS-EC2-TrafficMirrorSession-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TrafficMirrorSession BranchName: 16.1.0 - Name: AWS-EC2-TrafficMirrorTarget Owner: central-it@customer.com Description: AWS-EC2-TrafficMirrorTarget Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TrafficMirrorTarget Tags: - Key: product-type Value: AWS-EC2-TrafficMirrorTarget Versions: - Name: 16.1.0 Description: AWS-EC2-TrafficMirrorTarget-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TrafficMirrorTarget BranchName: 16.1.0 - Name: AWS-EC2-TransitGateway Owner: central-it@customer.com Description: AWS-EC2-TransitGateway Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TransitGateway Tags: - Key: product-type Value: AWS-EC2-TransitGateway Versions: - Name: 16.1.0 Description: AWS-EC2-TransitGateway-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TransitGateway BranchName: 16.1.0 - Name: AWS-EC2-TransitGatewayAttachment Owner: central-it@customer.com Description: AWS-EC2-TransitGatewayAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TransitGatewayAttachment Tags: - Key: product-type Value: AWS-EC2-TransitGatewayAttachment Versions: - Name: 16.1.0 Description: AWS-EC2-TransitGatewayAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TransitGatewayAttachment BranchName: 16.1.0 - Name: AWS-EC2-TransitGatewayRoute Owner: central-it@customer.com Description: AWS-EC2-TransitGatewayRoute Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TransitGatewayRoute Tags: - Key: product-type Value: AWS-EC2-TransitGatewayRoute Versions: - Name: 16.1.0 Description: AWS-EC2-TransitGatewayRoute-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TransitGatewayRoute BranchName: 16.1.0 - Name: AWS-EC2-TransitGatewayRouteTable Owner: central-it@customer.com Description: AWS-EC2-TransitGatewayRouteTable Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TransitGatewayRouteTable Tags: - Key: product-type Value: AWS-EC2-TransitGatewayRouteTable Versions: - Name: 16.1.0 Description: AWS-EC2-TransitGatewayRouteTable-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TransitGatewayRouteTable BranchName: 16.1.0 - Name: AWS-EC2-TransitGatewayRouteTableAssociation Owner: central-it@customer.com Description: AWS-EC2-TransitGatewayRouteTableAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TransitGatewayRouteTableAssociation Tags: - Key: product-type Value: AWS-EC2-TransitGatewayRouteTableAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-TransitGatewayRouteTableAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TransitGatewayRouteTableAssociation BranchName: 16.1.0 - Name: AWS-EC2-TransitGatewayRouteTablePropagation Owner: central-it@customer.com Description: AWS-EC2-TransitGatewayRouteTablePropagation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TransitGatewayRouteTablePropagation Tags: - Key: product-type Value: AWS-EC2-TransitGatewayRouteTablePropagation Versions: - Name: 16.1.0 Description: AWS-EC2-TransitGatewayRouteTablePropagation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TransitGatewayRouteTablePropagation BranchName: 16.1.0 - Name: AWS-EC2-VPC Owner: central-it@customer.com Description: AWS-EC2-VPC Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPC Tags: - Key: product-type Value: AWS-EC2-VPC Versions: - Name: 16.1.0 Description: AWS-EC2-VPC-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPC BranchName: 16.1.0 - Name: AWS-EC2-VPCCidrBlock Owner: central-it@customer.com Description: AWS-EC2-VPCCidrBlock Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCCidrBlock Tags: - Key: product-type Value: AWS-EC2-VPCCidrBlock Versions: - Name: 16.1.0 Description: AWS-EC2-VPCCidrBlock-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCCidrBlock BranchName: 16.1.0 - Name: AWS-EC2-VPCDHCPOptionsAssociation Owner: central-it@customer.com Description: AWS-EC2-VPCDHCPOptionsAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCDHCPOptionsAssociation Tags: - Key: product-type Value: AWS-EC2-VPCDHCPOptionsAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-VPCDHCPOptionsAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCDHCPOptionsAssociation BranchName: 16.1.0 - Name: AWS-EC2-VPCEndpoint Owner: central-it@customer.com Description: AWS-EC2-VPCEndpoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCEndpoint Tags: - Key: product-type Value: AWS-EC2-VPCEndpoint Versions: - Name: 16.1.0 Description: AWS-EC2-VPCEndpoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCEndpoint BranchName: 16.1.0 - Name: AWS-EC2-VPCEndpointConnectionNotification Owner: central-it@customer.com Description: AWS-EC2-VPCEndpointConnectionNotification Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCEndpointConnectionNotification Tags: - Key: product-type Value: AWS-EC2-VPCEndpointConnectionNotification Versions: - Name: 16.1.0 Description: AWS-EC2-VPCEndpointConnectionNotification-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCEndpointConnectionNotification BranchName: 16.1.0 - Name: AWS-EC2-VPCEndpointService Owner: central-it@customer.com Description: AWS-EC2-VPCEndpointService Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCEndpointService Tags: - Key: product-type Value: AWS-EC2-VPCEndpointService Versions: - Name: 16.1.0 Description: AWS-EC2-VPCEndpointService-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCEndpointService BranchName: 16.1.0 - Name: AWS-EC2-VPCEndpointServicePermissions Owner: central-it@customer.com Description: AWS-EC2-VPCEndpointServicePermissions Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCEndpointServicePermissions Tags: - Key: product-type Value: AWS-EC2-VPCEndpointServicePermissions Versions: - Name: 16.1.0 Description: AWS-EC2-VPCEndpointServicePermissions-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCEndpointServicePermissions BranchName: 16.1.0 - Name: AWS-EC2-VPCGatewayAttachment Owner: central-it@customer.com Description: AWS-EC2-VPCGatewayAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCGatewayAttachment Tags: - Key: product-type Value: AWS-EC2-VPCGatewayAttachment Versions: - Name: 16.1.0 Description: AWS-EC2-VPCGatewayAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCGatewayAttachment BranchName: 16.1.0 - Name: AWS-EC2-VPCPeeringConnection Owner: central-it@customer.com Description: AWS-EC2-VPCPeeringConnection Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCPeeringConnection Tags: - Key: product-type Value: AWS-EC2-VPCPeeringConnection Versions: - Name: 16.1.0 Description: AWS-EC2-VPCPeeringConnection-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCPeeringConnection BranchName: 16.1.0 - Name: AWS-EC2-VPNConnection Owner: central-it@customer.com Description: AWS-EC2-VPNConnection Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPNConnection Tags: - Key: product-type Value: AWS-EC2-VPNConnection Versions: - Name: 16.1.0 Description: AWS-EC2-VPNConnection-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPNConnection BranchName: 16.1.0 - Name: AWS-EC2-VPNConnectionRoute Owner: central-it@customer.com Description: AWS-EC2-VPNConnectionRoute Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPNConnectionRoute Tags: - Key: product-type Value: AWS-EC2-VPNConnectionRoute Versions: - Name: 16.1.0 Description: AWS-EC2-VPNConnectionRoute-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPNConnectionRoute BranchName: 16.1.0 - Name: AWS-EC2-VPNGateway Owner: central-it@customer.com Description: AWS-EC2-VPNGateway Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPNGateway Tags: - Key: product-type Value: AWS-EC2-VPNGateway Versions: - Name: 16.1.0 Description: AWS-EC2-VPNGateway-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPNGateway BranchName: 16.1.0 - Name: AWS-EC2-VPNGatewayRoutePropagation Owner: central-it@customer.com Description: AWS-EC2-VPNGatewayRoutePropagation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPNGatewayRoutePropagation Tags: - Key: product-type Value: AWS-EC2-VPNGatewayRoutePropagation Versions: - Name: 16.1.0 Description: AWS-EC2-VPNGatewayRoutePropagation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPNGatewayRoutePropagation BranchName: 16.1.0 - Name: AWS-EC2-Volume Owner: central-it@customer.com Description: AWS-EC2-Volume Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-Volume Tags: - Key: product-type Value: AWS-EC2-Volume Versions: - Name: 16.1.0 Description: AWS-EC2-Volume-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-Volume BranchName: 16.1.0 - Name: AWS-EC2-VolumeAttachment Owner: central-it@customer.com Description: AWS-EC2-VolumeAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VolumeAttachment Tags: - Key: product-type Value: AWS-EC2-VolumeAttachment Versions: - Name: 16.1.0 Description: AWS-EC2-VolumeAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VolumeAttachment BranchName: 16.1.0 - Name: AWS-ECR-Repository Owner: central-it@customer.com Description: AWS-ECR-Repository Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ECR-Repository Tags: - Key: product-type Value: AWS-ECR-Repository Versions: - Name: 16.1.0 Description: AWS-ECR-Repository-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ECR-Repository BranchName: 16.1.0 - Name: AWS-ECS-CapacityProvider Owner: central-it@customer.com Description: AWS-ECS-CapacityProvider Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ECS-CapacityProvider Tags: - Key: product-type Value: AWS-ECS-CapacityProvider Versions: - Name: 16.1.0 Description: AWS-ECS-CapacityProvider-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ECS-CapacityProvider BranchName: 16.1.0 - Name: AWS-ECS-Cluster Owner: central-it@customer.com Description: AWS-ECS-Cluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ECS-Cluster Tags: - Key: product-type Value: AWS-ECS-Cluster Versions: - Name: 16.1.0 Description: AWS-ECS-Cluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ECS-Cluster BranchName: 16.1.0 - Name: AWS-ECS-PrimaryTaskSet Owner: central-it@customer.com Description: AWS-ECS-PrimaryTaskSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ECS-PrimaryTaskSet Tags: - Key: product-type Value: AWS-ECS-PrimaryTaskSet Versions: - Name: 16.1.0 Description: AWS-ECS-PrimaryTaskSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ECS-PrimaryTaskSet BranchName: 16.1.0 - Name: AWS-ECS-Service Owner: central-it@customer.com Description: AWS-ECS-Service Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ECS-Service Tags: - Key: product-type Value: AWS-ECS-Service Versions: - Name: 16.1.0 Description: AWS-ECS-Service-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ECS-Service BranchName: 16.1.0 - Name: AWS-ECS-TaskDefinition Owner: central-it@customer.com Description: AWS-ECS-TaskDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ECS-TaskDefinition Tags: - Key: product-type Value: AWS-ECS-TaskDefinition Versions: - Name: 16.1.0 Description: AWS-ECS-TaskDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ECS-TaskDefinition BranchName: 16.1.0 - Name: AWS-ECS-TaskSet Owner: central-it@customer.com Description: AWS-ECS-TaskSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ECS-TaskSet Tags: - Key: product-type Value: AWS-ECS-TaskSet Versions: - Name: 16.1.0 Description: AWS-ECS-TaskSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ECS-TaskSet BranchName: 16.1.0 - Name: AWS-EFS-AccessPoint Owner: central-it@customer.com Description: AWS-EFS-AccessPoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EFS-AccessPoint Tags: - Key: product-type Value: AWS-EFS-AccessPoint Versions: - Name: 16.1.0 Description: AWS-EFS-AccessPoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EFS-AccessPoint BranchName: 16.1.0 - Name: AWS-EFS-FileSystem Owner: central-it@customer.com Description: AWS-EFS-FileSystem Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EFS-FileSystem Tags: - Key: product-type Value: AWS-EFS-FileSystem Versions: - Name: 16.1.0 Description: AWS-EFS-FileSystem-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EFS-FileSystem BranchName: 16.1.0 - Name: AWS-EFS-MountTarget Owner: central-it@customer.com Description: AWS-EFS-MountTarget Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EFS-MountTarget Tags: - Key: product-type Value: AWS-EFS-MountTarget Versions: - Name: 16.1.0 Description: AWS-EFS-MountTarget-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EFS-MountTarget BranchName: 16.1.0 - Name: AWS-EKS-Cluster Owner: central-it@customer.com Description: AWS-EKS-Cluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EKS-Cluster Tags: - Key: product-type Value: AWS-EKS-Cluster Versions: - Name: 16.1.0 Description: AWS-EKS-Cluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EKS-Cluster BranchName: 16.1.0 - Name: AWS-EKS-Nodegroup Owner: central-it@customer.com Description: AWS-EKS-Nodegroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EKS-Nodegroup Tags: - Key: product-type Value: AWS-EKS-Nodegroup Versions: - Name: 16.1.0 Description: AWS-EKS-Nodegroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EKS-Nodegroup BranchName: 16.1.0 - Name: AWS-EMR-Cluster Owner: central-it@customer.com Description: AWS-EMR-Cluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EMR-Cluster Tags: - Key: product-type Value: AWS-EMR-Cluster Versions: - Name: 16.1.0 Description: AWS-EMR-Cluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EMR-Cluster BranchName: 16.1.0 - Name: AWS-EMR-InstanceFleetConfig Owner: central-it@customer.com Description: AWS-EMR-InstanceFleetConfig Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EMR-InstanceFleetConfig Tags: - Key: product-type Value: AWS-EMR-InstanceFleetConfig Versions: - Name: 16.1.0 Description: AWS-EMR-InstanceFleetConfig-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EMR-InstanceFleetConfig BranchName: 16.1.0 - Name: AWS-EMR-InstanceGroupConfig Owner: central-it@customer.com Description: AWS-EMR-InstanceGroupConfig Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EMR-InstanceGroupConfig Tags: - Key: product-type Value: AWS-EMR-InstanceGroupConfig Versions: - Name: 16.1.0 Description: AWS-EMR-InstanceGroupConfig-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EMR-InstanceGroupConfig BranchName: 16.1.0 - Name: AWS-EMR-SecurityConfiguration Owner: central-it@customer.com Description: AWS-EMR-SecurityConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EMR-SecurityConfiguration Tags: - Key: product-type Value: AWS-EMR-SecurityConfiguration Versions: - Name: 16.1.0 Description: AWS-EMR-SecurityConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EMR-SecurityConfiguration BranchName: 16.1.0 - Name: AWS-EMR-Step Owner: central-it@customer.com Description: AWS-EMR-Step Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EMR-Step Tags: - Key: product-type Value: AWS-EMR-Step Versions: - Name: 16.1.0 Description: AWS-EMR-Step-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EMR-Step BranchName: 16.1.0 - Name: AWS-ElastiCache-CacheCluster Owner: central-it@customer.com Description: AWS-ElastiCache-CacheCluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElastiCache-CacheCluster Tags: - Key: product-type Value: AWS-ElastiCache-CacheCluster Versions: - Name: 16.1.0 Description: AWS-ElastiCache-CacheCluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElastiCache-CacheCluster BranchName: 16.1.0 - Name: AWS-ElastiCache-ParameterGroup Owner: central-it@customer.com Description: AWS-ElastiCache-ParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElastiCache-ParameterGroup Tags: - Key: product-type Value: AWS-ElastiCache-ParameterGroup Versions: - Name: 16.1.0 Description: AWS-ElastiCache-ParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElastiCache-ParameterGroup BranchName: 16.1.0 - Name: AWS-ElastiCache-ReplicationGroup Owner: central-it@customer.com Description: AWS-ElastiCache-ReplicationGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElastiCache-ReplicationGroup Tags: - Key: product-type Value: AWS-ElastiCache-ReplicationGroup Versions: - Name: 16.1.0 Description: AWS-ElastiCache-ReplicationGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElastiCache-ReplicationGroup BranchName: 16.1.0 - Name: AWS-ElastiCache-SecurityGroup Owner: central-it@customer.com Description: AWS-ElastiCache-SecurityGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElastiCache-SecurityGroup Tags: - Key: product-type Value: AWS-ElastiCache-SecurityGroup Versions: - Name: 16.1.0 Description: AWS-ElastiCache-SecurityGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElastiCache-SecurityGroup BranchName: 16.1.0 - Name: AWS-ElastiCache-SecurityGroupIngress Owner: central-it@customer.com Description: AWS-ElastiCache-SecurityGroupIngress Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElastiCache-SecurityGroupIngress Tags: - Key: product-type Value: AWS-ElastiCache-SecurityGroupIngress Versions: - Name: 16.1.0 Description: AWS-ElastiCache-SecurityGroupIngress-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElastiCache-SecurityGroupIngress BranchName: 16.1.0 - Name: AWS-ElastiCache-SubnetGroup Owner: central-it@customer.com Description: AWS-ElastiCache-SubnetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElastiCache-SubnetGroup Tags: - Key: product-type Value: AWS-ElastiCache-SubnetGroup Versions: - Name: 16.1.0 Description: AWS-ElastiCache-SubnetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElastiCache-SubnetGroup BranchName: 16.1.0 - Name: AWS-ElasticBeanstalk-Application Owner: central-it@customer.com Description: AWS-ElasticBeanstalk-Application Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticBeanstalk-Application Tags: - Key: product-type Value: AWS-ElasticBeanstalk-Application Versions: - Name: 16.1.0 Description: AWS-ElasticBeanstalk-Application-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticBeanstalk-Application BranchName: 16.1.0 - Name: AWS-ElasticBeanstalk-ApplicationVersion Owner: central-it@customer.com Description: AWS-ElasticBeanstalk-ApplicationVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticBeanstalk-ApplicationVersion Tags: - Key: product-type Value: AWS-ElasticBeanstalk-ApplicationVersion Versions: - Name: 16.1.0 Description: AWS-ElasticBeanstalk-ApplicationVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticBeanstalk-ApplicationVersion BranchName: 16.1.0 - Name: AWS-ElasticBeanstalk-ConfigurationTemplate Owner: central-it@customer.com Description: AWS-ElasticBeanstalk-ConfigurationTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticBeanstalk-ConfigurationTemplate Tags: - Key: product-type Value: AWS-ElasticBeanstalk-ConfigurationTemplate Versions: - Name: 16.1.0 Description: AWS-ElasticBeanstalk-ConfigurationTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticBeanstalk-ConfigurationTemplate BranchName: 16.1.0 - Name: AWS-ElasticBeanstalk-Environment Owner: central-it@customer.com Description: AWS-ElasticBeanstalk-Environment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticBeanstalk-Environment Tags: - Key: product-type Value: AWS-ElasticBeanstalk-Environment Versions: - Name: 16.1.0 Description: AWS-ElasticBeanstalk-Environment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticBeanstalk-Environment BranchName: 16.1.0 - Name: AWS-ElasticLoadBalancing-LoadBalancer Owner: central-it@customer.com Description: AWS-ElasticLoadBalancing-LoadBalancer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticLoadBalancing-LoadBalancer Tags: - Key: product-type Value: AWS-ElasticLoadBalancing-LoadBalancer Versions: - Name: 16.1.0 Description: AWS-ElasticLoadBalancing-LoadBalancer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticLoadBalancing-LoadBalancer BranchName: 16.1.0 - Name: AWS-ElasticLoadBalancingV2-Listener Owner: central-it@customer.com Description: AWS-ElasticLoadBalancingV2-Listener Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticLoadBalancingV2-Listener Tags: - Key: product-type Value: AWS-ElasticLoadBalancingV2-Listener Versions: - Name: 16.1.0 Description: AWS-ElasticLoadBalancingV2-Listener-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticLoadBalancingV2-Listener BranchName: 16.1.0 - Name: AWS-ElasticLoadBalancingV2-ListenerCertificate Owner: central-it@customer.com Description: AWS-ElasticLoadBalancingV2-ListenerCertificate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticLoadBalancingV2-ListenerCertificate Tags: - Key: product-type Value: AWS-ElasticLoadBalancingV2-ListenerCertificate Versions: - Name: 16.1.0 Description: AWS-ElasticLoadBalancingV2-ListenerCertificate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticLoadBalancingV2-ListenerCertificate BranchName: 16.1.0 - Name: AWS-ElasticLoadBalancingV2-ListenerRule Owner: central-it@customer.com Description: AWS-ElasticLoadBalancingV2-ListenerRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticLoadBalancingV2-ListenerRule Tags: - Key: product-type Value: AWS-ElasticLoadBalancingV2-ListenerRule Versions: - Name: 16.1.0 Description: AWS-ElasticLoadBalancingV2-ListenerRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticLoadBalancingV2-ListenerRule BranchName: 16.1.0 - Name: AWS-ElasticLoadBalancingV2-LoadBalancer Owner: central-it@customer.com Description: AWS-ElasticLoadBalancingV2-LoadBalancer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticLoadBalancingV2-LoadBalancer Tags: - Key: product-type Value: AWS-ElasticLoadBalancingV2-LoadBalancer Versions: - Name: 16.1.0 Description: AWS-ElasticLoadBalancingV2-LoadBalancer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticLoadBalancingV2-LoadBalancer BranchName: 16.1.0 - Name: AWS-ElasticLoadBalancingV2-TargetGroup Owner: central-it@customer.com Description: AWS-ElasticLoadBalancingV2-TargetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticLoadBalancingV2-TargetGroup Tags: - Key: product-type Value: AWS-ElasticLoadBalancingV2-TargetGroup Versions: - Name: 16.1.0 Description: AWS-ElasticLoadBalancingV2-TargetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticLoadBalancingV2-TargetGroup BranchName: 16.1.0 - Name: AWS-Elasticsearch-Domain Owner: central-it@customer.com Description: AWS-Elasticsearch-Domain Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Elasticsearch-Domain Tags: - Key: product-type Value: AWS-Elasticsearch-Domain Versions: - Name: 16.1.0 Description: AWS-Elasticsearch-Domain-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Elasticsearch-Domain BranchName: 16.1.0 - Name: AWS-EventSchemas-Discoverer Owner: central-it@customer.com Description: AWS-EventSchemas-Discoverer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EventSchemas-Discoverer Tags: - Key: product-type Value: AWS-EventSchemas-Discoverer Versions: - Name: 16.1.0 Description: AWS-EventSchemas-Discoverer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EventSchemas-Discoverer BranchName: 16.1.0 - Name: AWS-EventSchemas-Registry Owner: central-it@customer.com Description: AWS-EventSchemas-Registry Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EventSchemas-Registry Tags: - Key: product-type Value: AWS-EventSchemas-Registry Versions: - Name: 16.1.0 Description: AWS-EventSchemas-Registry-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EventSchemas-Registry BranchName: 16.1.0 - Name: AWS-EventSchemas-RegistryPolicy Owner: central-it@customer.com Description: AWS-EventSchemas-RegistryPolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EventSchemas-RegistryPolicy Tags: - Key: product-type Value: AWS-EventSchemas-RegistryPolicy Versions: - Name: 16.1.0 Description: AWS-EventSchemas-RegistryPolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EventSchemas-RegistryPolicy BranchName: 16.1.0 - Name: AWS-EventSchemas-Schema Owner: central-it@customer.com Description: AWS-EventSchemas-Schema Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EventSchemas-Schema Tags: - Key: product-type Value: AWS-EventSchemas-Schema Versions: - Name: 16.1.0 Description: AWS-EventSchemas-Schema-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EventSchemas-Schema BranchName: 16.1.0 - Name: AWS-Events-EventBus Owner: central-it@customer.com Description: AWS-Events-EventBus Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Events-EventBus Tags: - Key: product-type Value: AWS-Events-EventBus Versions: - Name: 16.1.0 Description: AWS-Events-EventBus-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Events-EventBus BranchName: 16.1.0 - Name: AWS-Events-EventBusPolicy Owner: central-it@customer.com Description: AWS-Events-EventBusPolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Events-EventBusPolicy Tags: - Key: product-type Value: AWS-Events-EventBusPolicy Versions: - Name: 16.1.0 Description: AWS-Events-EventBusPolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Events-EventBusPolicy BranchName: 16.1.0 - Name: AWS-Events-Rule Owner: central-it@customer.com Description: AWS-Events-Rule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Events-Rule Tags: - Key: product-type Value: AWS-Events-Rule Versions: - Name: 16.1.0 Description: AWS-Events-Rule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Events-Rule BranchName: 16.1.0 - Name: AWS-FMS-NotificationChannel Owner: central-it@customer.com Description: AWS-FMS-NotificationChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-FMS-NotificationChannel Tags: - Key: product-type Value: AWS-FMS-NotificationChannel Versions: - Name: 16.1.0 Description: AWS-FMS-NotificationChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-FMS-NotificationChannel BranchName: 16.1.0 - Name: AWS-FMS-Policy Owner: central-it@customer.com Description: AWS-FMS-Policy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-FMS-Policy Tags: - Key: product-type Value: AWS-FMS-Policy Versions: - Name: 16.1.0 Description: AWS-FMS-Policy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-FMS-Policy BranchName: 16.1.0 - Name: AWS-FSx-FileSystem Owner: central-it@customer.com Description: AWS-FSx-FileSystem Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-FSx-FileSystem Tags: - Key: product-type Value: AWS-FSx-FileSystem Versions: - Name: 16.1.0 Description: AWS-FSx-FileSystem-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-FSx-FileSystem BranchName: 16.1.0 - Name: AWS-GameLift-Alias Owner: central-it@customer.com Description: AWS-GameLift-Alias Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GameLift-Alias Tags: - Key: product-type Value: AWS-GameLift-Alias Versions: - Name: 16.1.0 Description: AWS-GameLift-Alias-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GameLift-Alias BranchName: 16.1.0 - Name: AWS-GameLift-Build Owner: central-it@customer.com Description: AWS-GameLift-Build Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GameLift-Build Tags: - Key: product-type Value: AWS-GameLift-Build Versions: - Name: 16.1.0 Description: AWS-GameLift-Build-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GameLift-Build BranchName: 16.1.0 - Name: AWS-GameLift-Fleet Owner: central-it@customer.com Description: AWS-GameLift-Fleet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GameLift-Fleet Tags: - Key: product-type Value: AWS-GameLift-Fleet Versions: - Name: 16.1.0 Description: AWS-GameLift-Fleet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GameLift-Fleet BranchName: 16.1.0 - Name: AWS-GameLift-GameSessionQueue Owner: central-it@customer.com Description: AWS-GameLift-GameSessionQueue Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GameLift-GameSessionQueue Tags: - Key: product-type Value: AWS-GameLift-GameSessionQueue Versions: - Name: 16.1.0 Description: AWS-GameLift-GameSessionQueue-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GameLift-GameSessionQueue BranchName: 16.1.0 - Name: AWS-GameLift-MatchmakingConfiguration Owner: central-it@customer.com Description: AWS-GameLift-MatchmakingConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GameLift-MatchmakingConfiguration Tags: - Key: product-type Value: AWS-GameLift-MatchmakingConfiguration Versions: - Name: 16.1.0 Description: AWS-GameLift-MatchmakingConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GameLift-MatchmakingConfiguration BranchName: 16.1.0 - Name: AWS-GameLift-MatchmakingRuleSet Owner: central-it@customer.com Description: AWS-GameLift-MatchmakingRuleSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GameLift-MatchmakingRuleSet Tags: - Key: product-type Value: AWS-GameLift-MatchmakingRuleSet Versions: - Name: 16.1.0 Description: AWS-GameLift-MatchmakingRuleSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GameLift-MatchmakingRuleSet BranchName: 16.1.0 - Name: AWS-GameLift-Script Owner: central-it@customer.com Description: AWS-GameLift-Script Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GameLift-Script Tags: - Key: product-type Value: AWS-GameLift-Script Versions: - Name: 16.1.0 Description: AWS-GameLift-Script-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GameLift-Script BranchName: 16.1.0 - Name: AWS-GlobalAccelerator-Accelerator Owner: central-it@customer.com Description: AWS-GlobalAccelerator-Accelerator Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GlobalAccelerator-Accelerator Tags: - Key: product-type Value: AWS-GlobalAccelerator-Accelerator Versions: - Name: 16.1.0 Description: AWS-GlobalAccelerator-Accelerator-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GlobalAccelerator-Accelerator BranchName: 16.1.0 - Name: AWS-GlobalAccelerator-EndpointGroup Owner: central-it@customer.com Description: AWS-GlobalAccelerator-EndpointGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GlobalAccelerator-EndpointGroup Tags: - Key: product-type Value: AWS-GlobalAccelerator-EndpointGroup Versions: - Name: 16.1.0 Description: AWS-GlobalAccelerator-EndpointGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GlobalAccelerator-EndpointGroup BranchName: 16.1.0 - Name: AWS-GlobalAccelerator-Listener Owner: central-it@customer.com Description: AWS-GlobalAccelerator-Listener Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GlobalAccelerator-Listener Tags: - Key: product-type Value: AWS-GlobalAccelerator-Listener Versions: - Name: 16.1.0 Description: AWS-GlobalAccelerator-Listener-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GlobalAccelerator-Listener BranchName: 16.1.0 - Name: AWS-Glue-Classifier Owner: central-it@customer.com Description: AWS-Glue-Classifier Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Classifier Tags: - Key: product-type Value: AWS-Glue-Classifier Versions: - Name: 16.1.0 Description: AWS-Glue-Classifier-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Classifier BranchName: 16.1.0 - Name: AWS-Glue-Connection Owner: central-it@customer.com Description: AWS-Glue-Connection Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Connection Tags: - Key: product-type Value: AWS-Glue-Connection Versions: - Name: 16.1.0 Description: AWS-Glue-Connection-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Connection BranchName: 16.1.0 - Name: AWS-Glue-Crawler Owner: central-it@customer.com Description: AWS-Glue-Crawler Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Crawler Tags: - Key: product-type Value: AWS-Glue-Crawler Versions: - Name: 16.1.0 Description: AWS-Glue-Crawler-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Crawler BranchName: 16.1.0 - Name: AWS-Glue-DataCatalogEncryptionSettings Owner: central-it@customer.com Description: AWS-Glue-DataCatalogEncryptionSettings Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-DataCatalogEncryptionSettings Tags: - Key: product-type Value: AWS-Glue-DataCatalogEncryptionSettings Versions: - Name: 16.1.0 Description: AWS-Glue-DataCatalogEncryptionSettings-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-DataCatalogEncryptionSettings BranchName: 16.1.0 - Name: AWS-Glue-Database Owner: central-it@customer.com Description: AWS-Glue-Database Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Database Tags: - Key: product-type Value: AWS-Glue-Database Versions: - Name: 16.1.0 Description: AWS-Glue-Database-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Database BranchName: 16.1.0 - Name: AWS-Glue-DevEndpoint Owner: central-it@customer.com Description: AWS-Glue-DevEndpoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-DevEndpoint Tags: - Key: product-type Value: AWS-Glue-DevEndpoint Versions: - Name: 16.1.0 Description: AWS-Glue-DevEndpoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-DevEndpoint BranchName: 16.1.0 - Name: AWS-Glue-Job Owner: central-it@customer.com Description: AWS-Glue-Job Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Job Tags: - Key: product-type Value: AWS-Glue-Job Versions: - Name: 16.1.0 Description: AWS-Glue-Job-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Job BranchName: 16.1.0 - Name: AWS-Glue-MLTransform Owner: central-it@customer.com Description: AWS-Glue-MLTransform Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-MLTransform Tags: - Key: product-type Value: AWS-Glue-MLTransform Versions: - Name: 16.1.0 Description: AWS-Glue-MLTransform-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-MLTransform BranchName: 16.1.0 - Name: AWS-Glue-Partition Owner: central-it@customer.com Description: AWS-Glue-Partition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Partition Tags: - Key: product-type Value: AWS-Glue-Partition Versions: - Name: 16.1.0 Description: AWS-Glue-Partition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Partition BranchName: 16.1.0 - Name: AWS-Glue-SecurityConfiguration Owner: central-it@customer.com Description: AWS-Glue-SecurityConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-SecurityConfiguration Tags: - Key: product-type Value: AWS-Glue-SecurityConfiguration Versions: - Name: 16.1.0 Description: AWS-Glue-SecurityConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-SecurityConfiguration BranchName: 16.1.0 - Name: AWS-Glue-Table Owner: central-it@customer.com Description: AWS-Glue-Table Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Table Tags: - Key: product-type Value: AWS-Glue-Table Versions: - Name: 16.1.0 Description: AWS-Glue-Table-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Table BranchName: 16.1.0 - Name: AWS-Glue-Trigger Owner: central-it@customer.com Description: AWS-Glue-Trigger Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Trigger Tags: - Key: product-type Value: AWS-Glue-Trigger Versions: - Name: 16.1.0 Description: AWS-Glue-Trigger-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Trigger BranchName: 16.1.0 - Name: AWS-Glue-Workflow Owner: central-it@customer.com Description: AWS-Glue-Workflow Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Workflow Tags: - Key: product-type Value: AWS-Glue-Workflow Versions: - Name: 16.1.0 Description: AWS-Glue-Workflow-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Workflow BranchName: 16.1.0 - Name: AWS-Greengrass-ConnectorDefinition Owner: central-it@customer.com Description: AWS-Greengrass-ConnectorDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-ConnectorDefinition Tags: - Key: product-type Value: AWS-Greengrass-ConnectorDefinition Versions: - Name: 16.1.0 Description: AWS-Greengrass-ConnectorDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-ConnectorDefinition BranchName: 16.1.0 - Name: AWS-Greengrass-ConnectorDefinitionVersion Owner: central-it@customer.com Description: AWS-Greengrass-ConnectorDefinitionVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-ConnectorDefinitionVersion Tags: - Key: product-type Value: AWS-Greengrass-ConnectorDefinitionVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-ConnectorDefinitionVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-ConnectorDefinitionVersion BranchName: 16.1.0 - Name: AWS-Greengrass-CoreDefinition Owner: central-it@customer.com Description: AWS-Greengrass-CoreDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-CoreDefinition Tags: - Key: product-type Value: AWS-Greengrass-CoreDefinition Versions: - Name: 16.1.0 Description: AWS-Greengrass-CoreDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-CoreDefinition BranchName: 16.1.0 - Name: AWS-Greengrass-CoreDefinitionVersion Owner: central-it@customer.com Description: AWS-Greengrass-CoreDefinitionVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-CoreDefinitionVersion Tags: - Key: product-type Value: AWS-Greengrass-CoreDefinitionVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-CoreDefinitionVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-CoreDefinitionVersion BranchName: 16.1.0 - Name: AWS-Greengrass-DeviceDefinition Owner: central-it@customer.com Description: AWS-Greengrass-DeviceDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-DeviceDefinition Tags: - Key: product-type Value: AWS-Greengrass-DeviceDefinition Versions: - Name: 16.1.0 Description: AWS-Greengrass-DeviceDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-DeviceDefinition BranchName: 16.1.0 - Name: AWS-Greengrass-DeviceDefinitionVersion Owner: central-it@customer.com Description: AWS-Greengrass-DeviceDefinitionVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-DeviceDefinitionVersion Tags: - Key: product-type Value: AWS-Greengrass-DeviceDefinitionVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-DeviceDefinitionVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-DeviceDefinitionVersion BranchName: 16.1.0 - Name: AWS-Greengrass-FunctionDefinition Owner: central-it@customer.com Description: AWS-Greengrass-FunctionDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-FunctionDefinition Tags: - Key: product-type Value: AWS-Greengrass-FunctionDefinition Versions: - Name: 16.1.0 Description: AWS-Greengrass-FunctionDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-FunctionDefinition BranchName: 16.1.0 - Name: AWS-Greengrass-FunctionDefinitionVersion Owner: central-it@customer.com Description: AWS-Greengrass-FunctionDefinitionVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-FunctionDefinitionVersion Tags: - Key: product-type Value: AWS-Greengrass-FunctionDefinitionVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-FunctionDefinitionVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-FunctionDefinitionVersion BranchName: 16.1.0 - Name: AWS-Greengrass-Group Owner: central-it@customer.com Description: AWS-Greengrass-Group Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-Group Tags: - Key: product-type Value: AWS-Greengrass-Group Versions: - Name: 16.1.0 Description: AWS-Greengrass-Group-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-Group BranchName: 16.1.0 - Name: AWS-Greengrass-GroupVersion Owner: central-it@customer.com Description: AWS-Greengrass-GroupVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-GroupVersion Tags: - Key: product-type Value: AWS-Greengrass-GroupVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-GroupVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-GroupVersion BranchName: 16.1.0 - Name: AWS-Greengrass-LoggerDefinition Owner: central-it@customer.com Description: AWS-Greengrass-LoggerDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-LoggerDefinition Tags: - Key: product-type Value: AWS-Greengrass-LoggerDefinition Versions: - Name: 16.1.0 Description: AWS-Greengrass-LoggerDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-LoggerDefinition BranchName: 16.1.0 - Name: AWS-Greengrass-LoggerDefinitionVersion Owner: central-it@customer.com Description: AWS-Greengrass-LoggerDefinitionVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-LoggerDefinitionVersion Tags: - Key: product-type Value: AWS-Greengrass-LoggerDefinitionVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-LoggerDefinitionVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-LoggerDefinitionVersion BranchName: 16.1.0 - Name: AWS-Greengrass-ResourceDefinition Owner: central-it@customer.com Description: AWS-Greengrass-ResourceDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-ResourceDefinition Tags: - Key: product-type Value: AWS-Greengrass-ResourceDefinition Versions: - Name: 16.1.0 Description: AWS-Greengrass-ResourceDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-ResourceDefinition BranchName: 16.1.0 - Name: AWS-Greengrass-ResourceDefinitionVersion Owner: central-it@customer.com Description: AWS-Greengrass-ResourceDefinitionVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-ResourceDefinitionVersion Tags: - Key: product-type Value: AWS-Greengrass-ResourceDefinitionVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-ResourceDefinitionVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-ResourceDefinitionVersion BranchName: 16.1.0 - Name: AWS-Greengrass-SubscriptionDefinition Owner: central-it@customer.com Description: AWS-Greengrass-SubscriptionDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-SubscriptionDefinition Tags: - Key: product-type Value: AWS-Greengrass-SubscriptionDefinition Versions: - Name: 16.1.0 Description: AWS-Greengrass-SubscriptionDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-SubscriptionDefinition BranchName: 16.1.0 - Name: AWS-Greengrass-SubscriptionDefinitionVersion Owner: central-it@customer.com Description: AWS-Greengrass-SubscriptionDefinitionVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-SubscriptionDefinitionVersion Tags: - Key: product-type Value: AWS-Greengrass-SubscriptionDefinitionVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-SubscriptionDefinitionVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-SubscriptionDefinitionVersion BranchName: 16.1.0 - Name: AWS-GroundStation-Config Owner: central-it@customer.com Description: AWS-GroundStation-Config Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GroundStation-Config Tags: - Key: product-type Value: AWS-GroundStation-Config Versions: - Name: 16.1.0 Description: AWS-GroundStation-Config-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GroundStation-Config BranchName: 16.1.0 - Name: AWS-GroundStation-DataflowEndpointGroup Owner: central-it@customer.com Description: AWS-GroundStation-DataflowEndpointGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GroundStation-DataflowEndpointGroup Tags: - Key: product-type Value: AWS-GroundStation-DataflowEndpointGroup Versions: - Name: 16.1.0 Description: AWS-GroundStation-DataflowEndpointGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GroundStation-DataflowEndpointGroup BranchName: 16.1.0 - Name: AWS-GroundStation-MissionProfile Owner: central-it@customer.com Description: AWS-GroundStation-MissionProfile Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GroundStation-MissionProfile Tags: - Key: product-type Value: AWS-GroundStation-MissionProfile Versions: - Name: 16.1.0 Description: AWS-GroundStation-MissionProfile-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GroundStation-MissionProfile BranchName: 16.1.0 - Name: AWS-GuardDuty-Detector Owner: central-it@customer.com Description: AWS-GuardDuty-Detector Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GuardDuty-Detector Tags: - Key: product-type Value: AWS-GuardDuty-Detector Versions: - Name: 16.1.0 Description: AWS-GuardDuty-Detector-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GuardDuty-Detector BranchName: 16.1.0 - Name: AWS-GuardDuty-Filter Owner: central-it@customer.com Description: AWS-GuardDuty-Filter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GuardDuty-Filter Tags: - Key: product-type Value: AWS-GuardDuty-Filter Versions: - Name: 16.1.0 Description: AWS-GuardDuty-Filter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GuardDuty-Filter BranchName: 16.1.0 - Name: AWS-GuardDuty-IPSet Owner: central-it@customer.com Description: AWS-GuardDuty-IPSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GuardDuty-IPSet Tags: - Key: product-type Value: AWS-GuardDuty-IPSet Versions: - Name: 16.1.0 Description: AWS-GuardDuty-IPSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GuardDuty-IPSet BranchName: 16.1.0 - Name: AWS-GuardDuty-Master Owner: central-it@customer.com Description: AWS-GuardDuty-Master Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GuardDuty-Master Tags: - Key: product-type Value: AWS-GuardDuty-Master Versions: - Name: 16.1.0 Description: AWS-GuardDuty-Master-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GuardDuty-Master BranchName: 16.1.0 - Name: AWS-GuardDuty-Member Owner: central-it@customer.com Description: AWS-GuardDuty-Member Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GuardDuty-Member Tags: - Key: product-type Value: AWS-GuardDuty-Member Versions: - Name: 16.1.0 Description: AWS-GuardDuty-Member-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GuardDuty-Member BranchName: 16.1.0 - Name: AWS-GuardDuty-ThreatIntelSet Owner: central-it@customer.com Description: AWS-GuardDuty-ThreatIntelSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GuardDuty-ThreatIntelSet Tags: - Key: product-type Value: AWS-GuardDuty-ThreatIntelSet Versions: - Name: 16.1.0 Description: AWS-GuardDuty-ThreatIntelSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GuardDuty-ThreatIntelSet BranchName: 16.1.0 - Name: AWS-IAM-AccessKey Owner: central-it@customer.com Description: AWS-IAM-AccessKey Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-AccessKey Tags: - Key: product-type Value: AWS-IAM-AccessKey Versions: - Name: 16.1.0 Description: AWS-IAM-AccessKey-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-AccessKey BranchName: 16.1.0 - Name: AWS-IAM-Group Owner: central-it@customer.com Description: AWS-IAM-Group Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-Group Tags: - Key: product-type Value: AWS-IAM-Group Versions: - Name: 16.1.0 Description: AWS-IAM-Group-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-Group BranchName: 16.1.0 - Name: AWS-IAM-InstanceProfile Owner: central-it@customer.com Description: AWS-IAM-InstanceProfile Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-InstanceProfile Tags: - Key: product-type Value: AWS-IAM-InstanceProfile Versions: - Name: 16.1.0 Description: AWS-IAM-InstanceProfile-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-InstanceProfile BranchName: 16.1.0 - Name: AWS-IAM-ManagedPolicy Owner: central-it@customer.com Description: AWS-IAM-ManagedPolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-ManagedPolicy Tags: - Key: product-type Value: AWS-IAM-ManagedPolicy Versions: - Name: 16.1.0 Description: AWS-IAM-ManagedPolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-ManagedPolicy BranchName: 16.1.0 - Name: AWS-IAM-Policy Owner: central-it@customer.com Description: AWS-IAM-Policy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-Policy Tags: - Key: product-type Value: AWS-IAM-Policy Versions: - Name: 16.1.0 Description: AWS-IAM-Policy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-Policy BranchName: 16.1.0 - Name: AWS-IAM-Role Owner: central-it@customer.com Description: AWS-IAM-Role Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-Role Tags: - Key: product-type Value: AWS-IAM-Role Versions: - Name: 16.1.0 Description: AWS-IAM-Role-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-Role BranchName: 16.1.0 - Name: AWS-IAM-ServiceLinkedRole Owner: central-it@customer.com Description: AWS-IAM-ServiceLinkedRole Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-ServiceLinkedRole Tags: - Key: product-type Value: AWS-IAM-ServiceLinkedRole Versions: - Name: 16.1.0 Description: AWS-IAM-ServiceLinkedRole-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-ServiceLinkedRole BranchName: 16.1.0 - Name: AWS-IAM-User Owner: central-it@customer.com Description: AWS-IAM-User Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-User Tags: - Key: product-type Value: AWS-IAM-User Versions: - Name: 16.1.0 Description: AWS-IAM-User-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-User BranchName: 16.1.0 - Name: AWS-IAM-UserToGroupAddition Owner: central-it@customer.com Description: AWS-IAM-UserToGroupAddition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-UserToGroupAddition Tags: - Key: product-type Value: AWS-IAM-UserToGroupAddition Versions: - Name: 16.1.0 Description: AWS-IAM-UserToGroupAddition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-UserToGroupAddition BranchName: 16.1.0 - Name: AWS-ImageBuilder-Component Owner: central-it@customer.com Description: AWS-ImageBuilder-Component Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ImageBuilder-Component Tags: - Key: product-type Value: AWS-ImageBuilder-Component Versions: - Name: 16.1.0 Description: AWS-ImageBuilder-Component-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ImageBuilder-Component BranchName: 16.1.0 - Name: AWS-ImageBuilder-DistributionConfiguration Owner: central-it@customer.com Description: AWS-ImageBuilder-DistributionConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ImageBuilder-DistributionConfiguration Tags: - Key: product-type Value: AWS-ImageBuilder-DistributionConfiguration Versions: - Name: 16.1.0 Description: AWS-ImageBuilder-DistributionConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ImageBuilder-DistributionConfiguration BranchName: 16.1.0 - Name: AWS-ImageBuilder-Image Owner: central-it@customer.com Description: AWS-ImageBuilder-Image Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ImageBuilder-Image Tags: - Key: product-type Value: AWS-ImageBuilder-Image Versions: - Name: 16.1.0 Description: AWS-ImageBuilder-Image-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ImageBuilder-Image BranchName: 16.1.0 - Name: AWS-ImageBuilder-ImagePipeline Owner: central-it@customer.com Description: AWS-ImageBuilder-ImagePipeline Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ImageBuilder-ImagePipeline Tags: - Key: product-type Value: AWS-ImageBuilder-ImagePipeline Versions: - Name: 16.1.0 Description: AWS-ImageBuilder-ImagePipeline-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ImageBuilder-ImagePipeline BranchName: 16.1.0 - Name: AWS-ImageBuilder-ImageRecipe Owner: central-it@customer.com Description: AWS-ImageBuilder-ImageRecipe Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ImageBuilder-ImageRecipe Tags: - Key: product-type Value: AWS-ImageBuilder-ImageRecipe Versions: - Name: 16.1.0 Description: AWS-ImageBuilder-ImageRecipe-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ImageBuilder-ImageRecipe BranchName: 16.1.0 - Name: AWS-ImageBuilder-InfrastructureConfiguration Owner: central-it@customer.com Description: AWS-ImageBuilder-InfrastructureConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ImageBuilder-InfrastructureConfiguration Tags: - Key: product-type Value: AWS-ImageBuilder-InfrastructureConfiguration Versions: - Name: 16.1.0 Description: AWS-ImageBuilder-InfrastructureConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ImageBuilder-InfrastructureConfiguration BranchName: 16.1.0 - Name: AWS-Inspector-AssessmentTarget Owner: central-it@customer.com Description: AWS-Inspector-AssessmentTarget Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Inspector-AssessmentTarget Tags: - Key: product-type Value: AWS-Inspector-AssessmentTarget Versions: - Name: 16.1.0 Description: AWS-Inspector-AssessmentTarget-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Inspector-AssessmentTarget BranchName: 16.1.0 - Name: AWS-Inspector-AssessmentTemplate Owner: central-it@customer.com Description: AWS-Inspector-AssessmentTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Inspector-AssessmentTemplate Tags: - Key: product-type Value: AWS-Inspector-AssessmentTemplate Versions: - Name: 16.1.0 Description: AWS-Inspector-AssessmentTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Inspector-AssessmentTemplate BranchName: 16.1.0 - Name: AWS-Inspector-ResourceGroup Owner: central-it@customer.com Description: AWS-Inspector-ResourceGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Inspector-ResourceGroup Tags: - Key: product-type Value: AWS-Inspector-ResourceGroup Versions: - Name: 16.1.0 Description: AWS-Inspector-ResourceGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Inspector-ResourceGroup BranchName: 16.1.0 - Name: AWS-IoT-Certificate Owner: central-it@customer.com Description: AWS-IoT-Certificate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT-Certificate Tags: - Key: product-type Value: AWS-IoT-Certificate Versions: - Name: 16.1.0 Description: AWS-IoT-Certificate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT-Certificate BranchName: 16.1.0 - Name: AWS-IoT-Policy Owner: central-it@customer.com Description: AWS-IoT-Policy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT-Policy Tags: - Key: product-type Value: AWS-IoT-Policy Versions: - Name: 16.1.0 Description: AWS-IoT-Policy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT-Policy BranchName: 16.1.0 - Name: AWS-IoT-PolicyPrincipalAttachment Owner: central-it@customer.com Description: AWS-IoT-PolicyPrincipalAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT-PolicyPrincipalAttachment Tags: - Key: product-type Value: AWS-IoT-PolicyPrincipalAttachment Versions: - Name: 16.1.0 Description: AWS-IoT-PolicyPrincipalAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT-PolicyPrincipalAttachment BranchName: 16.1.0 - Name: AWS-IoT-ProvisioningTemplate Owner: central-it@customer.com Description: AWS-IoT-ProvisioningTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT-ProvisioningTemplate Tags: - Key: product-type Value: AWS-IoT-ProvisioningTemplate Versions: - Name: 16.1.0 Description: AWS-IoT-ProvisioningTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT-ProvisioningTemplate BranchName: 16.1.0 - Name: AWS-IoT-Thing Owner: central-it@customer.com Description: AWS-IoT-Thing Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT-Thing Tags: - Key: product-type Value: AWS-IoT-Thing Versions: - Name: 16.1.0 Description: AWS-IoT-Thing-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT-Thing BranchName: 16.1.0 - Name: AWS-IoT-ThingPrincipalAttachment Owner: central-it@customer.com Description: AWS-IoT-ThingPrincipalAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT-ThingPrincipalAttachment Tags: - Key: product-type Value: AWS-IoT-ThingPrincipalAttachment Versions: - Name: 16.1.0 Description: AWS-IoT-ThingPrincipalAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT-ThingPrincipalAttachment BranchName: 16.1.0 - Name: AWS-IoT-TopicRule Owner: central-it@customer.com Description: AWS-IoT-TopicRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT-TopicRule Tags: - Key: product-type Value: AWS-IoT-TopicRule Versions: - Name: 16.1.0 Description: AWS-IoT-TopicRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT-TopicRule BranchName: 16.1.0 - Name: AWS-IoT1Click-Device Owner: central-it@customer.com Description: AWS-IoT1Click-Device Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT1Click-Device Tags: - Key: product-type Value: AWS-IoT1Click-Device Versions: - Name: 16.1.0 Description: AWS-IoT1Click-Device-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT1Click-Device BranchName: 16.1.0 - Name: AWS-IoT1Click-Placement Owner: central-it@customer.com Description: AWS-IoT1Click-Placement Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT1Click-Placement Tags: - Key: product-type Value: AWS-IoT1Click-Placement Versions: - Name: 16.1.0 Description: AWS-IoT1Click-Placement-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT1Click-Placement BranchName: 16.1.0 - Name: AWS-IoT1Click-Project Owner: central-it@customer.com Description: AWS-IoT1Click-Project Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT1Click-Project Tags: - Key: product-type Value: AWS-IoT1Click-Project Versions: - Name: 16.1.0 Description: AWS-IoT1Click-Project-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT1Click-Project BranchName: 16.1.0 - Name: AWS-IoTAnalytics-Channel Owner: central-it@customer.com Description: AWS-IoTAnalytics-Channel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoTAnalytics-Channel Tags: - Key: product-type Value: AWS-IoTAnalytics-Channel Versions: - Name: 16.1.0 Description: AWS-IoTAnalytics-Channel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoTAnalytics-Channel BranchName: 16.1.0 - Name: AWS-IoTAnalytics-Dataset Owner: central-it@customer.com Description: AWS-IoTAnalytics-Dataset Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoTAnalytics-Dataset Tags: - Key: product-type Value: AWS-IoTAnalytics-Dataset Versions: - Name: 16.1.0 Description: AWS-IoTAnalytics-Dataset-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoTAnalytics-Dataset BranchName: 16.1.0 - Name: AWS-IoTAnalytics-Datastore Owner: central-it@customer.com Description: AWS-IoTAnalytics-Datastore Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoTAnalytics-Datastore Tags: - Key: product-type Value: AWS-IoTAnalytics-Datastore Versions: - Name: 16.1.0 Description: AWS-IoTAnalytics-Datastore-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoTAnalytics-Datastore BranchName: 16.1.0 - Name: AWS-IoTAnalytics-Pipeline Owner: central-it@customer.com Description: AWS-IoTAnalytics-Pipeline Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoTAnalytics-Pipeline Tags: - Key: product-type Value: AWS-IoTAnalytics-Pipeline Versions: - Name: 16.1.0 Description: AWS-IoTAnalytics-Pipeline-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoTAnalytics-Pipeline BranchName: 16.1.0 - Name: AWS-IoTEvents-DetectorModel Owner: central-it@customer.com Description: AWS-IoTEvents-DetectorModel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoTEvents-DetectorModel Tags: - Key: product-type Value: AWS-IoTEvents-DetectorModel Versions: - Name: 16.1.0 Description: AWS-IoTEvents-DetectorModel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoTEvents-DetectorModel BranchName: 16.1.0 - Name: AWS-IoTEvents-Input Owner: central-it@customer.com Description: AWS-IoTEvents-Input Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoTEvents-Input Tags: - Key: product-type Value: AWS-IoTEvents-Input Versions: - Name: 16.1.0 Description: AWS-IoTEvents-Input-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoTEvents-Input BranchName: 16.1.0 - Name: AWS-IoTThingsGraph-FlowTemplate Owner: central-it@customer.com Description: AWS-IoTThingsGraph-FlowTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoTThingsGraph-FlowTemplate Tags: - Key: product-type Value: AWS-IoTThingsGraph-FlowTemplate Versions: - Name: 16.1.0 Description: AWS-IoTThingsGraph-FlowTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoTThingsGraph-FlowTemplate BranchName: 16.1.0 - Name: AWS-KMS-Alias Owner: central-it@customer.com Description: AWS-KMS-Alias Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KMS-Alias Tags: - Key: product-type Value: AWS-KMS-Alias Versions: - Name: 16.1.0 Description: AWS-KMS-Alias-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KMS-Alias BranchName: 16.1.0 - Name: AWS-KMS-Key Owner: central-it@customer.com Description: AWS-KMS-Key Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KMS-Key Tags: - Key: product-type Value: AWS-KMS-Key Versions: - Name: 16.1.0 Description: AWS-KMS-Key-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KMS-Key BranchName: 16.1.0 - Name: AWS-Kinesis-Stream Owner: central-it@customer.com Description: AWS-Kinesis-Stream Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Kinesis-Stream Tags: - Key: product-type Value: AWS-Kinesis-Stream Versions: - Name: 16.1.0 Description: AWS-Kinesis-Stream-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Kinesis-Stream BranchName: 16.1.0 - Name: AWS-Kinesis-StreamConsumer Owner: central-it@customer.com Description: AWS-Kinesis-StreamConsumer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Kinesis-StreamConsumer Tags: - Key: product-type Value: AWS-Kinesis-StreamConsumer Versions: - Name: 16.1.0 Description: AWS-Kinesis-StreamConsumer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Kinesis-StreamConsumer BranchName: 16.1.0 - Name: AWS-KinesisAnalytics-Application Owner: central-it@customer.com Description: AWS-KinesisAnalytics-Application Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisAnalytics-Application Tags: - Key: product-type Value: AWS-KinesisAnalytics-Application Versions: - Name: 16.1.0 Description: AWS-KinesisAnalytics-Application-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisAnalytics-Application BranchName: 16.1.0 - Name: AWS-KinesisAnalytics-ApplicationOutput Owner: central-it@customer.com Description: AWS-KinesisAnalytics-ApplicationOutput Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisAnalytics-ApplicationOutput Tags: - Key: product-type Value: AWS-KinesisAnalytics-ApplicationOutput Versions: - Name: 16.1.0 Description: AWS-KinesisAnalytics-ApplicationOutput-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisAnalytics-ApplicationOutput BranchName: 16.1.0 - Name: AWS-KinesisAnalytics-ApplicationReferenceDataSource Owner: central-it@customer.com Description: AWS-KinesisAnalytics-ApplicationReferenceDataSource Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisAnalytics-ApplicationReferenceDataSource Tags: - Key: product-type Value: AWS-KinesisAnalytics-ApplicationReferenceDataSource Versions: - Name: 16.1.0 Description: AWS-KinesisAnalytics-ApplicationReferenceDataSource-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisAnalytics-ApplicationReferenceDataSource BranchName: 16.1.0 - Name: AWS-KinesisAnalyticsV2-Application Owner: central-it@customer.com Description: AWS-KinesisAnalyticsV2-Application Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisAnalyticsV2-Application Tags: - Key: product-type Value: AWS-KinesisAnalyticsV2-Application Versions: - Name: 16.1.0 Description: AWS-KinesisAnalyticsV2-Application-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisAnalyticsV2-Application BranchName: 16.1.0 - Name: AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption Owner: central-it@customer.com Description: AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption Tags: - Key: product-type Value: AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption Versions: - Name: 16.1.0 Description: AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption BranchName: 16.1.0 - Name: AWS-KinesisAnalyticsV2-ApplicationOutput Owner: central-it@customer.com Description: AWS-KinesisAnalyticsV2-ApplicationOutput Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisAnalyticsV2-ApplicationOutput Tags: - Key: product-type Value: AWS-KinesisAnalyticsV2-ApplicationOutput Versions: - Name: 16.1.0 Description: AWS-KinesisAnalyticsV2-ApplicationOutput-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisAnalyticsV2-ApplicationOutput BranchName: 16.1.0 - Name: AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource Owner: central-it@customer.com Description: AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource Tags: - Key: product-type Value: AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource Versions: - Name: 16.1.0 Description: AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource BranchName: 16.1.0 - Name: AWS-KinesisFirehose-DeliveryStream Owner: central-it@customer.com Description: AWS-KinesisFirehose-DeliveryStream Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisFirehose-DeliveryStream Tags: - Key: product-type Value: AWS-KinesisFirehose-DeliveryStream Versions: - Name: 16.1.0 Description: AWS-KinesisFirehose-DeliveryStream-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisFirehose-DeliveryStream BranchName: 16.1.0 - Name: AWS-LakeFormation-DataLakeSettings Owner: central-it@customer.com Description: AWS-LakeFormation-DataLakeSettings Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-LakeFormation-DataLakeSettings Tags: - Key: product-type Value: AWS-LakeFormation-DataLakeSettings Versions: - Name: 16.1.0 Description: AWS-LakeFormation-DataLakeSettings-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-LakeFormation-DataLakeSettings BranchName: 16.1.0 - Name: AWS-LakeFormation-Permissions Owner: central-it@customer.com Description: AWS-LakeFormation-Permissions Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-LakeFormation-Permissions Tags: - Key: product-type Value: AWS-LakeFormation-Permissions Versions: - Name: 16.1.0 Description: AWS-LakeFormation-Permissions-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-LakeFormation-Permissions BranchName: 16.1.0 - Name: AWS-LakeFormation-Resource Owner: central-it@customer.com Description: AWS-LakeFormation-Resource Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-LakeFormation-Resource Tags: - Key: product-type Value: AWS-LakeFormation-Resource Versions: - Name: 16.1.0 Description: AWS-LakeFormation-Resource-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-LakeFormation-Resource BranchName: 16.1.0 - Name: AWS-Lambda-Alias Owner: central-it@customer.com Description: AWS-Lambda-Alias Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-Alias Tags: - Key: product-type Value: AWS-Lambda-Alias Versions: - Name: 16.1.0 Description: AWS-Lambda-Alias-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-Alias BranchName: 16.1.0 - Name: AWS-Lambda-EventInvokeConfig Owner: central-it@customer.com Description: AWS-Lambda-EventInvokeConfig Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-EventInvokeConfig Tags: - Key: product-type Value: AWS-Lambda-EventInvokeConfig Versions: - Name: 16.1.0 Description: AWS-Lambda-EventInvokeConfig-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-EventInvokeConfig BranchName: 16.1.0 - Name: AWS-Lambda-EventSourceMapping Owner: central-it@customer.com Description: AWS-Lambda-EventSourceMapping Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-EventSourceMapping Tags: - Key: product-type Value: AWS-Lambda-EventSourceMapping Versions: - Name: 16.1.0 Description: AWS-Lambda-EventSourceMapping-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-EventSourceMapping BranchName: 16.1.0 - Name: AWS-Lambda-Function Owner: central-it@customer.com Description: AWS-Lambda-Function Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-Function Tags: - Key: product-type Value: AWS-Lambda-Function Versions: - Name: 16.1.0 Description: AWS-Lambda-Function-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-Function BranchName: 16.1.0 - Name: AWS-Lambda-LayerVersion Owner: central-it@customer.com Description: AWS-Lambda-LayerVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-LayerVersion Tags: - Key: product-type Value: AWS-Lambda-LayerVersion Versions: - Name: 16.1.0 Description: AWS-Lambda-LayerVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-LayerVersion BranchName: 16.1.0 - Name: AWS-Lambda-LayerVersionPermission Owner: central-it@customer.com Description: AWS-Lambda-LayerVersionPermission Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-LayerVersionPermission Tags: - Key: product-type Value: AWS-Lambda-LayerVersionPermission Versions: - Name: 16.1.0 Description: AWS-Lambda-LayerVersionPermission-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-LayerVersionPermission BranchName: 16.1.0 - Name: AWS-Lambda-Permission Owner: central-it@customer.com Description: AWS-Lambda-Permission Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-Permission Tags: - Key: product-type Value: AWS-Lambda-Permission Versions: - Name: 16.1.0 Description: AWS-Lambda-Permission-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-Permission BranchName: 16.1.0 - Name: AWS-Lambda-Version Owner: central-it@customer.com Description: AWS-Lambda-Version Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-Version Tags: - Key: product-type Value: AWS-Lambda-Version Versions: - Name: 16.1.0 Description: AWS-Lambda-Version-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-Version BranchName: 16.1.0 - Name: AWS-Logs-Destination Owner: central-it@customer.com Description: AWS-Logs-Destination Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Logs-Destination Tags: - Key: product-type Value: AWS-Logs-Destination Versions: - Name: 16.1.0 Description: AWS-Logs-Destination-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Logs-Destination BranchName: 16.1.0 - Name: AWS-Logs-LogGroup Owner: central-it@customer.com Description: AWS-Logs-LogGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Logs-LogGroup Tags: - Key: product-type Value: AWS-Logs-LogGroup Versions: - Name: 16.1.0 Description: AWS-Logs-LogGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Logs-LogGroup BranchName: 16.1.0 - Name: AWS-Logs-LogStream Owner: central-it@customer.com Description: AWS-Logs-LogStream Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Logs-LogStream Tags: - Key: product-type Value: AWS-Logs-LogStream Versions: - Name: 16.1.0 Description: AWS-Logs-LogStream-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Logs-LogStream BranchName: 16.1.0 - Name: AWS-Logs-MetricFilter Owner: central-it@customer.com Description: AWS-Logs-MetricFilter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Logs-MetricFilter Tags: - Key: product-type Value: AWS-Logs-MetricFilter Versions: - Name: 16.1.0 Description: AWS-Logs-MetricFilter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Logs-MetricFilter BranchName: 16.1.0 - Name: AWS-Logs-SubscriptionFilter Owner: central-it@customer.com Description: AWS-Logs-SubscriptionFilter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Logs-SubscriptionFilter Tags: - Key: product-type Value: AWS-Logs-SubscriptionFilter Versions: - Name: 16.1.0 Description: AWS-Logs-SubscriptionFilter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Logs-SubscriptionFilter BranchName: 16.1.0 - Name: AWS-MSK-Cluster Owner: central-it@customer.com Description: AWS-MSK-Cluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MSK-Cluster Tags: - Key: product-type Value: AWS-MSK-Cluster Versions: - Name: 16.1.0 Description: AWS-MSK-Cluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MSK-Cluster BranchName: 16.1.0 - Name: AWS-Macie-CustomDataIdentifier Owner: central-it@customer.com Description: AWS-Macie-CustomDataIdentifier Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Macie-CustomDataIdentifier Tags: - Key: product-type Value: AWS-Macie-CustomDataIdentifier Versions: - Name: 16.1.0 Description: AWS-Macie-CustomDataIdentifier-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Macie-CustomDataIdentifier BranchName: 16.1.0 - Name: AWS-Macie-FindingsFilter Owner: central-it@customer.com Description: AWS-Macie-FindingsFilter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Macie-FindingsFilter Tags: - Key: product-type Value: AWS-Macie-FindingsFilter Versions: - Name: 16.1.0 Description: AWS-Macie-FindingsFilter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Macie-FindingsFilter BranchName: 16.1.0 - Name: AWS-Macie-Session Owner: central-it@customer.com Description: AWS-Macie-Session Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Macie-Session Tags: - Key: product-type Value: AWS-Macie-Session Versions: - Name: 16.1.0 Description: AWS-Macie-Session-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Macie-Session BranchName: 16.1.0 - Name: AWS-ManagedBlockchain-Member Owner: central-it@customer.com Description: AWS-ManagedBlockchain-Member Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ManagedBlockchain-Member Tags: - Key: product-type Value: AWS-ManagedBlockchain-Member Versions: - Name: 16.1.0 Description: AWS-ManagedBlockchain-Member-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ManagedBlockchain-Member BranchName: 16.1.0 - Name: AWS-ManagedBlockchain-Node Owner: central-it@customer.com Description: AWS-ManagedBlockchain-Node Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ManagedBlockchain-Node Tags: - Key: product-type Value: AWS-ManagedBlockchain-Node Versions: - Name: 16.1.0 Description: AWS-ManagedBlockchain-Node-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ManagedBlockchain-Node BranchName: 16.1.0 - Name: AWS-MediaConvert-JobTemplate Owner: central-it@customer.com Description: AWS-MediaConvert-JobTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MediaConvert-JobTemplate Tags: - Key: product-type Value: AWS-MediaConvert-JobTemplate Versions: - Name: 16.1.0 Description: AWS-MediaConvert-JobTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MediaConvert-JobTemplate BranchName: 16.1.0 - Name: AWS-MediaConvert-Preset Owner: central-it@customer.com Description: AWS-MediaConvert-Preset Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MediaConvert-Preset Tags: - Key: product-type Value: AWS-MediaConvert-Preset Versions: - Name: 16.1.0 Description: AWS-MediaConvert-Preset-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MediaConvert-Preset BranchName: 16.1.0 - Name: AWS-MediaConvert-Queue Owner: central-it@customer.com Description: AWS-MediaConvert-Queue Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MediaConvert-Queue Tags: - Key: product-type Value: AWS-MediaConvert-Queue Versions: - Name: 16.1.0 Description: AWS-MediaConvert-Queue-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MediaConvert-Queue BranchName: 16.1.0 - Name: AWS-MediaLive-Channel Owner: central-it@customer.com Description: AWS-MediaLive-Channel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MediaLive-Channel Tags: - Key: product-type Value: AWS-MediaLive-Channel Versions: - Name: 16.1.0 Description: AWS-MediaLive-Channel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MediaLive-Channel BranchName: 16.1.0 - Name: AWS-MediaLive-Input Owner: central-it@customer.com Description: AWS-MediaLive-Input Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MediaLive-Input Tags: - Key: product-type Value: AWS-MediaLive-Input Versions: - Name: 16.1.0 Description: AWS-MediaLive-Input-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MediaLive-Input BranchName: 16.1.0 - Name: AWS-MediaLive-InputSecurityGroup Owner: central-it@customer.com Description: AWS-MediaLive-InputSecurityGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MediaLive-InputSecurityGroup Tags: - Key: product-type Value: AWS-MediaLive-InputSecurityGroup Versions: - Name: 16.1.0 Description: AWS-MediaLive-InputSecurityGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MediaLive-InputSecurityGroup BranchName: 16.1.0 - Name: AWS-MediaStore-Container Owner: central-it@customer.com Description: AWS-MediaStore-Container Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MediaStore-Container Tags: - Key: product-type Value: AWS-MediaStore-Container Versions: - Name: 16.1.0 Description: AWS-MediaStore-Container-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MediaStore-Container BranchName: 16.1.0 - Name: AWS-Neptune-DBCluster Owner: central-it@customer.com Description: AWS-Neptune-DBCluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Neptune-DBCluster Tags: - Key: product-type Value: AWS-Neptune-DBCluster Versions: - Name: 16.1.0 Description: AWS-Neptune-DBCluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Neptune-DBCluster BranchName: 16.1.0 - Name: AWS-Neptune-DBClusterParameterGroup Owner: central-it@customer.com Description: AWS-Neptune-DBClusterParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Neptune-DBClusterParameterGroup Tags: - Key: product-type Value: AWS-Neptune-DBClusterParameterGroup Versions: - Name: 16.1.0 Description: AWS-Neptune-DBClusterParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Neptune-DBClusterParameterGroup BranchName: 16.1.0 - Name: AWS-Neptune-DBInstance Owner: central-it@customer.com Description: AWS-Neptune-DBInstance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Neptune-DBInstance Tags: - Key: product-type Value: AWS-Neptune-DBInstance Versions: - Name: 16.1.0 Description: AWS-Neptune-DBInstance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Neptune-DBInstance BranchName: 16.1.0 - Name: AWS-Neptune-DBParameterGroup Owner: central-it@customer.com Description: AWS-Neptune-DBParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Neptune-DBParameterGroup Tags: - Key: product-type Value: AWS-Neptune-DBParameterGroup Versions: - Name: 16.1.0 Description: AWS-Neptune-DBParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Neptune-DBParameterGroup BranchName: 16.1.0 - Name: AWS-Neptune-DBSubnetGroup Owner: central-it@customer.com Description: AWS-Neptune-DBSubnetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Neptune-DBSubnetGroup Tags: - Key: product-type Value: AWS-Neptune-DBSubnetGroup Versions: - Name: 16.1.0 Description: AWS-Neptune-DBSubnetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Neptune-DBSubnetGroup BranchName: 16.1.0 - Name: AWS-NetworkManager-CustomerGatewayAssociation Owner: central-it@customer.com Description: AWS-NetworkManager-CustomerGatewayAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-NetworkManager-CustomerGatewayAssociation Tags: - Key: product-type Value: AWS-NetworkManager-CustomerGatewayAssociation Versions: - Name: 16.1.0 Description: AWS-NetworkManager-CustomerGatewayAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-NetworkManager-CustomerGatewayAssociation BranchName: 16.1.0 - Name: AWS-NetworkManager-Device Owner: central-it@customer.com Description: AWS-NetworkManager-Device Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-NetworkManager-Device Tags: - Key: product-type Value: AWS-NetworkManager-Device Versions: - Name: 16.1.0 Description: AWS-NetworkManager-Device-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-NetworkManager-Device BranchName: 16.1.0 - Name: AWS-NetworkManager-GlobalNetwork Owner: central-it@customer.com Description: AWS-NetworkManager-GlobalNetwork Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-NetworkManager-GlobalNetwork Tags: - Key: product-type Value: AWS-NetworkManager-GlobalNetwork Versions: - Name: 16.1.0 Description: AWS-NetworkManager-GlobalNetwork-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-NetworkManager-GlobalNetwork BranchName: 16.1.0 - Name: AWS-NetworkManager-Link Owner: central-it@customer.com Description: AWS-NetworkManager-Link Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-NetworkManager-Link Tags: - Key: product-type Value: AWS-NetworkManager-Link Versions: - Name: 16.1.0 Description: AWS-NetworkManager-Link-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-NetworkManager-Link BranchName: 16.1.0 - Name: AWS-NetworkManager-LinkAssociation Owner: central-it@customer.com Description: AWS-NetworkManager-LinkAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-NetworkManager-LinkAssociation Tags: - Key: product-type Value: AWS-NetworkManager-LinkAssociation Versions: - Name: 16.1.0 Description: AWS-NetworkManager-LinkAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-NetworkManager-LinkAssociation BranchName: 16.1.0 - Name: AWS-NetworkManager-Site Owner: central-it@customer.com Description: AWS-NetworkManager-Site Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-NetworkManager-Site Tags: - Key: product-type Value: AWS-NetworkManager-Site Versions: - Name: 16.1.0 Description: AWS-NetworkManager-Site-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-NetworkManager-Site BranchName: 16.1.0 - Name: AWS-NetworkManager-TransitGatewayRegistration Owner: central-it@customer.com Description: AWS-NetworkManager-TransitGatewayRegistration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-NetworkManager-TransitGatewayRegistration Tags: - Key: product-type Value: AWS-NetworkManager-TransitGatewayRegistration Versions: - Name: 16.1.0 Description: AWS-NetworkManager-TransitGatewayRegistration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-NetworkManager-TransitGatewayRegistration BranchName: 16.1.0 - Name: AWS-OpsWorks-App Owner: central-it@customer.com Description: AWS-OpsWorks-App Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorks-App Tags: - Key: product-type Value: AWS-OpsWorks-App Versions: - Name: 16.1.0 Description: AWS-OpsWorks-App-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorks-App BranchName: 16.1.0 - Name: AWS-OpsWorks-ElasticLoadBalancerAttachment Owner: central-it@customer.com Description: AWS-OpsWorks-ElasticLoadBalancerAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorks-ElasticLoadBalancerAttachment Tags: - Key: product-type Value: AWS-OpsWorks-ElasticLoadBalancerAttachment Versions: - Name: 16.1.0 Description: AWS-OpsWorks-ElasticLoadBalancerAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorks-ElasticLoadBalancerAttachment BranchName: 16.1.0 - Name: AWS-OpsWorks-Instance Owner: central-it@customer.com Description: AWS-OpsWorks-Instance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorks-Instance Tags: - Key: product-type Value: AWS-OpsWorks-Instance Versions: - Name: 16.1.0 Description: AWS-OpsWorks-Instance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorks-Instance BranchName: 16.1.0 - Name: AWS-OpsWorks-Layer Owner: central-it@customer.com Description: AWS-OpsWorks-Layer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorks-Layer Tags: - Key: product-type Value: AWS-OpsWorks-Layer Versions: - Name: 16.1.0 Description: AWS-OpsWorks-Layer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorks-Layer BranchName: 16.1.0 - Name: AWS-OpsWorks-Stack Owner: central-it@customer.com Description: AWS-OpsWorks-Stack Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorks-Stack Tags: - Key: product-type Value: AWS-OpsWorks-Stack Versions: - Name: 16.1.0 Description: AWS-OpsWorks-Stack-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorks-Stack BranchName: 16.1.0 - Name: AWS-OpsWorks-UserProfile Owner: central-it@customer.com Description: AWS-OpsWorks-UserProfile Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorks-UserProfile Tags: - Key: product-type Value: AWS-OpsWorks-UserProfile Versions: - Name: 16.1.0 Description: AWS-OpsWorks-UserProfile-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorks-UserProfile BranchName: 16.1.0 - Name: AWS-OpsWorks-Volume Owner: central-it@customer.com Description: AWS-OpsWorks-Volume Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorks-Volume Tags: - Key: product-type Value: AWS-OpsWorks-Volume Versions: - Name: 16.1.0 Description: AWS-OpsWorks-Volume-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorks-Volume BranchName: 16.1.0 - Name: AWS-OpsWorksCM-Server Owner: central-it@customer.com Description: AWS-OpsWorksCM-Server Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorksCM-Server Tags: - Key: product-type Value: AWS-OpsWorksCM-Server Versions: - Name: 16.1.0 Description: AWS-OpsWorksCM-Server-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorksCM-Server BranchName: 16.1.0 - Name: AWS-Pinpoint-ADMChannel Owner: central-it@customer.com Description: AWS-Pinpoint-ADMChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-ADMChannel Tags: - Key: product-type Value: AWS-Pinpoint-ADMChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-ADMChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-ADMChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-APNSChannel Owner: central-it@customer.com Description: AWS-Pinpoint-APNSChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-APNSChannel Tags: - Key: product-type Value: AWS-Pinpoint-APNSChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-APNSChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-APNSChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-APNSSandboxChannel Owner: central-it@customer.com Description: AWS-Pinpoint-APNSSandboxChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-APNSSandboxChannel Tags: - Key: product-type Value: AWS-Pinpoint-APNSSandboxChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-APNSSandboxChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-APNSSandboxChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-APNSVoipChannel Owner: central-it@customer.com Description: AWS-Pinpoint-APNSVoipChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-APNSVoipChannel Tags: - Key: product-type Value: AWS-Pinpoint-APNSVoipChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-APNSVoipChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-APNSVoipChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-APNSVoipSandboxChannel Owner: central-it@customer.com Description: AWS-Pinpoint-APNSVoipSandboxChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-APNSVoipSandboxChannel Tags: - Key: product-type Value: AWS-Pinpoint-APNSVoipSandboxChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-APNSVoipSandboxChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-APNSVoipSandboxChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-App Owner: central-it@customer.com Description: AWS-Pinpoint-App Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-App Tags: - Key: product-type Value: AWS-Pinpoint-App Versions: - Name: 16.1.0 Description: AWS-Pinpoint-App-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-App BranchName: 16.1.0 - Name: AWS-Pinpoint-ApplicationSettings Owner: central-it@customer.com Description: AWS-Pinpoint-ApplicationSettings Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-ApplicationSettings Tags: - Key: product-type Value: AWS-Pinpoint-ApplicationSettings Versions: - Name: 16.1.0 Description: AWS-Pinpoint-ApplicationSettings-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-ApplicationSettings BranchName: 16.1.0 - Name: AWS-Pinpoint-BaiduChannel Owner: central-it@customer.com Description: AWS-Pinpoint-BaiduChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-BaiduChannel Tags: - Key: product-type Value: AWS-Pinpoint-BaiduChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-BaiduChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-BaiduChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-Campaign Owner: central-it@customer.com Description: AWS-Pinpoint-Campaign Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-Campaign Tags: - Key: product-type Value: AWS-Pinpoint-Campaign Versions: - Name: 16.1.0 Description: AWS-Pinpoint-Campaign-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-Campaign BranchName: 16.1.0 - Name: AWS-Pinpoint-EmailChannel Owner: central-it@customer.com Description: AWS-Pinpoint-EmailChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-EmailChannel Tags: - Key: product-type Value: AWS-Pinpoint-EmailChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-EmailChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-EmailChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-EmailTemplate Owner: central-it@customer.com Description: AWS-Pinpoint-EmailTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-EmailTemplate Tags: - Key: product-type Value: AWS-Pinpoint-EmailTemplate Versions: - Name: 16.1.0 Description: AWS-Pinpoint-EmailTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-EmailTemplate BranchName: 16.1.0 - Name: AWS-Pinpoint-EventStream Owner: central-it@customer.com Description: AWS-Pinpoint-EventStream Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-EventStream Tags: - Key: product-type Value: AWS-Pinpoint-EventStream Versions: - Name: 16.1.0 Description: AWS-Pinpoint-EventStream-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-EventStream BranchName: 16.1.0 - Name: AWS-Pinpoint-GCMChannel Owner: central-it@customer.com Description: AWS-Pinpoint-GCMChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-GCMChannel Tags: - Key: product-type Value: AWS-Pinpoint-GCMChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-GCMChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-GCMChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-PushTemplate Owner: central-it@customer.com Description: AWS-Pinpoint-PushTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-PushTemplate Tags: - Key: product-type Value: AWS-Pinpoint-PushTemplate Versions: - Name: 16.1.0 Description: AWS-Pinpoint-PushTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-PushTemplate BranchName: 16.1.0 - Name: AWS-Pinpoint-SMSChannel Owner: central-it@customer.com Description: AWS-Pinpoint-SMSChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-SMSChannel Tags: - Key: product-type Value: AWS-Pinpoint-SMSChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-SMSChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-SMSChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-Segment Owner: central-it@customer.com Description: AWS-Pinpoint-Segment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-Segment Tags: - Key: product-type Value: AWS-Pinpoint-Segment Versions: - Name: 16.1.0 Description: AWS-Pinpoint-Segment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-Segment BranchName: 16.1.0 - Name: AWS-Pinpoint-SmsTemplate Owner: central-it@customer.com Description: AWS-Pinpoint-SmsTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-SmsTemplate Tags: - Key: product-type Value: AWS-Pinpoint-SmsTemplate Versions: - Name: 16.1.0 Description: AWS-Pinpoint-SmsTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-SmsTemplate BranchName: 16.1.0 - Name: AWS-Pinpoint-VoiceChannel Owner: central-it@customer.com Description: AWS-Pinpoint-VoiceChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-VoiceChannel Tags: - Key: product-type Value: AWS-Pinpoint-VoiceChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-VoiceChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-VoiceChannel BranchName: 16.1.0 - Name: AWS-PinpointEmail-ConfigurationSet Owner: central-it@customer.com Description: AWS-PinpointEmail-ConfigurationSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-PinpointEmail-ConfigurationSet Tags: - Key: product-type Value: AWS-PinpointEmail-ConfigurationSet Versions: - Name: 16.1.0 Description: AWS-PinpointEmail-ConfigurationSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-PinpointEmail-ConfigurationSet BranchName: 16.1.0 - Name: AWS-PinpointEmail-ConfigurationSetEventDestination Owner: central-it@customer.com Description: AWS-PinpointEmail-ConfigurationSetEventDestination Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-PinpointEmail-ConfigurationSetEventDestination Tags: - Key: product-type Value: AWS-PinpointEmail-ConfigurationSetEventDestination Versions: - Name: 16.1.0 Description: AWS-PinpointEmail-ConfigurationSetEventDestination-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-PinpointEmail-ConfigurationSetEventDestination BranchName: 16.1.0 - Name: AWS-PinpointEmail-DedicatedIpPool Owner: central-it@customer.com Description: AWS-PinpointEmail-DedicatedIpPool Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-PinpointEmail-DedicatedIpPool Tags: - Key: product-type Value: AWS-PinpointEmail-DedicatedIpPool Versions: - Name: 16.1.0 Description: AWS-PinpointEmail-DedicatedIpPool-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-PinpointEmail-DedicatedIpPool BranchName: 16.1.0 - Name: AWS-PinpointEmail-Identity Owner: central-it@customer.com Description: AWS-PinpointEmail-Identity Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-PinpointEmail-Identity Tags: - Key: product-type Value: AWS-PinpointEmail-Identity Versions: - Name: 16.1.0 Description: AWS-PinpointEmail-Identity-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-PinpointEmail-Identity BranchName: 16.1.0 - Name: AWS-QLDB-Ledger Owner: central-it@customer.com Description: AWS-QLDB-Ledger Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-QLDB-Ledger Tags: - Key: product-type Value: AWS-QLDB-Ledger Versions: - Name: 16.1.0 Description: AWS-QLDB-Ledger-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-QLDB-Ledger BranchName: 16.1.0 - Name: AWS-QLDB-Stream Owner: central-it@customer.com Description: AWS-QLDB-Stream Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-QLDB-Stream Tags: - Key: product-type Value: AWS-QLDB-Stream Versions: - Name: 16.1.0 Description: AWS-QLDB-Stream-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-QLDB-Stream BranchName: 16.1.0 - Name: AWS-RAM-ResourceShare Owner: central-it@customer.com Description: AWS-RAM-ResourceShare Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RAM-ResourceShare Tags: - Key: product-type Value: AWS-RAM-ResourceShare Versions: - Name: 16.1.0 Description: AWS-RAM-ResourceShare-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RAM-ResourceShare BranchName: 16.1.0 - Name: AWS-RDS-DBCluster Owner: central-it@customer.com Description: AWS-RDS-DBCluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBCluster Tags: - Key: product-type Value: AWS-RDS-DBCluster Versions: - Name: 16.1.0 Description: AWS-RDS-DBCluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBCluster BranchName: 16.1.0 - Name: AWS-RDS-DBClusterParameterGroup Owner: central-it@customer.com Description: AWS-RDS-DBClusterParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBClusterParameterGroup Tags: - Key: product-type Value: AWS-RDS-DBClusterParameterGroup Versions: - Name: 16.1.0 Description: AWS-RDS-DBClusterParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBClusterParameterGroup BranchName: 16.1.0 - Name: AWS-RDS-DBInstance Owner: central-it@customer.com Description: AWS-RDS-DBInstance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBInstance Tags: - Key: product-type Value: AWS-RDS-DBInstance Versions: - Name: 16.1.0 Description: AWS-RDS-DBInstance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBInstance BranchName: 16.1.0 - Name: AWS-RDS-DBParameterGroup Owner: central-it@customer.com Description: AWS-RDS-DBParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBParameterGroup Tags: - Key: product-type Value: AWS-RDS-DBParameterGroup Versions: - Name: 16.1.0 Description: AWS-RDS-DBParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBParameterGroup BranchName: 16.1.0 - Name: AWS-RDS-DBProxy Owner: central-it@customer.com Description: AWS-RDS-DBProxy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBProxy Tags: - Key: product-type Value: AWS-RDS-DBProxy Versions: - Name: 16.1.0 Description: AWS-RDS-DBProxy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBProxy BranchName: 16.1.0 - Name: AWS-RDS-DBProxyTargetGroup Owner: central-it@customer.com Description: AWS-RDS-DBProxyTargetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBProxyTargetGroup Tags: - Key: product-type Value: AWS-RDS-DBProxyTargetGroup Versions: - Name: 16.1.0 Description: AWS-RDS-DBProxyTargetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBProxyTargetGroup BranchName: 16.1.0 - Name: AWS-RDS-DBSecurityGroup Owner: central-it@customer.com Description: AWS-RDS-DBSecurityGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBSecurityGroup Tags: - Key: product-type Value: AWS-RDS-DBSecurityGroup Versions: - Name: 16.1.0 Description: AWS-RDS-DBSecurityGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBSecurityGroup BranchName: 16.1.0 - Name: AWS-RDS-DBSecurityGroupIngress Owner: central-it@customer.com Description: AWS-RDS-DBSecurityGroupIngress Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBSecurityGroupIngress Tags: - Key: product-type Value: AWS-RDS-DBSecurityGroupIngress Versions: - Name: 16.1.0 Description: AWS-RDS-DBSecurityGroupIngress-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBSecurityGroupIngress BranchName: 16.1.0 - Name: AWS-RDS-DBSubnetGroup Owner: central-it@customer.com Description: AWS-RDS-DBSubnetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBSubnetGroup Tags: - Key: product-type Value: AWS-RDS-DBSubnetGroup Versions: - Name: 16.1.0 Description: AWS-RDS-DBSubnetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBSubnetGroup BranchName: 16.1.0 - Name: AWS-RDS-EventSubscription Owner: central-it@customer.com Description: AWS-RDS-EventSubscription Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-EventSubscription Tags: - Key: product-type Value: AWS-RDS-EventSubscription Versions: - Name: 16.1.0 Description: AWS-RDS-EventSubscription-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-EventSubscription BranchName: 16.1.0 - Name: AWS-RDS-OptionGroup Owner: central-it@customer.com Description: AWS-RDS-OptionGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-OptionGroup Tags: - Key: product-type Value: AWS-RDS-OptionGroup Versions: - Name: 16.1.0 Description: AWS-RDS-OptionGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-OptionGroup BranchName: 16.1.0 - Name: AWS-Redshift-Cluster Owner: central-it@customer.com Description: AWS-Redshift-Cluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Redshift-Cluster Tags: - Key: product-type Value: AWS-Redshift-Cluster Versions: - Name: 16.1.0 Description: AWS-Redshift-Cluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Redshift-Cluster BranchName: 16.1.0 - Name: AWS-Redshift-ClusterParameterGroup Owner: central-it@customer.com Description: AWS-Redshift-ClusterParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Redshift-ClusterParameterGroup Tags: - Key: product-type Value: AWS-Redshift-ClusterParameterGroup Versions: - Name: 16.1.0 Description: AWS-Redshift-ClusterParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Redshift-ClusterParameterGroup BranchName: 16.1.0 - Name: AWS-Redshift-ClusterSecurityGroup Owner: central-it@customer.com Description: AWS-Redshift-ClusterSecurityGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Redshift-ClusterSecurityGroup Tags: - Key: product-type Value: AWS-Redshift-ClusterSecurityGroup Versions: - Name: 16.1.0 Description: AWS-Redshift-ClusterSecurityGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Redshift-ClusterSecurityGroup BranchName: 16.1.0 - Name: AWS-Redshift-ClusterSecurityGroupIngress Owner: central-it@customer.com Description: AWS-Redshift-ClusterSecurityGroupIngress Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Redshift-ClusterSecurityGroupIngress Tags: - Key: product-type Value: AWS-Redshift-ClusterSecurityGroupIngress Versions: - Name: 16.1.0 Description: AWS-Redshift-ClusterSecurityGroupIngress-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Redshift-ClusterSecurityGroupIngress BranchName: 16.1.0 - Name: AWS-Redshift-ClusterSubnetGroup Owner: central-it@customer.com Description: AWS-Redshift-ClusterSubnetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Redshift-ClusterSubnetGroup Tags: - Key: product-type Value: AWS-Redshift-ClusterSubnetGroup Versions: - Name: 16.1.0 Description: AWS-Redshift-ClusterSubnetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Redshift-ClusterSubnetGroup BranchName: 16.1.0 - Name: AWS-ResourceGroups-Group Owner: central-it@customer.com Description: AWS-ResourceGroups-Group Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ResourceGroups-Group Tags: - Key: product-type Value: AWS-ResourceGroups-Group Versions: - Name: 16.1.0 Description: AWS-ResourceGroups-Group-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ResourceGroups-Group BranchName: 16.1.0 - Name: AWS-RoboMaker-Fleet Owner: central-it@customer.com Description: AWS-RoboMaker-Fleet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RoboMaker-Fleet Tags: - Key: product-type Value: AWS-RoboMaker-Fleet Versions: - Name: 16.1.0 Description: AWS-RoboMaker-Fleet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RoboMaker-Fleet BranchName: 16.1.0 - Name: AWS-RoboMaker-Robot Owner: central-it@customer.com Description: AWS-RoboMaker-Robot Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RoboMaker-Robot Tags: - Key: product-type Value: AWS-RoboMaker-Robot Versions: - Name: 16.1.0 Description: AWS-RoboMaker-Robot-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RoboMaker-Robot BranchName: 16.1.0 - Name: AWS-RoboMaker-RobotApplication Owner: central-it@customer.com Description: AWS-RoboMaker-RobotApplication Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RoboMaker-RobotApplication Tags: - Key: product-type Value: AWS-RoboMaker-RobotApplication Versions: - Name: 16.1.0 Description: AWS-RoboMaker-RobotApplication-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RoboMaker-RobotApplication BranchName: 16.1.0 - Name: AWS-RoboMaker-RobotApplicationVersion Owner: central-it@customer.com Description: AWS-RoboMaker-RobotApplicationVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RoboMaker-RobotApplicationVersion Tags: - Key: product-type Value: AWS-RoboMaker-RobotApplicationVersion Versions: - Name: 16.1.0 Description: AWS-RoboMaker-RobotApplicationVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RoboMaker-RobotApplicationVersion BranchName: 16.1.0 - Name: AWS-RoboMaker-SimulationApplication Owner: central-it@customer.com Description: AWS-RoboMaker-SimulationApplication Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RoboMaker-SimulationApplication Tags: - Key: product-type Value: AWS-RoboMaker-SimulationApplication Versions: - Name: 16.1.0 Description: AWS-RoboMaker-SimulationApplication-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RoboMaker-SimulationApplication BranchName: 16.1.0 - Name: AWS-RoboMaker-SimulationApplicationVersion Owner: central-it@customer.com Description: AWS-RoboMaker-SimulationApplicationVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RoboMaker-SimulationApplicationVersion Tags: - Key: product-type Value: AWS-RoboMaker-SimulationApplicationVersion Versions: - Name: 16.1.0 Description: AWS-RoboMaker-SimulationApplicationVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RoboMaker-SimulationApplicationVersion BranchName: 16.1.0 - Name: AWS-Route53-HealthCheck Owner: central-it@customer.com Description: AWS-Route53-HealthCheck Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Route53-HealthCheck Tags: - Key: product-type Value: AWS-Route53-HealthCheck Versions: - Name: 16.1.0 Description: AWS-Route53-HealthCheck-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Route53-HealthCheck BranchName: 16.1.0 - Name: AWS-Route53-HostedZone Owner: central-it@customer.com Description: AWS-Route53-HostedZone Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Route53-HostedZone Tags: - Key: product-type Value: AWS-Route53-HostedZone Versions: - Name: 16.1.0 Description: AWS-Route53-HostedZone-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Route53-HostedZone BranchName: 16.1.0 - Name: AWS-Route53-RecordSet Owner: central-it@customer.com Description: AWS-Route53-RecordSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Route53-RecordSet Tags: - Key: product-type Value: AWS-Route53-RecordSet Versions: - Name: 16.1.0 Description: AWS-Route53-RecordSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Route53-RecordSet BranchName: 16.1.0 - Name: AWS-Route53-RecordSetGroup Owner: central-it@customer.com Description: AWS-Route53-RecordSetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Route53-RecordSetGroup Tags: - Key: product-type Value: AWS-Route53-RecordSetGroup Versions: - Name: 16.1.0 Description: AWS-Route53-RecordSetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Route53-RecordSetGroup BranchName: 16.1.0 - Name: AWS-Route53Resolver-ResolverEndpoint Owner: central-it@customer.com Description: AWS-Route53Resolver-ResolverEndpoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Route53Resolver-ResolverEndpoint Tags: - Key: product-type Value: AWS-Route53Resolver-ResolverEndpoint Versions: - Name: 16.1.0 Description: AWS-Route53Resolver-ResolverEndpoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Route53Resolver-ResolverEndpoint BranchName: 16.1.0 - Name: AWS-Route53Resolver-ResolverRule Owner: central-it@customer.com Description: AWS-Route53Resolver-ResolverRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Route53Resolver-ResolverRule Tags: - Key: product-type Value: AWS-Route53Resolver-ResolverRule Versions: - Name: 16.1.0 Description: AWS-Route53Resolver-ResolverRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Route53Resolver-ResolverRule BranchName: 16.1.0 - Name: AWS-Route53Resolver-ResolverRuleAssociation Owner: central-it@customer.com Description: AWS-Route53Resolver-ResolverRuleAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Route53Resolver-ResolverRuleAssociation Tags: - Key: product-type Value: AWS-Route53Resolver-ResolverRuleAssociation Versions: - Name: 16.1.0 Description: AWS-Route53Resolver-ResolverRuleAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Route53Resolver-ResolverRuleAssociation BranchName: 16.1.0 - Name: AWS-S3-AccessPoint Owner: central-it@customer.com Description: AWS-S3-AccessPoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-S3-AccessPoint Tags: - Key: product-type Value: AWS-S3-AccessPoint Versions: - Name: 16.1.0 Description: AWS-S3-AccessPoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-S3-AccessPoint BranchName: 16.1.0 - Name: AWS-S3-Bucket Owner: central-it@customer.com Description: AWS-S3-Bucket Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-S3-Bucket Tags: - Key: product-type Value: AWS-S3-Bucket Versions: - Name: 16.1.0 Description: AWS-S3-Bucket-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-S3-Bucket BranchName: 16.1.0 - Name: AWS-S3-BucketPolicy Owner: central-it@customer.com Description: AWS-S3-BucketPolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-S3-BucketPolicy Tags: - Key: product-type Value: AWS-S3-BucketPolicy Versions: - Name: 16.1.0 Description: AWS-S3-BucketPolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-S3-BucketPolicy BranchName: 16.1.0 - Name: AWS-SDB-Domain Owner: central-it@customer.com Description: AWS-SDB-Domain Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SDB-Domain Tags: - Key: product-type Value: AWS-SDB-Domain Versions: - Name: 16.1.0 Description: AWS-SDB-Domain-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SDB-Domain BranchName: 16.1.0 - Name: AWS-SES-ConfigurationSet Owner: central-it@customer.com Description: AWS-SES-ConfigurationSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SES-ConfigurationSet Tags: - Key: product-type Value: AWS-SES-ConfigurationSet Versions: - Name: 16.1.0 Description: AWS-SES-ConfigurationSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SES-ConfigurationSet BranchName: 16.1.0 - Name: AWS-SES-ConfigurationSetEventDestination Owner: central-it@customer.com Description: AWS-SES-ConfigurationSetEventDestination Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SES-ConfigurationSetEventDestination Tags: - Key: product-type Value: AWS-SES-ConfigurationSetEventDestination Versions: - Name: 16.1.0 Description: AWS-SES-ConfigurationSetEventDestination-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SES-ConfigurationSetEventDestination BranchName: 16.1.0 - Name: AWS-SES-ReceiptFilter Owner: central-it@customer.com Description: AWS-SES-ReceiptFilter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SES-ReceiptFilter Tags: - Key: product-type Value: AWS-SES-ReceiptFilter Versions: - Name: 16.1.0 Description: AWS-SES-ReceiptFilter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SES-ReceiptFilter BranchName: 16.1.0 - Name: AWS-SES-ReceiptRule Owner: central-it@customer.com Description: AWS-SES-ReceiptRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SES-ReceiptRule Tags: - Key: product-type Value: AWS-SES-ReceiptRule Versions: - Name: 16.1.0 Description: AWS-SES-ReceiptRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SES-ReceiptRule BranchName: 16.1.0 - Name: AWS-SES-ReceiptRuleSet Owner: central-it@customer.com Description: AWS-SES-ReceiptRuleSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SES-ReceiptRuleSet Tags: - Key: product-type Value: AWS-SES-ReceiptRuleSet Versions: - Name: 16.1.0 Description: AWS-SES-ReceiptRuleSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SES-ReceiptRuleSet BranchName: 16.1.0 - Name: AWS-SES-Template Owner: central-it@customer.com Description: AWS-SES-Template Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SES-Template Tags: - Key: product-type Value: AWS-SES-Template Versions: - Name: 16.1.0 Description: AWS-SES-Template-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SES-Template BranchName: 16.1.0 - Name: AWS-SNS-Subscription Owner: central-it@customer.com Description: AWS-SNS-Subscription Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SNS-Subscription Tags: - Key: product-type Value: AWS-SNS-Subscription Versions: - Name: 16.1.0 Description: AWS-SNS-Subscription-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SNS-Subscription BranchName: 16.1.0 - Name: AWS-SNS-Topic Owner: central-it@customer.com Description: AWS-SNS-Topic Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SNS-Topic Tags: - Key: product-type Value: AWS-SNS-Topic Versions: - Name: 16.1.0 Description: AWS-SNS-Topic-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SNS-Topic BranchName: 16.1.0 - Name: AWS-SNS-TopicPolicy Owner: central-it@customer.com Description: AWS-SNS-TopicPolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SNS-TopicPolicy Tags: - Key: product-type Value: AWS-SNS-TopicPolicy Versions: - Name: 16.1.0 Description: AWS-SNS-TopicPolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SNS-TopicPolicy BranchName: 16.1.0 - Name: AWS-SQS-Queue Owner: central-it@customer.com Description: AWS-SQS-Queue Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SQS-Queue Tags: - Key: product-type Value: AWS-SQS-Queue Versions: - Name: 16.1.0 Description: AWS-SQS-Queue-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SQS-Queue BranchName: 16.1.0 - Name: AWS-SQS-QueuePolicy Owner: central-it@customer.com Description: AWS-SQS-QueuePolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SQS-QueuePolicy Tags: - Key: product-type Value: AWS-SQS-QueuePolicy Versions: - Name: 16.1.0 Description: AWS-SQS-QueuePolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SQS-QueuePolicy BranchName: 16.1.0 - Name: AWS-SSM-Association Owner: central-it@customer.com Description: AWS-SSM-Association Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-Association Tags: - Key: product-type Value: AWS-SSM-Association Versions: - Name: 16.1.0 Description: AWS-SSM-Association-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-Association BranchName: 16.1.0 - Name: AWS-SSM-Document Owner: central-it@customer.com Description: AWS-SSM-Document Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-Document Tags: - Key: product-type Value: AWS-SSM-Document Versions: - Name: 16.1.0 Description: AWS-SSM-Document-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-Document BranchName: 16.1.0 - Name: AWS-SSM-MaintenanceWindow Owner: central-it@customer.com Description: AWS-SSM-MaintenanceWindow Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-MaintenanceWindow Tags: - Key: product-type Value: AWS-SSM-MaintenanceWindow Versions: - Name: 16.1.0 Description: AWS-SSM-MaintenanceWindow-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-MaintenanceWindow BranchName: 16.1.0 - Name: AWS-SSM-MaintenanceWindowTarget Owner: central-it@customer.com Description: AWS-SSM-MaintenanceWindowTarget Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-MaintenanceWindowTarget Tags: - Key: product-type Value: AWS-SSM-MaintenanceWindowTarget Versions: - Name: 16.1.0 Description: AWS-SSM-MaintenanceWindowTarget-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-MaintenanceWindowTarget BranchName: 16.1.0 - Name: AWS-SSM-MaintenanceWindowTask Owner: central-it@customer.com Description: AWS-SSM-MaintenanceWindowTask Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-MaintenanceWindowTask Tags: - Key: product-type Value: AWS-SSM-MaintenanceWindowTask Versions: - Name: 16.1.0 Description: AWS-SSM-MaintenanceWindowTask-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-MaintenanceWindowTask BranchName: 16.1.0 - Name: AWS-SSM-Parameter Owner: central-it@customer.com Description: AWS-SSM-Parameter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-Parameter Tags: - Key: product-type Value: AWS-SSM-Parameter Versions: - Name: 16.1.0 Description: AWS-SSM-Parameter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-Parameter BranchName: 16.1.0 - Name: AWS-SSM-PatchBaseline Owner: central-it@customer.com Description: AWS-SSM-PatchBaseline Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-PatchBaseline Tags: - Key: product-type Value: AWS-SSM-PatchBaseline Versions: - Name: 16.1.0 Description: AWS-SSM-PatchBaseline-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-PatchBaseline BranchName: 16.1.0 - Name: AWS-SSM-ResourceDataSync Owner: central-it@customer.com Description: AWS-SSM-ResourceDataSync Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-ResourceDataSync Tags: - Key: product-type Value: AWS-SSM-ResourceDataSync Versions: - Name: 16.1.0 Description: AWS-SSM-ResourceDataSync-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-ResourceDataSync BranchName: 16.1.0 - Name: AWS-SageMaker-CodeRepository Owner: central-it@customer.com Description: AWS-SageMaker-CodeRepository Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SageMaker-CodeRepository Tags: - Key: product-type Value: AWS-SageMaker-CodeRepository Versions: - Name: 16.1.0 Description: AWS-SageMaker-CodeRepository-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SageMaker-CodeRepository BranchName: 16.1.0 - Name: AWS-SageMaker-Endpoint Owner: central-it@customer.com Description: AWS-SageMaker-Endpoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SageMaker-Endpoint Tags: - Key: product-type Value: AWS-SageMaker-Endpoint Versions: - Name: 16.1.0 Description: AWS-SageMaker-Endpoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SageMaker-Endpoint BranchName: 16.1.0 - Name: AWS-SageMaker-EndpointConfig Owner: central-it@customer.com Description: AWS-SageMaker-EndpointConfig Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SageMaker-EndpointConfig Tags: - Key: product-type Value: AWS-SageMaker-EndpointConfig Versions: - Name: 16.1.0 Description: AWS-SageMaker-EndpointConfig-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SageMaker-EndpointConfig BranchName: 16.1.0 - Name: AWS-SageMaker-Model Owner: central-it@customer.com Description: AWS-SageMaker-Model Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SageMaker-Model Tags: - Key: product-type Value: AWS-SageMaker-Model Versions: - Name: 16.1.0 Description: AWS-SageMaker-Model-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SageMaker-Model BranchName: 16.1.0 - Name: AWS-SageMaker-NotebookInstance Owner: central-it@customer.com Description: AWS-SageMaker-NotebookInstance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SageMaker-NotebookInstance Tags: - Key: product-type Value: AWS-SageMaker-NotebookInstance Versions: - Name: 16.1.0 Description: AWS-SageMaker-NotebookInstance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SageMaker-NotebookInstance BranchName: 16.1.0 - Name: AWS-SageMaker-NotebookInstanceLifecycleConfig Owner: central-it@customer.com Description: AWS-SageMaker-NotebookInstanceLifecycleConfig Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SageMaker-NotebookInstanceLifecycleConfig Tags: - Key: product-type Value: AWS-SageMaker-NotebookInstanceLifecycleConfig Versions: - Name: 16.1.0 Description: AWS-SageMaker-NotebookInstanceLifecycleConfig-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SageMaker-NotebookInstanceLifecycleConfig BranchName: 16.1.0 - Name: AWS-SageMaker-Workteam Owner: central-it@customer.com Description: AWS-SageMaker-Workteam Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SageMaker-Workteam Tags: - Key: product-type Value: AWS-SageMaker-Workteam Versions: - Name: 16.1.0 Description: AWS-SageMaker-Workteam-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SageMaker-Workteam BranchName: 16.1.0 - Name: AWS-SecretsManager-ResourcePolicy Owner: central-it@customer.com Description: AWS-SecretsManager-ResourcePolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SecretsManager-ResourcePolicy Tags: - Key: product-type Value: AWS-SecretsManager-ResourcePolicy Versions: - Name: 16.1.0 Description: AWS-SecretsManager-ResourcePolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SecretsManager-ResourcePolicy BranchName: 16.1.0 - Name: AWS-SecretsManager-RotationSchedule Owner: central-it@customer.com Description: AWS-SecretsManager-RotationSchedule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SecretsManager-RotationSchedule Tags: - Key: product-type Value: AWS-SecretsManager-RotationSchedule Versions: - Name: 16.1.0 Description: AWS-SecretsManager-RotationSchedule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SecretsManager-RotationSchedule BranchName: 16.1.0 - Name: AWS-SecretsManager-Secret Owner: central-it@customer.com Description: AWS-SecretsManager-Secret Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SecretsManager-Secret Tags: - Key: product-type Value: AWS-SecretsManager-Secret Versions: - Name: 16.1.0 Description: AWS-SecretsManager-Secret-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SecretsManager-Secret BranchName: 16.1.0 - Name: AWS-SecretsManager-SecretTargetAttachment Owner: central-it@customer.com Description: AWS-SecretsManager-SecretTargetAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SecretsManager-SecretTargetAttachment Tags: - Key: product-type Value: AWS-SecretsManager-SecretTargetAttachment Versions: - Name: 16.1.0 Description: AWS-SecretsManager-SecretTargetAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SecretsManager-SecretTargetAttachment BranchName: 16.1.0 - Name: AWS-SecurityHub-Hub Owner: central-it@customer.com Description: AWS-SecurityHub-Hub Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SecurityHub-Hub Tags: - Key: product-type Value: AWS-SecurityHub-Hub Versions: - Name: 16.1.0 Description: AWS-SecurityHub-Hub-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SecurityHub-Hub BranchName: 16.1.0 - Name: AWS-ServiceCatalog-AcceptedPortfolioShare Owner: central-it@customer.com Description: AWS-ServiceCatalog-AcceptedPortfolioShare Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-AcceptedPortfolioShare Tags: - Key: product-type Value: AWS-ServiceCatalog-AcceptedPortfolioShare Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-AcceptedPortfolioShare-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-AcceptedPortfolioShare BranchName: 16.1.0 - Name: AWS-ServiceCatalog-CloudFormationProduct Owner: central-it@customer.com Description: AWS-ServiceCatalog-CloudFormationProduct Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-CloudFormationProduct Tags: - Key: product-type Value: AWS-ServiceCatalog-CloudFormationProduct Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-CloudFormationProduct-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-CloudFormationProduct BranchName: 16.1.0 - Name: AWS-ServiceCatalog-CloudFormationProvisionedProduct Owner: central-it@customer.com Description: AWS-ServiceCatalog-CloudFormationProvisionedProduct Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-CloudFormationProvisionedProduct Tags: - Key: product-type Value: AWS-ServiceCatalog-CloudFormationProvisionedProduct Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-CloudFormationProvisionedProduct-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-CloudFormationProvisionedProduct BranchName: 16.1.0 - Name: AWS-ServiceCatalog-LaunchNotificationConstraint Owner: central-it@customer.com Description: AWS-ServiceCatalog-LaunchNotificationConstraint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-LaunchNotificationConstraint Tags: - Key: product-type Value: AWS-ServiceCatalog-LaunchNotificationConstraint Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-LaunchNotificationConstraint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-LaunchNotificationConstraint BranchName: 16.1.0 - Name: AWS-ServiceCatalog-LaunchRoleConstraint Owner: central-it@customer.com Description: AWS-ServiceCatalog-LaunchRoleConstraint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-LaunchRoleConstraint Tags: - Key: product-type Value: AWS-ServiceCatalog-LaunchRoleConstraint Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-LaunchRoleConstraint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-LaunchRoleConstraint BranchName: 16.1.0 - Name: AWS-ServiceCatalog-LaunchTemplateConstraint Owner: central-it@customer.com Description: AWS-ServiceCatalog-LaunchTemplateConstraint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-LaunchTemplateConstraint Tags: - Key: product-type Value: AWS-ServiceCatalog-LaunchTemplateConstraint Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-LaunchTemplateConstraint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-LaunchTemplateConstraint BranchName: 16.1.0 - Name: AWS-ServiceCatalog-Portfolio Owner: central-it@customer.com Description: AWS-ServiceCatalog-Portfolio Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-Portfolio Tags: - Key: product-type Value: AWS-ServiceCatalog-Portfolio Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-Portfolio-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-Portfolio BranchName: 16.1.0 - Name: AWS-ServiceCatalog-PortfolioPrincipalAssociation Owner: central-it@customer.com Description: AWS-ServiceCatalog-PortfolioPrincipalAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-PortfolioPrincipalAssociation Tags: - Key: product-type Value: AWS-ServiceCatalog-PortfolioPrincipalAssociation Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-PortfolioPrincipalAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-PortfolioPrincipalAssociation BranchName: 16.1.0 - Name: AWS-ServiceCatalog-PortfolioProductAssociation Owner: central-it@customer.com Description: AWS-ServiceCatalog-PortfolioProductAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-PortfolioProductAssociation Tags: - Key: product-type Value: AWS-ServiceCatalog-PortfolioProductAssociation Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-PortfolioProductAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-PortfolioProductAssociation BranchName: 16.1.0 - Name: AWS-ServiceCatalog-PortfolioShare Owner: central-it@customer.com Description: AWS-ServiceCatalog-PortfolioShare Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-PortfolioShare Tags: - Key: product-type Value: AWS-ServiceCatalog-PortfolioShare Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-PortfolioShare-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-PortfolioShare BranchName: 16.1.0 - Name: AWS-ServiceCatalog-ResourceUpdateConstraint Owner: central-it@customer.com Description: AWS-ServiceCatalog-ResourceUpdateConstraint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-ResourceUpdateConstraint Tags: - Key: product-type Value: AWS-ServiceCatalog-ResourceUpdateConstraint Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-ResourceUpdateConstraint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-ResourceUpdateConstraint BranchName: 16.1.0 - Name: AWS-ServiceCatalog-StackSetConstraint Owner: central-it@customer.com Description: AWS-ServiceCatalog-StackSetConstraint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-StackSetConstraint Tags: - Key: product-type Value: AWS-ServiceCatalog-StackSetConstraint Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-StackSetConstraint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-StackSetConstraint BranchName: 16.1.0 - Name: AWS-ServiceCatalog-TagOption Owner: central-it@customer.com Description: AWS-ServiceCatalog-TagOption Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-TagOption Tags: - Key: product-type Value: AWS-ServiceCatalog-TagOption Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-TagOption-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-TagOption BranchName: 16.1.0 - Name: AWS-ServiceCatalog-TagOptionAssociation Owner: central-it@customer.com Description: AWS-ServiceCatalog-TagOptionAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-TagOptionAssociation Tags: - Key: product-type Value: AWS-ServiceCatalog-TagOptionAssociation Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-TagOptionAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-TagOptionAssociation BranchName: 16.1.0 - Name: AWS-ServiceDiscovery-HttpNamespace Owner: central-it@customer.com Description: AWS-ServiceDiscovery-HttpNamespace Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceDiscovery-HttpNamespace Tags: - Key: product-type Value: AWS-ServiceDiscovery-HttpNamespace Versions: - Name: 16.1.0 Description: AWS-ServiceDiscovery-HttpNamespace-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceDiscovery-HttpNamespace BranchName: 16.1.0 - Name: AWS-ServiceDiscovery-Instance Owner: central-it@customer.com Description: AWS-ServiceDiscovery-Instance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceDiscovery-Instance Tags: - Key: product-type Value: AWS-ServiceDiscovery-Instance Versions: - Name: 16.1.0 Description: AWS-ServiceDiscovery-Instance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceDiscovery-Instance BranchName: 16.1.0 - Name: AWS-ServiceDiscovery-PrivateDnsNamespace Owner: central-it@customer.com Description: AWS-ServiceDiscovery-PrivateDnsNamespace Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceDiscovery-PrivateDnsNamespace Tags: - Key: product-type Value: AWS-ServiceDiscovery-PrivateDnsNamespace Versions: - Name: 16.1.0 Description: AWS-ServiceDiscovery-PrivateDnsNamespace-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceDiscovery-PrivateDnsNamespace BranchName: 16.1.0 - Name: AWS-ServiceDiscovery-PublicDnsNamespace Owner: central-it@customer.com Description: AWS-ServiceDiscovery-PublicDnsNamespace Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceDiscovery-PublicDnsNamespace Tags: - Key: product-type Value: AWS-ServiceDiscovery-PublicDnsNamespace Versions: - Name: 16.1.0 Description: AWS-ServiceDiscovery-PublicDnsNamespace-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceDiscovery-PublicDnsNamespace BranchName: 16.1.0 - Name: AWS-ServiceDiscovery-Service Owner: central-it@customer.com Description: AWS-ServiceDiscovery-Service Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceDiscovery-Service Tags: - Key: product-type Value: AWS-ServiceDiscovery-Service Versions: - Name: 16.1.0 Description: AWS-ServiceDiscovery-Service-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceDiscovery-Service BranchName: 16.1.0 - Name: AWS-StepFunctions-Activity Owner: central-it@customer.com Description: AWS-StepFunctions-Activity Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-StepFunctions-Activity Tags: - Key: product-type Value: AWS-StepFunctions-Activity Versions: - Name: 16.1.0 Description: AWS-StepFunctions-Activity-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-StepFunctions-Activity BranchName: 16.1.0 - Name: AWS-StepFunctions-StateMachine Owner: central-it@customer.com Description: AWS-StepFunctions-StateMachine Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-StepFunctions-StateMachine Tags: - Key: product-type Value: AWS-StepFunctions-StateMachine Versions: - Name: 16.1.0 Description: AWS-StepFunctions-StateMachine-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-StepFunctions-StateMachine BranchName: 16.1.0 - Name: AWS-Synthetics-Canary Owner: central-it@customer.com Description: AWS-Synthetics-Canary Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Synthetics-Canary Tags: - Key: product-type Value: AWS-Synthetics-Canary Versions: - Name: 16.1.0 Description: AWS-Synthetics-Canary-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Synthetics-Canary BranchName: 16.1.0 - Name: AWS-Transfer-Server Owner: central-it@customer.com Description: AWS-Transfer-Server Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Transfer-Server Tags: - Key: product-type Value: AWS-Transfer-Server Versions: - Name: 16.1.0 Description: AWS-Transfer-Server-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Transfer-Server BranchName: 16.1.0 - Name: AWS-Transfer-User Owner: central-it@customer.com Description: AWS-Transfer-User Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Transfer-User Tags: - Key: product-type Value: AWS-Transfer-User Versions: - Name: 16.1.0 Description: AWS-Transfer-User-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Transfer-User BranchName: 16.1.0 - Name: AWS-WAF-ByteMatchSet Owner: central-it@customer.com Description: AWS-WAF-ByteMatchSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAF-ByteMatchSet Tags: - Key: product-type Value: AWS-WAF-ByteMatchSet Versions: - Name: 16.1.0 Description: AWS-WAF-ByteMatchSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAF-ByteMatchSet BranchName: 16.1.0 - Name: AWS-WAF-IPSet Owner: central-it@customer.com Description: AWS-WAF-IPSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAF-IPSet Tags: - Key: product-type Value: AWS-WAF-IPSet Versions: - Name: 16.1.0 Description: AWS-WAF-IPSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAF-IPSet BranchName: 16.1.0 - Name: AWS-WAF-Rule Owner: central-it@customer.com Description: AWS-WAF-Rule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAF-Rule Tags: - Key: product-type Value: AWS-WAF-Rule Versions: - Name: 16.1.0 Description: AWS-WAF-Rule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAF-Rule BranchName: 16.1.0 - Name: AWS-WAF-SizeConstraintSet Owner: central-it@customer.com Description: AWS-WAF-SizeConstraintSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAF-SizeConstraintSet Tags: - Key: product-type Value: AWS-WAF-SizeConstraintSet Versions: - Name: 16.1.0 Description: AWS-WAF-SizeConstraintSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAF-SizeConstraintSet BranchName: 16.1.0 - Name: AWS-WAF-SqlInjectionMatchSet Owner: central-it@customer.com Description: AWS-WAF-SqlInjectionMatchSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAF-SqlInjectionMatchSet Tags: - Key: product-type Value: AWS-WAF-SqlInjectionMatchSet Versions: - Name: 16.1.0 Description: AWS-WAF-SqlInjectionMatchSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAF-SqlInjectionMatchSet BranchName: 16.1.0 - Name: AWS-WAF-WebACL Owner: central-it@customer.com Description: AWS-WAF-WebACL Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAF-WebACL Tags: - Key: product-type Value: AWS-WAF-WebACL Versions: - Name: 16.1.0 Description: AWS-WAF-WebACL-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAF-WebACL BranchName: 16.1.0 - Name: AWS-WAF-XssMatchSet Owner: central-it@customer.com Description: AWS-WAF-XssMatchSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAF-XssMatchSet Tags: - Key: product-type Value: AWS-WAF-XssMatchSet Versions: - Name: 16.1.0 Description: AWS-WAF-XssMatchSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAF-XssMatchSet BranchName: 16.1.0 - Name: AWS-WAFRegional-ByteMatchSet Owner: central-it@customer.com Description: AWS-WAFRegional-ByteMatchSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-ByteMatchSet Tags: - Key: product-type Value: AWS-WAFRegional-ByteMatchSet Versions: - Name: 16.1.0 Description: AWS-WAFRegional-ByteMatchSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-ByteMatchSet BranchName: 16.1.0 - Name: AWS-WAFRegional-GeoMatchSet Owner: central-it@customer.com Description: AWS-WAFRegional-GeoMatchSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-GeoMatchSet Tags: - Key: product-type Value: AWS-WAFRegional-GeoMatchSet Versions: - Name: 16.1.0 Description: AWS-WAFRegional-GeoMatchSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-GeoMatchSet BranchName: 16.1.0 - Name: AWS-WAFRegional-IPSet Owner: central-it@customer.com Description: AWS-WAFRegional-IPSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-IPSet Tags: - Key: product-type Value: AWS-WAFRegional-IPSet Versions: - Name: 16.1.0 Description: AWS-WAFRegional-IPSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-IPSet BranchName: 16.1.0 - Name: AWS-WAFRegional-RateBasedRule Owner: central-it@customer.com Description: AWS-WAFRegional-RateBasedRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-RateBasedRule Tags: - Key: product-type Value: AWS-WAFRegional-RateBasedRule Versions: - Name: 16.1.0 Description: AWS-WAFRegional-RateBasedRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-RateBasedRule BranchName: 16.1.0 - Name: AWS-WAFRegional-RegexPatternSet Owner: central-it@customer.com Description: AWS-WAFRegional-RegexPatternSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-RegexPatternSet Tags: - Key: product-type Value: AWS-WAFRegional-RegexPatternSet Versions: - Name: 16.1.0 Description: AWS-WAFRegional-RegexPatternSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-RegexPatternSet BranchName: 16.1.0 - Name: AWS-WAFRegional-Rule Owner: central-it@customer.com Description: AWS-WAFRegional-Rule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-Rule Tags: - Key: product-type Value: AWS-WAFRegional-Rule Versions: - Name: 16.1.0 Description: AWS-WAFRegional-Rule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-Rule BranchName: 16.1.0 - Name: AWS-WAFRegional-SizeConstraintSet Owner: central-it@customer.com Description: AWS-WAFRegional-SizeConstraintSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-SizeConstraintSet Tags: - Key: product-type Value: AWS-WAFRegional-SizeConstraintSet Versions: - Name: 16.1.0 Description: AWS-WAFRegional-SizeConstraintSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-SizeConstraintSet BranchName: 16.1.0 - Name: AWS-WAFRegional-SqlInjectionMatchSet Owner: central-it@customer.com Description: AWS-WAFRegional-SqlInjectionMatchSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-SqlInjectionMatchSet Tags: - Key: product-type Value: AWS-WAFRegional-SqlInjectionMatchSet Versions: - Name: 16.1.0 Description: AWS-WAFRegional-SqlInjectionMatchSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-SqlInjectionMatchSet BranchName: 16.1.0 - Name: AWS-WAFRegional-WebACL Owner: central-it@customer.com Description: AWS-WAFRegional-WebACL Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-WebACL Tags: - Key: product-type Value: AWS-WAFRegional-WebACL Versions: - Name: 16.1.0 Description: AWS-WAFRegional-WebACL-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-WebACL BranchName: 16.1.0 - Name: AWS-WAFRegional-WebACLAssociation Owner: central-it@customer.com Description: AWS-WAFRegional-WebACLAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-WebACLAssociation Tags: - Key: product-type Value: AWS-WAFRegional-WebACLAssociation Versions: - Name: 16.1.0 Description: AWS-WAFRegional-WebACLAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-WebACLAssociation BranchName: 16.1.0 - Name: AWS-WAFRegional-XssMatchSet Owner: central-it@customer.com Description: AWS-WAFRegional-XssMatchSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-XssMatchSet Tags: - Key: product-type Value: AWS-WAFRegional-XssMatchSet Versions: - Name: 16.1.0 Description: AWS-WAFRegional-XssMatchSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-XssMatchSet BranchName: 16.1.0 - Name: AWS-WAFv2-IPSet Owner: central-it@customer.com Description: AWS-WAFv2-IPSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFv2-IPSet Tags: - Key: product-type Value: AWS-WAFv2-IPSet Versions: - Name: 16.1.0 Description: AWS-WAFv2-IPSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFv2-IPSet BranchName: 16.1.0 - Name: AWS-WAFv2-RegexPatternSet Owner: central-it@customer.com Description: AWS-WAFv2-RegexPatternSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFv2-RegexPatternSet Tags: - Key: product-type Value: AWS-WAFv2-RegexPatternSet Versions: - Name: 16.1.0 Description: AWS-WAFv2-RegexPatternSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFv2-RegexPatternSet BranchName: 16.1.0 - Name: AWS-WAFv2-RuleGroup Owner: central-it@customer.com Description: AWS-WAFv2-RuleGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFv2-RuleGroup Tags: - Key: product-type Value: AWS-WAFv2-RuleGroup Versions: - Name: 16.1.0 Description: AWS-WAFv2-RuleGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFv2-RuleGroup BranchName: 16.1.0 - Name: AWS-WAFv2-WebACL Owner: central-it@customer.com Description: AWS-WAFv2-WebACL Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFv2-WebACL Tags: - Key: product-type Value: AWS-WAFv2-WebACL Versions: - Name: 16.1.0 Description: AWS-WAFv2-WebACL-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFv2-WebACL BranchName: 16.1.0 - Name: AWS-WAFv2-WebACLAssociation Owner: central-it@customer.com Description: AWS-WAFv2-WebACLAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFv2-WebACLAssociation Tags: - Key: product-type Value: AWS-WAFv2-WebACLAssociation Versions: - Name: 16.1.0 Description: AWS-WAFv2-WebACLAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFv2-WebACLAssociation BranchName: 16.1.0 - Name: AWS-WorkSpaces-Workspace Owner: central-it@customer.com Description: AWS-WorkSpaces-Workspace Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WorkSpaces-Workspace Tags: - Key: product-type Value: AWS-WorkSpaces-Workspace Versions: - Name: 16.1.0 Description: AWS-WorkSpaces-Workspace-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WorkSpaces-Workspace BranchName: 16.1.0 - Name: Alexa-ASK-Skill Owner: central-it@customer.com Description: Alexa-ASK-Skill Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/Alexa-ASK-Skill Tags: - Key: product-type Value: Alexa-ASK-Skill Versions: - Name: 16.1.0 Description: Alexa-ASK-Skill-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: Alexa-ASK-Skill BranchName: 16.1.0 - Name: portfolio.yaml Owner: central-it@customer.com Description: portfolio.yaml Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/portfolio.yaml Tags: - Key: product-type Value: portfolio.yaml Versions: - Name: output/include-optional/portfolio.yaml Description: portfolio.yaml-output/include-optional/portfolio.yaml Active: True Source: Provider: CodeCommit Configuration: RepositoryName: portfolio.yaml BranchName: output/include-optional/portfolio.yaml ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm Validity: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-validity Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: !Ref 'Validity' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm Validity: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-validity Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: !Ref 'Validity' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-Certificate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificateauthorityarn CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-certificatesigningrequest SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html#cfn-acmpca-certificate-signingalgorithm ValidityValue: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-value ValidityType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificate-validity.html#cfn-acmpca-certificate-validity-type Resources: Resource: Type: AWS::ACMPCA::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificate.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' CertificateSigningRequest: !Ref 'CertificateSigningRequest' SigningAlgorithm: !Ref 'SigningAlgorithm' Validity: Value: !Ref 'ValidityValue' Type: !Ref 'ValidityType' Outputs: Certificate: Value: GetAtt: - Resource - Certificate Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Subject: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-subject Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: !Ref 'Subject' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Subject: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-subject Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: !Ref 'Subject' Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthority/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-type KeyAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-keyalgorithm SigningAlgorithm: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-signingalgorithm Resources: Resource: Type: AWS::ACMPCA::CertificateAuthority Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html Properties: Type: !Ref 'Type' KeyAlgorithm: !Ref 'KeyAlgorithm' SigningAlgorithm: !Ref 'SigningAlgorithm' Subject: {} Outputs: Arn: Value: GetAtt: - Resource - Arn CertificateSigningRequest: Value: GetAtt: - Resource - CertificateSigningRequest ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ACMPCA-CertificateAuthorityActivation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Parameters: CertificateAuthorityArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificateauthorityarn Certificate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html#cfn-acmpca-certificateauthorityactivation-certificate Resources: Resource: Type: AWS::ACMPCA::CertificateAuthorityActivation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthorityactivation.html Properties: CertificateAuthorityArn: !Ref 'CertificateAuthorityArn' Certificate: !Ref 'Certificate' Outputs: CompleteCertificateChain: Value: GetAtt: - Resource - CompleteCertificateChain ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AccessAnalyzer-Analyzer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-type Resources: Resource: Type: AWS::AccessAnalyzer::Analyzer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html Properties: Type: !Ref 'Type' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Broker/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: EngineVersion: !Ref 'EngineVersion' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Broker/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: EngineVersion: !Ref 'EngineVersion' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Broker/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: EngineVersion: !Ref 'EngineVersion' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Broker/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: EngineVersion: !Ref 'EngineVersion' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Broker/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: EngineVersion: !Ref 'EngineVersion' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Broker/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: EngineVersion: !Ref 'EngineVersion' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Broker/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: EngineVersion: !Ref 'EngineVersion' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Broker/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: EngineVersion: !Ref 'EngineVersion' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Broker/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: EngineVersion: !Ref 'EngineVersion' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Broker/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: EngineVersion: !Ref 'EngineVersion' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Broker/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: EngineVersion: !Ref 'EngineVersion' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Broker/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: EngineVersion: !Ref 'EngineVersion' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Broker/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-engineversion HostInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-hostinstancetype AutoMinorVersionUpgrade: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-autominorversionupgrade AllowedValues: - 'true' - 'false' BrokerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-brokername DeploymentMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-deploymentmode EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-enginetype PubliclyAccessible: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html#cfn-amazonmq-broker-publiclyaccessible AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::AmazonMQ::Broker Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html Properties: EngineVersion: !Ref 'EngineVersion' HostInstanceType: !Ref 'HostInstanceType' AutoMinorVersionUpgrade: !Ref 'AutoMinorVersionUpgrade' BrokerName: !Ref 'BrokerName' DeploymentMode: !Ref 'DeploymentMode' EngineType: !Ref 'EngineType' PubliclyAccessible: !Ref 'PubliclyAccessible' Outputs: IpAddresses: Value: GetAtt: - Resource - IpAddresses OpenWireEndpoints: Value: GetAtt: - Resource - OpenWireEndpoints ConfigurationRevision: Value: GetAtt: - Resource - ConfigurationRevision StompEndpoints: Value: GetAtt: - Resource - StompEndpoints MqttEndpoints: Value: GetAtt: - Resource - MqttEndpoints AmqpEndpoints: Value: GetAtt: - Resource - AmqpEndpoints Arn: Value: GetAtt: - Resource - Arn ConfigurationId: Value: GetAtt: - Resource - ConfigurationId WssEndpoints: Value: GetAtt: - Resource - WssEndpoints ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Configuration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Configuration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Configuration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Configuration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Configuration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Configuration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Configuration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Configuration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Configuration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Configuration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Configuration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Configuration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-Configuration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Parameters: EngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion EngineType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype Data: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name Resources: Resource: Type: AWS::AmazonMQ::Configuration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html Properties: EngineVersion: !Ref 'EngineVersion' EngineType: !Ref 'EngineType' Data: !Ref 'Data' Name: !Ref 'Name' Outputs: Revision: Value: GetAtt: - Resource - Revision Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AmazonMQ-ConfigurationAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Parameters: Broker: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html#cfn-amazonmq-configurationassociation-broker ConfigurationIdRevision: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision ConfigurationIdId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id Resources: Resource: Type: AWS::AmazonMQ::ConfigurationAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html Properties: Broker: !Ref 'Broker' Configuration: Revision: !Ref 'ConfigurationIdRevision' Id: !Ref 'ConfigurationIdId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-App/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: Name: !Ref 'Name' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-App/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: Name: !Ref 'Name' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-App/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: Name: !Ref 'Name' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-App/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: Name: !Ref 'Name' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-App/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: Name: !Ref 'Name' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-App/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: Name: !Ref 'Name' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-App/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: Name: !Ref 'Name' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-App/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: Name: !Ref 'Name' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-App/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: Name: !Ref 'Name' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-App/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: Name: !Ref 'Name' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-App/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-name Resources: Resource: Type: AWS::Amplify::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html Properties: Name: !Ref 'Name' Outputs: AppId: Value: GetAtt: - Resource - AppId Arn: Value: GetAtt: - Resource - Arn DefaultDomain: Value: GetAtt: - Resource - DefaultDomain AppName: Value: GetAtt: - Resource - AppName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Branch/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: AppId: !Ref 'AppId' BranchName: !Ref 'BranchName' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Branch/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: AppId: !Ref 'AppId' BranchName: !Ref 'BranchName' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Branch/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: AppId: !Ref 'AppId' BranchName: !Ref 'BranchName' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Branch/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: AppId: !Ref 'AppId' BranchName: !Ref 'BranchName' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Branch/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: AppId: !Ref 'AppId' BranchName: !Ref 'BranchName' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Branch/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: AppId: !Ref 'AppId' BranchName: !Ref 'BranchName' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Branch/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: AppId: !Ref 'AppId' BranchName: !Ref 'BranchName' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Branch/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: AppId: !Ref 'AppId' BranchName: !Ref 'BranchName' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Branch/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: AppId: !Ref 'AppId' BranchName: !Ref 'BranchName' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Branch/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: AppId: !Ref 'AppId' BranchName: !Ref 'BranchName' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Branch/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-appid BranchName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html#cfn-amplify-branch-branchname Resources: Resource: Type: AWS::Amplify::Branch Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html Properties: AppId: !Ref 'AppId' BranchName: !Ref 'BranchName' Outputs: BranchName: Value: GetAtt: - Resource - BranchName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Domain/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' DomainName: !Ref 'DomainName' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Domain/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' DomainName: !Ref 'DomainName' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Domain/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' DomainName: !Ref 'DomainName' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Domain/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' DomainName: !Ref 'DomainName' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Domain/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' DomainName: !Ref 'DomainName' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Domain/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' DomainName: !Ref 'DomainName' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Domain/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' DomainName: !Ref 'DomainName' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Domain/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' DomainName: !Ref 'DomainName' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Domain/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' DomainName: !Ref 'DomainName' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Domain/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' DomainName: !Ref 'DomainName' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Amplify-Domain/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Parameters: AppId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-appid DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html#cfn-amplify-domain-domainname Resources: Resource: Type: AWS::Amplify::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-domain.html Properties: AppId: !Ref 'AppId' DomainName: !Ref 'DomainName' Outputs: AutoSubDomainIAMRole: Value: GetAtt: - Resource - AutoSubDomainIAMRole DomainName: Value: GetAtt: - Resource - DomainName StatusReason: Value: GetAtt: - Resource - StatusReason EnableAutoSubDomain: Value: GetAtt: - Resource - EnableAutoSubDomain Arn: Value: GetAtt: - Resource - Arn DomainStatus: Value: GetAtt: - Resource - DomainStatus AutoSubDomainCreationPatterns: Value: GetAtt: - Resource - AutoSubDomainCreationPatterns CertificateRecord: Value: GetAtt: - Resource - CertificateRecord ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Account/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html Resources: Resource: Type: AWS::ApiGateway::Account Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ApiKey/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html Resources: Resource: Type: AWS::ApiGateway::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Authorizer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type Resources: Resource: Type: AWS::ApiGateway::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html Properties: RestApiId: !Ref 'RestApiId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-BasePathMapping/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname Resources: Resource: Type: AWS::ApiGateway::BasePathMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-ClientCertificate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html Resources: Resource: Type: AWS::ApiGateway::ClientCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Deployment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid Resources: Resource: Type: AWS::ApiGateway::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationPart/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Parameters: Properties: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationPart Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html Properties: Location: {} Properties: !Ref 'Properties' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DocumentationVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Parameters: DocumentationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid Resources: Resource: Type: AWS::ApiGateway::DocumentationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html Properties: DocumentationVersion: !Ref 'DocumentationVersion' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-DomainName/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname Resources: Resource: Type: AWS::ApiGateway::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: DistributionDomainName: Value: GetAtt: - Resource - DistributionDomainName DistributionHostedZoneId: Value: GetAtt: - Resource - DistributionHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-GatewayResponse/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Parameters: ResponseType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid Resources: Resource: Type: AWS::ApiGateway::GatewayResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html Properties: ResponseType: !Ref 'ResponseType' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Method/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Parameters: HttpMethod: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid Resources: Resource: Type: AWS::ApiGateway::Method Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html Properties: HttpMethod: !Ref 'HttpMethod' ResourceId: !Ref 'ResourceId' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Model/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid Resources: Resource: Type: AWS::ApiGateway::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RequestValidator/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid Resources: Resource: Type: AWS::ApiGateway::RequestValidator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Resource/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Parameters: ParentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid PathPart: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid Resources: Resource: Type: AWS::ApiGateway::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html Properties: ParentId: !Ref 'ParentId' PathPart: !Ref 'PathPart' RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-RestApi/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Resources: Resource: Type: AWS::ApiGateway::RestApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html Outputs: RootResourceId: Value: GetAtt: - Resource - RootResourceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-Stage/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Parameters: RestApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid Resources: Resource: Type: AWS::ApiGateway::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html Properties: RestApiId: !Ref 'RestApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlan/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html Resources: Resource: Type: AWS::ApiGateway::UsagePlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-UsagePlanKey/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Parameters: KeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid KeyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype UsagePlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid Resources: Resource: Type: AWS::ApiGateway::UsagePlanKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html Properties: KeyId: !Ref 'KeyId' KeyType: !Ref 'KeyType' UsagePlanId: !Ref 'UsagePlanId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGateway-VpcLink/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name Resources: Resource: Type: AWS::ApiGateway::VpcLink Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Api/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html Resources: Resource: Type: AWS::ApiGatewayV2::Api Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-ApiMapping/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname Stage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid Resources: Resource: Type: AWS::ApiGatewayV2::ApiMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html Properties: DomainName: !Ref 'DomainName' Stage: !Ref 'Stage' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Authorizer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Parameters: AuthorizerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-authorizertype ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2-authorizer-name Resources: Resource: Type: AWS::ApiGatewayV2::Authorizer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html Properties: AuthorizerType: !Ref 'AuthorizerType' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Deployment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-DomainName/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname Resources: Resource: Type: AWS::ApiGatewayV2::DomainName Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html Properties: DomainName: !Ref 'DomainName' Outputs: RegionalHostedZoneId: Value: GetAtt: - Resource - RegionalHostedZoneId RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Integration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-apiid IntegrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-integrationtype Resources: Resource: Type: AWS::ApiGatewayV2::Integration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html Properties: ApiId: !Ref 'ApiId' IntegrationType: !Ref 'IntegrationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-IntegrationResponse/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Parameters: IntegrationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationid IntegrationResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-integrationresponsekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html#cfn-apigatewayv2-integrationresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::IntegrationResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integrationresponse.html Properties: IntegrationId: !Ref 'IntegrationId' IntegrationResponseKey: !Ref 'IntegrationResponseKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Model/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Parameters: Schema: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-schema ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html#cfn-apigatewayv2-model-name Resources: Resource: Type: AWS::ApiGatewayV2::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-model.html Properties: Schema: !Ref 'Schema' ApiId: !Ref 'ApiId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Route/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Parameters: RouteKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-routekey ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html#cfn-apigatewayv2-route-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-route.html Properties: RouteKey: !Ref 'RouteKey' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-RouteResponse/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Parameters: RouteResponseKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeresponsekey RouteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-routeid ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html#cfn-apigatewayv2-routeresponse-apiid Resources: Resource: Type: AWS::ApiGatewayV2::RouteResponse Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routeresponse.html Properties: RouteResponseKey: !Ref 'RouteResponseKey' RouteId: !Ref 'RouteId' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApiGatewayV2-Stage/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Parameters: StageName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid Resources: Resource: Type: AWS::ApiGatewayV2::Stage Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html Properties: StageName: !Ref 'StageName' ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-Application/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-name Resources: Resource: Type: AWS::AppConfig::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-Application/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-name Resources: Resource: Type: AWS::AppConfig::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-Application/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-name Resources: Resource: Type: AWS::AppConfig::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-ConfigurationProfile/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html Parameters: LocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-locationuri ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-name Resources: Resource: Type: AWS::AppConfig::ConfigurationProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html Properties: LocationUri: !Ref 'LocationUri' ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-ConfigurationProfile/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html Parameters: LocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-locationuri ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-name Resources: Resource: Type: AWS::AppConfig::ConfigurationProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html Properties: LocationUri: !Ref 'LocationUri' ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-ConfigurationProfile/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html Parameters: LocationUri: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-locationuri ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-name Resources: Resource: Type: AWS::AppConfig::ConfigurationProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html Properties: LocationUri: !Ref 'LocationUri' ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-Deployment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html Parameters: DeploymentStrategyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-deploymentstrategyid ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-configurationprofileid EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-environmentid ConfigurationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-configurationversion ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-applicationid Resources: Resource: Type: AWS::AppConfig::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html Properties: DeploymentStrategyId: !Ref 'DeploymentStrategyId' ConfigurationProfileId: !Ref 'ConfigurationProfileId' EnvironmentId: !Ref 'EnvironmentId' ConfigurationVersion: !Ref 'ConfigurationVersion' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-Deployment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html Parameters: DeploymentStrategyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-deploymentstrategyid ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-configurationprofileid EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-environmentid ConfigurationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-configurationversion ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-applicationid Resources: Resource: Type: AWS::AppConfig::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html Properties: DeploymentStrategyId: !Ref 'DeploymentStrategyId' ConfigurationProfileId: !Ref 'ConfigurationProfileId' EnvironmentId: !Ref 'EnvironmentId' ConfigurationVersion: !Ref 'ConfigurationVersion' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-Deployment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html Parameters: DeploymentStrategyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-deploymentstrategyid ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-configurationprofileid EnvironmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-environmentid ConfigurationVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-configurationversion ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-applicationid Resources: Resource: Type: AWS::AppConfig::Deployment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html Properties: DeploymentStrategyId: !Ref 'DeploymentStrategyId' ConfigurationProfileId: !Ref 'ConfigurationProfileId' EnvironmentId: !Ref 'EnvironmentId' ConfigurationVersion: !Ref 'ConfigurationVersion' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-DeploymentStrategy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html Parameters: ReplicateTo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-replicateto DeploymentDurationInMinutes: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-deploymentdurationinminutes GrowthFactor: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-growthfactor Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-name Resources: Resource: Type: AWS::AppConfig::DeploymentStrategy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html Properties: ReplicateTo: !Ref 'ReplicateTo' DeploymentDurationInMinutes: !Ref 'DeploymentDurationInMinutes' GrowthFactor: !Ref 'GrowthFactor' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-DeploymentStrategy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html Parameters: ReplicateTo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-replicateto DeploymentDurationInMinutes: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-deploymentdurationinminutes GrowthFactor: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-growthfactor Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-name Resources: Resource: Type: AWS::AppConfig::DeploymentStrategy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html Properties: ReplicateTo: !Ref 'ReplicateTo' DeploymentDurationInMinutes: !Ref 'DeploymentDurationInMinutes' GrowthFactor: !Ref 'GrowthFactor' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-DeploymentStrategy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html Parameters: ReplicateTo: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-replicateto DeploymentDurationInMinutes: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-deploymentdurationinminutes GrowthFactor: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-growthfactor Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#cfn-appconfig-deploymentstrategy-name Resources: Resource: Type: AWS::AppConfig::DeploymentStrategy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html Properties: ReplicateTo: !Ref 'ReplicateTo' DeploymentDurationInMinutes: !Ref 'DeploymentDurationInMinutes' GrowthFactor: !Ref 'GrowthFactor' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-Environment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-name Resources: Resource: Type: AWS::AppConfig::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html Properties: ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-Environment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-name Resources: Resource: Type: AWS::AppConfig::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html Properties: ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-Environment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-name Resources: Resource: Type: AWS::AppConfig::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html Properties: ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppConfig-HostedConfigurationVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Parameters: ConfigurationProfileId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-configurationprofileid ContentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-contenttype Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-content ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-applicationid Resources: Resource: Type: AWS::AppConfig::HostedConfigurationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html Properties: ConfigurationProfileId: !Ref 'ConfigurationProfileId' ContentType: !Ref 'ContentType' Content: !Ref 'Content' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Mesh/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Mesh/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Mesh/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Mesh/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Mesh/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Mesh/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Mesh/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Mesh/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Mesh/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Mesh/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Mesh/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Mesh/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Mesh/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html#cfn-appmesh-mesh-meshname Resources: Resource: Type: AWS::AppMesh::Mesh Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-mesh.html Properties: MeshName: !Ref 'MeshName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Route/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' RouteName: !Ref 'RouteName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Route/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' RouteName: !Ref 'RouteName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Route/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' RouteName: !Ref 'RouteName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Route/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' RouteName: !Ref 'RouteName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Route/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' RouteName: !Ref 'RouteName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Route/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' RouteName: !Ref 'RouteName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Route/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' RouteName: !Ref 'RouteName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Route/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' RouteName: !Ref 'RouteName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Route/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' RouteName: !Ref 'RouteName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Route/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' RouteName: !Ref 'RouteName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Route/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' RouteName: !Ref 'RouteName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Route/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' RouteName: !Ref 'RouteName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-Route/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-virtualroutername RouteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html#cfn-appmesh-route-routename Resources: Resource: Type: AWS::AppMesh::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-route.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' RouteName: !Ref 'RouteName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner RouteName: Value: GetAtt: - Resource - RouteName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualNode/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' Spec: {} VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualNode/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' Spec: {} VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualNode/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' Spec: {} VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualNode/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' Spec: {} VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualNode/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' Spec: {} VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualNode/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' Spec: {} VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualNode/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' Spec: {} VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualNode/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' Spec: {} VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualNode/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' Spec: {} VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualNode/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' Spec: {} VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualNode/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' Spec: {} VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualNode/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' Spec: {} VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualNode/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-meshname VirtualNodeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html#cfn-appmesh-virtualnode-virtualnodename Resources: Resource: Type: AWS::AppMesh::VirtualNode Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualnode.html Properties: MeshName: !Ref 'MeshName' Spec: {} VirtualNodeName: !Ref 'VirtualNodeName' Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn VirtualNodeName: Value: GetAtt: - Resource - VirtualNodeName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualRouter/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualRouter/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualRouter/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualRouter/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualRouter/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualRouter/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualRouter/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualRouter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualRouter/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualRouter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualRouter/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualRouter/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualRouter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-meshname VirtualRouterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html#cfn-appmesh-virtualrouter-virtualroutername Resources: Resource: Type: AWS::AppMesh::VirtualRouter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualrouter.html Properties: MeshName: !Ref 'MeshName' VirtualRouterName: !Ref 'VirtualRouterName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName VirtualRouterName: Value: GetAtt: - Resource - VirtualRouterName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualService/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' VirtualServiceName: !Ref 'VirtualServiceName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualService/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' VirtualServiceName: !Ref 'VirtualServiceName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualService/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' VirtualServiceName: !Ref 'VirtualServiceName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualService/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' VirtualServiceName: !Ref 'VirtualServiceName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualService/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' VirtualServiceName: !Ref 'VirtualServiceName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualService/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' VirtualServiceName: !Ref 'VirtualServiceName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualService/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' VirtualServiceName: !Ref 'VirtualServiceName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualService/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' VirtualServiceName: !Ref 'VirtualServiceName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualService/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' VirtualServiceName: !Ref 'VirtualServiceName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualService/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' VirtualServiceName: !Ref 'VirtualServiceName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualService/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' VirtualServiceName: !Ref 'VirtualServiceName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualService/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' VirtualServiceName: !Ref 'VirtualServiceName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppMesh-VirtualService/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Parameters: MeshName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname VirtualServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename Resources: Resource: Type: AWS::AppMesh::VirtualService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html Properties: MeshName: !Ref 'MeshName' VirtualServiceName: !Ref 'VirtualServiceName' Spec: {} Outputs: Uid: Value: GetAtt: - Resource - Uid MeshName: Value: GetAtt: - Resource - MeshName MeshOwner: Value: GetAtt: - Resource - MeshOwner ResourceOwner: Value: GetAtt: - Resource - ResourceOwner VirtualServiceName: Value: GetAtt: - Resource - VirtualServiceName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-DirectoryConfig/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-DirectoryConfig/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-DirectoryConfig/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-DirectoryConfig/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-DirectoryConfig/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-DirectoryConfig/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-DirectoryConfig/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-DirectoryConfig/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-DirectoryConfig/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Parameters: ServiceAccountCredentialsAccountName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname ServiceAccountCredentialsAccountPassword: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword DirectoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname Resources: Resource: Type: AWS::AppStream::DirectoryConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html Properties: ServiceAccountCredentials: AccountName: !Ref 'ServiceAccountCredentialsAccountName' AccountPassword: !Ref 'ServiceAccountCredentialsAccountPassword' DirectoryName: !Ref 'DirectoryName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Fleet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' Name: !Ref 'Name' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Fleet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' Name: !Ref 'Name' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Fleet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' Name: !Ref 'Name' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Fleet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' Name: !Ref 'Name' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Fleet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' Name: !Ref 'Name' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Fleet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' Name: !Ref 'Name' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Fleet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' Name: !Ref 'Name' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Fleet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' Name: !Ref 'Name' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Fleet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Parameters: ComputeCapacityDesiredInstances: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype Resources: Resource: Type: AWS::AppStream::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html Properties: ComputeCapacity: DesiredInstances: !Ref 'ComputeCapacityDesiredInstances' Name: !Ref 'Name' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-ImageBuilder/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-ImageBuilder/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-ImageBuilder/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-ImageBuilder/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-ImageBuilder/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-ImageBuilder/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-ImageBuilder/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-ImageBuilder/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-ImageBuilder/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name Resources: Resource: Type: AWS::AppStream::ImageBuilder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html Properties: InstanceType: !Ref 'InstanceType' Name: !Ref 'Name' Outputs: StreamingUrl: Value: GetAtt: - Resource - StreamingUrl ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Stack/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Stack/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Stack/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Stack/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Stack/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Stack/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Stack/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Stack/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-Stack/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html Resources: Resource: Type: AWS::AppStream::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackFleetAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Parameters: FleetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname Resources: Resource: Type: AWS::AppStream::StackFleetAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html Properties: FleetName: !Ref 'FleetName' StackName: !Ref 'StackName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackUserAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackUserAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackUserAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackUserAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackUserAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackUserAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackUserAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackUserAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-StackUserAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username StackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype Resources: Resource: Type: AWS::AppStream::StackUserAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html Properties: UserName: !Ref 'UserName' StackName: !Ref 'StackName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-User/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-User/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-User/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-User/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-User/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-User/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-User/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-User/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppStream-User/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype Resources: Resource: Type: AWS::AppStream::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html Properties: UserName: !Ref 'UserName' AuthenticationType: !Ref 'AuthenticationType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiCache/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiCache/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiCache/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiCache/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiCache/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiCache/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiCache/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiCache/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiCache/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiCache/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiCache/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apiid ApiCachingBehavior: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-apicachingbehavior Ttl: Type: Double Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-ttl Resources: Resource: Type: AWS::AppSync::ApiCache Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' ApiCachingBehavior: !Ref 'ApiCachingBehavior' Ttl: !Ref 'Ttl' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiKey/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-apiid Resources: Resource: Type: AWS::AppSync::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Properties: ApiId: !Ref 'ApiId' Outputs: ApiKey: Value: GetAtt: - Resource - ApiKey Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiKey/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-apiid Resources: Resource: Type: AWS::AppSync::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Properties: ApiId: !Ref 'ApiId' Outputs: ApiKey: Value: GetAtt: - Resource - ApiKey Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiKey/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-apiid Resources: Resource: Type: AWS::AppSync::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Properties: ApiId: !Ref 'ApiId' Outputs: ApiKey: Value: GetAtt: - Resource - ApiKey Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiKey/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-apiid Resources: Resource: Type: AWS::AppSync::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Properties: ApiId: !Ref 'ApiId' Outputs: ApiKey: Value: GetAtt: - Resource - ApiKey Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiKey/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-apiid Resources: Resource: Type: AWS::AppSync::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Properties: ApiId: !Ref 'ApiId' Outputs: ApiKey: Value: GetAtt: - Resource - ApiKey Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-ApiKey/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html#cfn-appsync-apikey-apiid Resources: Resource: Type: AWS::AppSync::ApiKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apikey.html Properties: ApiId: !Ref 'ApiId' Outputs: ApiKey: Value: GetAtt: - Resource - ApiKey Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-DataSource/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-DataSource/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-DataSource/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-DataSource/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-DataSource/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-DataSource/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-DataSource/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-DataSource/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-DataSource/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-DataSource/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-type ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-name Resources: Resource: Type: AWS::AppSync::DataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html Properties: Type: !Ref 'Type' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: DataSourceArn: Value: GetAtt: - Resource - DataSourceArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: DataSourceName: !Ref 'DataSourceName' FunctionVersion: !Ref 'FunctionVersion' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: DataSourceName: !Ref 'DataSourceName' FunctionVersion: !Ref 'FunctionVersion' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: DataSourceName: !Ref 'DataSourceName' FunctionVersion: !Ref 'FunctionVersion' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: DataSourceName: !Ref 'DataSourceName' FunctionVersion: !Ref 'FunctionVersion' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: DataSourceName: !Ref 'DataSourceName' FunctionVersion: !Ref 'FunctionVersion' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: DataSourceName: !Ref 'DataSourceName' FunctionVersion: !Ref 'FunctionVersion' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: DataSourceName: !Ref 'DataSourceName' FunctionVersion: !Ref 'FunctionVersion' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: DataSourceName: !Ref 'DataSourceName' FunctionVersion: !Ref 'FunctionVersion' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: DataSourceName: !Ref 'DataSourceName' FunctionVersion: !Ref 'FunctionVersion' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-FunctionConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Parameters: DataSourceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-datasourcename FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-functionversion ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-apiid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html#cfn-appsync-functionconfiguration-name Resources: Resource: Type: AWS::AppSync::FunctionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-functionconfiguration.html Properties: DataSourceName: !Ref 'DataSourceName' FunctionVersion: !Ref 'FunctionVersion' ApiId: !Ref 'ApiId' Name: !Ref 'Name' Outputs: FunctionId: Value: GetAtt: - Resource - FunctionId FunctionArn: Value: GetAtt: - Resource - FunctionArn DataSourceName: Value: GetAtt: - Resource - DataSourceName Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLApi/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLApi/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLApi/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLApi/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLApi/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLApi/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLApi/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLApi/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLApi/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLApi/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLApi/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-name AuthenticationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-authenticationtype Resources: Resource: Type: AWS::AppSync::GraphQLApi Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html Properties: Name: !Ref 'Name' AuthenticationType: !Ref 'AuthenticationType' Outputs: GraphQLUrl: Value: GetAtt: - Resource - GraphQLUrl Arn: Value: GetAtt: - Resource - Arn ApiId: Value: GetAtt: - Resource - ApiId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLSchema/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid Resources: Resource: Type: AWS::AppSync::GraphQLSchema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLSchema/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid Resources: Resource: Type: AWS::AppSync::GraphQLSchema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLSchema/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid Resources: Resource: Type: AWS::AppSync::GraphQLSchema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLSchema/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid Resources: Resource: Type: AWS::AppSync::GraphQLSchema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLSchema/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid Resources: Resource: Type: AWS::AppSync::GraphQLSchema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLSchema/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid Resources: Resource: Type: AWS::AppSync::GraphQLSchema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-GraphQLSchema/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Parameters: ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid Resources: Resource: Type: AWS::AppSync::GraphQLSchema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html Properties: ApiId: !Ref 'ApiId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-Resolver/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: TypeName: !Ref 'TypeName' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-Resolver/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: TypeName: !Ref 'TypeName' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-Resolver/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: TypeName: !Ref 'TypeName' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-Resolver/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: TypeName: !Ref 'TypeName' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-Resolver/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: TypeName: !Ref 'TypeName' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-Resolver/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: TypeName: !Ref 'TypeName' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-Resolver/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: TypeName: !Ref 'TypeName' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-Resolver/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: TypeName: !Ref 'TypeName' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-Resolver/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: TypeName: !Ref 'TypeName' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AppSync-Resolver/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Parameters: TypeName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-typename ApiId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-apiid FieldName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname Resources: Resource: Type: AWS::AppSync::Resolver Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html Properties: TypeName: !Ref 'TypeName' ApiId: !Ref 'ApiId' FieldName: !Ref 'FieldName' Outputs: TypeName: Value: GetAtt: - Resource - TypeName ResolverArn: Value: GetAtt: - Resource - ResolverArn FieldName: Value: GetAtt: - Resource - FieldName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalableTarget/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Parameters: MaxCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity MinCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn ScalableDimension: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension ServiceNamespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalableTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html Properties: MaxCapacity: !Ref 'MaxCapacity' MinCapacity: !Ref 'MinCapacity' ResourceId: !Ref 'ResourceId' RoleARN: !Ref 'RoleARN' ScalableDimension: !Ref 'ScalableDimension' ServiceNamespace: !Ref 'ServiceNamespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ApplicationAutoScaling-ScalingPolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname PolicyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype Resources: Resource: Type: AWS::ApplicationAutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html Properties: PolicyName: !Ref 'PolicyName' PolicyType: !Ref 'PolicyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-DataCatalog/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type Resources: Resource: Type: AWS::Athena::DataCatalog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-NamedQuery/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Database: !Ref 'Database' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-NamedQuery/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Database: !Ref 'Database' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-NamedQuery/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Database: !Ref 'Database' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-NamedQuery/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Database: !Ref 'Database' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-NamedQuery/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Database: !Ref 'Database' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-NamedQuery/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Database: !Ref 'Database' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-NamedQuery/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Database: !Ref 'Database' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-NamedQuery/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Database: !Ref 'Database' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-NamedQuery/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Database: !Ref 'Database' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-NamedQuery/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Database: !Ref 'Database' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-NamedQuery/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Database: !Ref 'Database' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-NamedQuery/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Parameters: Database: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database QueryString: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring Resources: Resource: Type: AWS::Athena::NamedQuery Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html Properties: Database: !Ref 'Database' QueryString: !Ref 'QueryString' Outputs: NamedQueryId: Value: GetAtt: - Resource - NamedQueryId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Athena-WorkGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html#cfn-athena-workgroup-name Resources: Resource: Type: AWS::Athena::WorkGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-workgroup.html Properties: Name: !Ref 'Name' Outputs: CreationTime: Value: GetAtt: - Resource - CreationTime ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-AutoScalingGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Parameters: MaxSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize MinSize: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize Resources: Resource: Type: AWS::AutoScaling::AutoScalingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html Properties: MaxSize: !Ref 'MaxSize' MinSize: !Ref 'MinSize' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LaunchConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Parameters: ImageId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype Resources: Resource: Type: AWS::AutoScaling::LaunchConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html Properties: ImageId: !Ref 'ImageId' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-LifecycleHook/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname LifecycleTransition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition Resources: Resource: Type: AWS::AutoScaling::LifecycleHook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' LifecycleTransition: !Ref 'LifecycleTransition' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScalingPolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname Resources: Resource: Type: AWS::AutoScaling::ScalingPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScaling-ScheduledAction/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Parameters: AutoScalingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname Resources: Resource: Type: AWS::AutoScaling::ScheduledAction Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html Properties: AutoScalingGroupName: !Ref 'AutoScalingGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-AutoScalingPlans-ScalingPlan/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Resources: Resource: Type: AWS::AutoScalingPlans::ScalingPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscalingplans-scalingplan.html Properties: ApplicationSource: {} Outputs: ScalingPlanName: Value: GetAtt: - Resource - ScalingPlanName ScalingPlanVersion: Value: GetAtt: - Resource - ScalingPlanVersion ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupPlan/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupPlan/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupPlan/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupPlan/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupPlan/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupPlan/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupPlan/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupPlan/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupPlan/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupPlan/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupPlan/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupPlan/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Parameters: BackupPlanResourceTypeBackupPlanName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanname Resources: Resource: Type: AWS::Backup::BackupPlan Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html Properties: BackupPlan: BackupPlanName: !Ref 'BackupPlanResourceTypeBackupPlanName' Outputs: VersionId: Value: GetAtt: - Resource - VersionId BackupPlanId: Value: GetAtt: - Resource - BackupPlanId BackupPlanArn: Value: GetAtt: - Resource - BackupPlanArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupSelection/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupSelection/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupSelection/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupSelection/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupSelection/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupSelection/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupSelection/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupSelection/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupSelection/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupSelection/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupSelection/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupSelection/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Parameters: BackupSelectionResourceTypeSelectionName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-selectionname BackupSelectionResourceTypeIamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-backupselectionresourcetype.html#cfn-backup-backupselection-backupselectionresourcetype-iamrolearn BackupPlanId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html#cfn-backup-backupselection-backupplanid Resources: Resource: Type: AWS::Backup::BackupSelection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupselection.html Properties: BackupSelection: SelectionName: !Ref 'BackupSelectionResourceTypeSelectionName' IamRoleArn: !Ref 'BackupSelectionResourceTypeIamRoleArn' BackupPlanId: !Ref 'BackupPlanId' Outputs: BackupPlanId: Value: GetAtt: - Resource - BackupPlanId SelectionId: Value: GetAtt: - Resource - SelectionId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupVault/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultName: !Ref 'BackupVaultName' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupVault/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultName: !Ref 'BackupVaultName' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupVault/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultName: !Ref 'BackupVaultName' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupVault/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultName: !Ref 'BackupVaultName' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupVault/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultName: !Ref 'BackupVaultName' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupVault/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultName: !Ref 'BackupVaultName' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupVault/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultName: !Ref 'BackupVaultName' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupVault/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultName: !Ref 'BackupVaultName' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupVault/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultName: !Ref 'BackupVaultName' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupVault/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultName: !Ref 'BackupVaultName' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupVault/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultName: !Ref 'BackupVaultName' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Backup-BackupVault/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Parameters: BackupVaultName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html#cfn-backup-backupvault-backupvaultname Resources: Resource: Type: AWS::Backup::BackupVault Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html Properties: BackupVaultName: !Ref 'BackupVaultName' Outputs: BackupVaultName: Value: GetAtt: - Resource - BackupVaultName BackupVaultArn: Value: GetAtt: - Resource - BackupVaultArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-ComputeEnvironment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole Resources: Resource: Type: AWS::Batch::ComputeEnvironment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html Properties: Type: !Ref 'Type' ServiceRole: !Ref 'ServiceRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type Resources: Resource: Type: AWS::Batch::JobDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobQueue/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobQueue/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobQueue/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobQueue/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobQueue/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobQueue/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobQueue/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobQueue/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Batch-JobQueue/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Parameters: Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority Resources: Resource: Type: AWS::Batch::JobQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html Properties: Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Budgets-Budget/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: TimeUnit: !Ref 'BudgetDataTimeUnit' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Budgets-Budget/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: TimeUnit: !Ref 'BudgetDataTimeUnit' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Budgets-Budget/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: TimeUnit: !Ref 'BudgetDataTimeUnit' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Budgets-Budget/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: TimeUnit: !Ref 'BudgetDataTimeUnit' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Budgets-Budget/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: TimeUnit: !Ref 'BudgetDataTimeUnit' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Budgets-Budget/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: TimeUnit: !Ref 'BudgetDataTimeUnit' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Budgets-Budget/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: TimeUnit: !Ref 'BudgetDataTimeUnit' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Budgets-Budget/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: TimeUnit: !Ref 'BudgetDataTimeUnit' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Budgets-Budget/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: TimeUnit: !Ref 'BudgetDataTimeUnit' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Budgets-Budget/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: TimeUnit: !Ref 'BudgetDataTimeUnit' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Budgets-Budget/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: TimeUnit: !Ref 'BudgetDataTimeUnit' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Budgets-Budget/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: TimeUnit: !Ref 'BudgetDataTimeUnit' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Budgets-Budget/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: TimeUnit: !Ref 'BudgetDataTimeUnit' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Budgets-Budget/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Parameters: BudgetDataTimeUnit: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-timeunit BudgetDataBudgetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-budgetdata.html#cfn-budgets-budget-budgetdata-budgettype Resources: Resource: Type: AWS::Budgets::Budget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-budgets-budget.html Properties: Budget: TimeUnit: !Ref 'BudgetDataTimeUnit' BudgetType: !Ref 'BudgetDataBudgetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CE-CostCategory/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html#cfn-ce-costcategory-name RuleVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html#cfn-ce-costcategory-ruleversion Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html#cfn-ce-costcategory-rules Resources: Resource: Type: AWS::CE::CostCategory Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html Properties: Name: !Ref 'Name' RuleVersion: !Ref 'RuleVersion' Rules: !Ref 'Rules' Outputs: Arn: Value: GetAtt: - Resource - Arn EffectiveStart: Value: GetAtt: - Resource - EffectiveStart ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Keyspace/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html Resources: Resource: Type: AWS::Cassandra::Keyspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cassandra-Table/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Parameters: KeyspaceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-keyspacename Resources: Resource: Type: AWS::Cassandra::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html Properties: KeyspaceName: !Ref 'KeyspaceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CertificateManager-Certificate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname Resources: Resource: Type: AWS::CertificateManager::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html Properties: DomainName: !Ref 'DomainName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Chatbot-SlackChannelConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Parameters: SlackWorkspaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackworkspaceid SlackChannelId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-slackchannelid ConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-configurationname IamRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-iamrolearn Resources: Resource: Type: AWS::Chatbot::SlackChannelConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html Properties: SlackWorkspaceId: !Ref 'SlackWorkspaceId' SlackChannelId: !Ref 'SlackChannelId' ConfigurationName: !Ref 'ConfigurationName' IamRoleArn: !Ref 'IamRoleArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cloud9-EnvironmentEC2/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-instancetype Resources: Resource: Type: AWS::Cloud9::EnvironmentEC2 Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Properties: InstanceType: !Ref 'InstanceType' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cloud9-EnvironmentEC2/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-instancetype Resources: Resource: Type: AWS::Cloud9::EnvironmentEC2 Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Properties: InstanceType: !Ref 'InstanceType' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cloud9-EnvironmentEC2/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-instancetype Resources: Resource: Type: AWS::Cloud9::EnvironmentEC2 Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Properties: InstanceType: !Ref 'InstanceType' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cloud9-EnvironmentEC2/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-instancetype Resources: Resource: Type: AWS::Cloud9::EnvironmentEC2 Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Properties: InstanceType: !Ref 'InstanceType' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cloud9-EnvironmentEC2/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-instancetype Resources: Resource: Type: AWS::Cloud9::EnvironmentEC2 Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html Properties: InstanceType: !Ref 'InstanceType' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-CustomResource/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Parameters: ServiceToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken Resources: Resource: Type: AWS::CloudFormation::CustomResource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html Properties: ServiceToken: !Ref 'ServiceToken' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Macro/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-functionname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-name Resources: Resource: Type: AWS::CloudFormation::Macro Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html Properties: FunctionName: !Ref 'FunctionName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-Stack/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Parameters: TemplateURL: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl Resources: Resource: Type: AWS::CloudFormation::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html Properties: TemplateURL: !Ref 'TemplateURL' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitCondition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Resources: Resource: Type: AWS::CloudFormation::WaitCondition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html Outputs: Data: Value: GetAtt: - Resource - Data ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFormation-WaitConditionHandle/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html Resources: Resource: Type: AWS::CloudFormation::WaitConditionHandle Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-CloudFrontOriginAccessIdentity/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Parameters: CloudFrontOriginAccessIdentityConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment Resources: Resource: Type: AWS::CloudFront::CloudFrontOriginAccessIdentity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html Properties: CloudFrontOriginAccessIdentityConfig: Comment: !Ref 'CloudFrontOriginAccessIdentityConfigComment' Outputs: S3CanonicalUserId: Value: GetAtt: - Resource - S3CanonicalUserId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-Distribution/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Parameters: DistributionConfigEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::Distribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html Properties: DistributionConfig: Enabled: !Ref 'DistributionConfigEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudFront-StreamingDistribution/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Parameters: StreamingDistributionConfigComment: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment StreamingDistributionConfigS3OriginDomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname StreamingDistributionConfigS3OriginOriginAccessIdentity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity StreamingDistributionConfigEnabled: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled AllowedValues: - 'true' - 'false' StreamingDistributionConfigTrustedSignersEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::CloudFront::StreamingDistribution Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html Properties: StreamingDistributionConfig: Comment: !Ref 'StreamingDistributionConfigComment' S3Origin: DomainName: !Ref 'StreamingDistributionConfigS3OriginDomainName' OriginAccessIdentity: !Ref 'StreamingDistributionConfigS3OriginOriginAccessIdentity' Enabled: !Ref 'StreamingDistributionConfigEnabled' TrustedSigners: Enabled: !Ref 'StreamingDistributionConfigTrustedSignersEnabled' Outputs: DomainName: Value: GetAtt: - Resource - DomainName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudTrail-Trail/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Parameters: IsLogging: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-islogging AllowedValues: - 'true' - 'false' S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-s3bucketname Resources: Resource: Type: AWS::CloudTrail::Trail Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html Properties: IsLogging: !Ref 'IsLogging' S3BucketName: !Ref 'S3BucketName' Outputs: Arn: Value: GetAtt: - Resource - Arn SnsTopicArn: Value: GetAtt: - Resource - SnsTopicArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Alarm/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Parameters: ComparisonOperator: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator EvaluationPeriods: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods Resources: Resource: Type: AWS::CloudWatch::Alarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html Properties: ComparisonOperator: !Ref 'ComparisonOperator' EvaluationPeriods: !Ref 'EvaluationPeriods' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-AnomalyDetector/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-metricname Stat: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-stat Namespace: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html#cfn-cloudwatch-anomalydetector-namespace Resources: Resource: Type: AWS::CloudWatch::AnomalyDetector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-anomalydetector.html Properties: MetricName: !Ref 'MetricName' Stat: !Ref 'Stat' Namespace: !Ref 'Namespace' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-CompositeAlarm/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Parameters: AlarmName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname AlarmRule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule Resources: Resource: Type: AWS::CloudWatch::CompositeAlarm Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html Properties: AlarmName: !Ref 'AlarmName' AlarmRule: !Ref 'AlarmRule' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-Dashboard/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Parameters: DashboardBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody Resources: Resource: Type: AWS::CloudWatch::Dashboard Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html Properties: DashboardBody: !Ref 'DashboardBody' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CloudWatch-InsightRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Parameters: RuleState: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate RuleBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody RuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename Resources: Resource: Type: AWS::CloudWatch::InsightRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html Properties: RuleState: !Ref 'RuleState' RuleBody: !Ref 'RuleBody' RuleName: !Ref 'RuleName' Outputs: Arn: Value: GetAtt: - Resource - Arn RuleName: Value: GetAtt: - Resource - RuleName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-Project/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Parameters: SourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type ArtifactsType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole EnvironmentType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type EnvironmentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image EnvironmentComputeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype Resources: Resource: Type: AWS::CodeBuild::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html Properties: Source: Type: !Ref 'SourceType' Artifacts: Type: !Ref 'ArtifactsType' ServiceRole: !Ref 'ServiceRole' Environment: Type: !Ref 'EnvironmentType' Image: !Ref 'EnvironmentImage' ComputeType: !Ref 'EnvironmentComputeType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-ReportGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html#cfn-codebuild-reportgroup-type ReportExportConfigExportConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype Resources: Resource: Type: AWS::CodeBuild::ReportGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html Properties: Type: !Ref 'Type' ExportConfig: ExportConfigType: !Ref 'ReportExportConfigExportConfigType' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeBuild-SourceCredential/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Parameters: ServerType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-servertype Token: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-token AuthType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html#cfn-codebuild-sourcecredential-authtype Resources: Resource: Type: AWS::CodeBuild::SourceCredential Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-sourcecredential.html Properties: ServerType: !Ref 'ServerType' Token: !Ref 'Token' AuthType: !Ref 'AuthType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeCommit-Repository/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-repositoryname Resources: Resource: Type: AWS::CodeCommit::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Properties: RepositoryName: !Ref 'RepositoryName' Outputs: CloneUrlHttp: Value: GetAtt: - Resource - CloneUrlHttp CloneUrlSsh: Value: GetAtt: - Resource - CloneUrlSsh Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeCommit-Repository/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-repositoryname Resources: Resource: Type: AWS::CodeCommit::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Properties: RepositoryName: !Ref 'RepositoryName' Outputs: CloneUrlHttp: Value: GetAtt: - Resource - CloneUrlHttp CloneUrlSsh: Value: GetAtt: - Resource - CloneUrlSsh Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeCommit-Repository/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-repositoryname Resources: Resource: Type: AWS::CodeCommit::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Properties: RepositoryName: !Ref 'RepositoryName' Outputs: CloneUrlHttp: Value: GetAtt: - Resource - CloneUrlHttp CloneUrlSsh: Value: GetAtt: - Resource - CloneUrlSsh Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeCommit-Repository/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-repositoryname Resources: Resource: Type: AWS::CodeCommit::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html Properties: RepositoryName: !Ref 'RepositoryName' Outputs: CloneUrlHttp: Value: GetAtt: - Resource - CloneUrlHttp CloneUrlSsh: Value: GetAtt: - Resource - CloneUrlSsh Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-Application/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html Resources: Resource: Type: AWS::CodeDeploy::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentConfig/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html Resources: Resource: Type: AWS::CodeDeploy::DeploymentConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeDeploy-DeploymentGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn Resources: Resource: Type: AWS::CodeDeploy::DeploymentGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html Properties: ApplicationName: !Ref 'ApplicationName' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeGuruProfiler-ProfilingGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Parameters: ProfilingGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html#cfn-codeguruprofiler-profilinggroup-profilinggroupname Resources: Resource: Type: AWS::CodeGuruProfiler::ProfilingGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html Properties: ProfilingGroupName: !Ref 'ProfilingGroupName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-CustomActionType/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Parameters: Category: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category ArtifactDetailsMaximumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount ArtifactDetailsMinimumCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount Provider: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version Resources: Resource: Type: AWS::CodePipeline::CustomActionType Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html Properties: Category: !Ref 'Category' InputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' OutputArtifactDetails: MaximumCount: !Ref 'ArtifactDetailsMaximumCount' MinimumCount: !Ref 'ArtifactDetailsMinimumCount' Provider: !Ref 'Provider' Version: !Ref 'Version' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Pipeline/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn Resources: Resource: Type: AWS::CodePipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodePipeline-Webhook/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Parameters: Authentication: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-authentication TargetPipeline: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipeline TargetAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetaction TargetPipelineVersion: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#cfn-codepipeline-webhook-targetpipelineversion Resources: Resource: Type: AWS::CodePipeline::Webhook Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html Properties: AuthenticationConfiguration: {} Authentication: !Ref 'Authentication' TargetPipeline: !Ref 'TargetPipeline' TargetAction: !Ref 'TargetAction' TargetPipelineVersion: !Ref 'TargetPipelineVersion' Outputs: Url: Value: GetAtt: - Resource - Url ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStar-GitHubRepository/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Parameters: RepositoryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname RepositoryAccessToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken RepositoryOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner Resources: Resource: Type: AWS::CodeStar::GitHubRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html Properties: RepositoryName: !Ref 'RepositoryName' RepositoryAccessToken: !Ref 'RepositoryAccessToken' RepositoryOwner: !Ref 'RepositoryOwner' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarConnections-Connection/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Parameters: ConnectionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype Resources: Resource: Type: AWS::CodeStarConnections::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html Properties: ConnectionName: !Ref 'ConnectionName' ProviderType: !Ref 'ProviderType' Outputs: ConnectionArn: Value: GetAtt: - Resource - ConnectionArn ConnectionStatus: Value: GetAtt: - Resource - ConnectionStatus OwnerAccountId: Value: GetAtt: - Resource - OwnerAccountId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-CodeStarNotifications-NotificationRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Parameters: DetailType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-detailtype Resource: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-resource Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-name Resources: Resource: Type: AWS::CodeStarNotifications::NotificationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html Properties: DetailType: !Ref 'DetailType' Resource: !Ref 'Resource' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPool/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPool/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPool/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPool/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPool/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPool/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPool/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPool/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPool/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Parameters: AllowUnauthenticatedIdentities: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Cognito::IdentityPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html Properties: AllowUnauthenticatedIdentities: !Ref 'AllowUnauthenticatedIdentities' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: IdentityPoolId: !Ref 'IdentityPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: IdentityPoolId: !Ref 'IdentityPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: IdentityPoolId: !Ref 'IdentityPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: IdentityPoolId: !Ref 'IdentityPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: IdentityPoolId: !Ref 'IdentityPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: IdentityPoolId: !Ref 'IdentityPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: IdentityPoolId: !Ref 'IdentityPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: IdentityPoolId: !Ref 'IdentityPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: IdentityPoolId: !Ref 'IdentityPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: IdentityPoolId: !Ref 'IdentityPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: IdentityPoolId: !Ref 'IdentityPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-IdentityPoolRoleAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Parameters: IdentityPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid Resources: Resource: Type: AWS::Cognito::IdentityPoolRoleAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html Properties: IdentityPoolId: !Ref 'IdentityPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPool/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPool/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPool/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPool/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPool/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPool/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPool/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPool/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPool/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPool/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPool/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPool/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Resources: Resource: Type: AWS::Cognito::UserPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html Outputs: ProviderName: Value: GetAtt: - Resource - ProviderName ProviderURL: Value: GetAtt: - Resource - ProviderURL Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolClient/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: UserPoolId: !Ref 'UserPoolId' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolClient/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: UserPoolId: !Ref 'UserPoolId' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolClient/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: UserPoolId: !Ref 'UserPoolId' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolClient/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: UserPoolId: !Ref 'UserPoolId' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolClient/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: UserPoolId: !Ref 'UserPoolId' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolClient/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: UserPoolId: !Ref 'UserPoolId' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolClient/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: UserPoolId: !Ref 'UserPoolId' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolClient/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: UserPoolId: !Ref 'UserPoolId' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolClient/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: UserPoolId: !Ref 'UserPoolId' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolClient/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: UserPoolId: !Ref 'UserPoolId' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolClient/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: UserPoolId: !Ref 'UserPoolId' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolClient/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolClient Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html Properties: UserPoolId: !Ref 'UserPoolId' Outputs: ClientSecret: Value: GetAtt: - Resource - ClientSecret Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolDomain/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolDomain/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolDomain/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolDomain/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolDomain/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolDomain/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolDomain/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolDomain/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolDomain/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolDomain/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolDomain/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolDomain/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid Domain: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain Resources: Resource: Type: AWS::Cognito::UserPoolDomain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html Properties: UserPoolId: !Ref 'UserPoolId' Domain: !Ref 'Domain' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolIdentityProvider/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providername UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-userpoolid ProviderType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#cfn-cognito-userpoolidentityprovider-providertype Resources: Resource: Type: AWS::Cognito::UserPoolIdentityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html Properties: ProviderName: !Ref 'ProviderName' UserPoolId: !Ref 'UserPoolId' ProviderType: !Ref 'ProviderType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolResourceServer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid Identifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name Resources: Resource: Type: AWS::Cognito::UserPoolResourceServer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html Properties: UserPoolId: !Ref 'UserPoolId' Identifier: !Ref 'Identifier' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolRiskConfigurationAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html#cfn-cognito-userpoolriskconfigurationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolRiskConfigurationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolriskconfigurationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUICustomizationAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-userpoolid ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid Resources: Resource: Type: AWS::Cognito::UserPoolUICustomizationAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html Properties: UserPoolId: !Ref 'UserPoolId' ClientId: !Ref 'ClientId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUser/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUser/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUser/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUser/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUser/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUser/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUser/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUser/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUser/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Parameters: UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid Resources: Resource: Type: AWS::Cognito::UserPoolUser Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html Properties: UserPoolId: !Ref 'UserPoolId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Cognito-UserPoolUserToGroupAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname UserPoolId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid Username: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username Resources: Resource: Type: AWS::Cognito::UserPoolUserToGroupAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html Properties: GroupName: !Ref 'GroupName' UserPoolId: !Ref 'UserPoolId' Username: !Ref 'Username' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-AggregationAuthorization/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-AggregationAuthorization/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-AggregationAuthorization/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-AggregationAuthorization/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-AggregationAuthorization/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-AggregationAuthorization/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-AggregationAuthorization/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-AggregationAuthorization/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-AggregationAuthorization/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-AggregationAuthorization/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Parameters: AuthorizedAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedaccountid AuthorizedAwsRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html#cfn-config-aggregationauthorization-authorizedawsregion Resources: Resource: Type: AWS::Config::AggregationAuthorization Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-aggregationauthorization.html Properties: AuthorizedAccountId: !Ref 'AuthorizedAccountId' AuthorizedAwsRegion: !Ref 'AuthorizedAwsRegion' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Parameters: SourceOwner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner SourceSourceIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier Resources: Resource: Type: AWS::Config::ConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html Properties: Source: Owner: !Ref 'SourceOwner' SourceIdentifier: !Ref 'SourceSourceIdentifier' Outputs: Arn: Value: GetAtt: - Resource - Arn Compliance.Type: Value: GetAtt: - Resource - Compliance.Type ConfigRuleId: Value: GetAtt: - Resource - ConfigRuleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationAggregator/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationAggregator/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationAggregator/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationAggregator/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationAggregator/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationAggregator/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationAggregator/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationAggregator/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationAggregator/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationAggregator/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Parameters: ConfigurationAggregatorName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html#cfn-config-configurationaggregator-configurationaggregatorname Resources: Resource: Type: AWS::Config::ConfigurationAggregator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationaggregator.html Properties: ConfigurationAggregatorName: !Ref 'ConfigurationAggregatorName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConfigurationRecorder/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Parameters: RoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn Resources: Resource: Type: AWS::Config::ConfigurationRecorder Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html Properties: RoleARN: !Ref 'RoleARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-ConformancePack/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Parameters: ConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::ConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html Properties: ConformancePackName: !Ref 'ConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-DeliveryChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Parameters: S3BucketName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname Resources: Resource: Type: AWS::Config::DeliveryChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html Properties: S3BucketName: !Ref 'S3BucketName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConfigRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Parameters: OrganizationConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html#cfn-config-organizationconfigrule-organizationconfigrulename Resources: Resource: Type: AWS::Config::OrganizationConfigRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconfigrule.html Properties: OrganizationConfigRuleName: !Ref 'OrganizationConfigRuleName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-OrganizationConformancePack/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Parameters: OrganizationConformancePackName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname DeliveryS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket Resources: Resource: Type: AWS::Config::OrganizationConformancePack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html Properties: OrganizationConformancePackName: !Ref 'OrganizationConformancePackName' DeliveryS3Bucket: !Ref 'DeliveryS3Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Config-RemediationConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Parameters: TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targettype ConfigRuleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-configrulename TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html#cfn-config-remediationconfiguration-targetid Resources: Resource: Type: AWS::Config::RemediationConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-remediationconfiguration.html Properties: TargetType: !Ref 'TargetType' ConfigRuleName: !Ref 'ConfigRuleName' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-Cluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Parameters: ReplicationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-replicationfactor IAMRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-iamrolearn NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-nodetype Resources: Resource: Type: AWS::DAX::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Properties: ReplicationFactor: !Ref 'ReplicationFactor' IAMRoleARN: !Ref 'IAMRoleARN' NodeType: !Ref 'NodeType' Outputs: ClusterDiscoveryEndpoint: Value: GetAtt: - Resource - ClusterDiscoveryEndpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-Cluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Parameters: ReplicationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-replicationfactor IAMRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-iamrolearn NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-nodetype Resources: Resource: Type: AWS::DAX::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Properties: ReplicationFactor: !Ref 'ReplicationFactor' IAMRoleARN: !Ref 'IAMRoleARN' NodeType: !Ref 'NodeType' Outputs: ClusterDiscoveryEndpoint: Value: GetAtt: - Resource - ClusterDiscoveryEndpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-Cluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Parameters: ReplicationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-replicationfactor IAMRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-iamrolearn NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-nodetype Resources: Resource: Type: AWS::DAX::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Properties: ReplicationFactor: !Ref 'ReplicationFactor' IAMRoleARN: !Ref 'IAMRoleARN' NodeType: !Ref 'NodeType' Outputs: ClusterDiscoveryEndpoint: Value: GetAtt: - Resource - ClusterDiscoveryEndpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-Cluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Parameters: ReplicationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-replicationfactor IAMRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-iamrolearn NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-nodetype Resources: Resource: Type: AWS::DAX::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Properties: ReplicationFactor: !Ref 'ReplicationFactor' IAMRoleARN: !Ref 'IAMRoleARN' NodeType: !Ref 'NodeType' Outputs: ClusterDiscoveryEndpoint: Value: GetAtt: - Resource - ClusterDiscoveryEndpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-Cluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Parameters: ReplicationFactor: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-replicationfactor IAMRoleARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-iamrolearn NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-nodetype Resources: Resource: Type: AWS::DAX::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html Properties: ReplicationFactor: !Ref 'ReplicationFactor' IAMRoleARN: !Ref 'IAMRoleARN' NodeType: !Ref 'NodeType' Outputs: ClusterDiscoveryEndpoint: Value: GetAtt: - Resource - ClusterDiscoveryEndpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-ParameterGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Resources: Resource: Type: AWS::DAX::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-ParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Resources: Resource: Type: AWS::DAX::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-ParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Resources: Resource: Type: AWS::DAX::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-ParameterGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Resources: Resource: Type: AWS::DAX::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-ParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html Resources: Resource: Type: AWS::DAX::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-SubnetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Resources: Resource: Type: AWS::DAX::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-SubnetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Resources: Resource: Type: AWS::DAX::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-SubnetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Resources: Resource: Type: AWS::DAX::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-SubnetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Resources: Resource: Type: AWS::DAX::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DAX-SubnetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html Resources: Resource: Type: AWS::DAX::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DLM-LifecyclePolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DLM-LifecyclePolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DLM-LifecyclePolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DLM-LifecyclePolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DLM-LifecyclePolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DLM-LifecyclePolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DLM-LifecyclePolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DLM-LifecyclePolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DLM-LifecyclePolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DLM-LifecyclePolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DLM-LifecyclePolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DLM-LifecyclePolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DLM-LifecyclePolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DLM-LifecyclePolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Resources: Resource: Type: AWS::DLM::LifecyclePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dlm-lifecyclepolicy.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Certificate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html Resources: Resource: Type: AWS::DMS::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-Endpoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename EndpointType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype Resources: Resource: Type: AWS::DMS::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html Properties: EngineName: !Ref 'EngineName' EndpointType: !Ref 'EndpointType' Outputs: ExternalId: Value: GetAtt: - Resource - ExternalId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-EventSubscription/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn Resources: Resource: Type: AWS::DMS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationInstance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Parameters: ReplicationInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass Resources: Resource: Type: AWS::DMS::ReplicationInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html Properties: ReplicationInstanceClass: !Ref 'ReplicationInstanceClass' Outputs: ReplicationInstancePublicIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePublicIpAddresses ReplicationInstancePrivateIpAddresses: Value: GetAtt: - Resource - ReplicationInstancePrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationSubnetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Parameters: ReplicationSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription Resources: Resource: Type: AWS::DMS::ReplicationSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html Properties: ReplicationSubnetGroupDescription: !Ref 'ReplicationSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DMS-ReplicationTask/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Parameters: TableMappings: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings SourceEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn MigrationType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype TargetEndpointArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn ReplicationInstanceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn Resources: Resource: Type: AWS::DMS::ReplicationTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html Properties: TableMappings: !Ref 'TableMappings' SourceEndpointArn: !Ref 'SourceEndpointArn' MigrationType: !Ref 'MigrationType' TargetEndpointArn: !Ref 'TargetEndpointArn' ReplicationInstanceArn: !Ref 'ReplicationInstanceArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DataPipeline-Pipeline/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name Resources: Resource: Type: AWS::DataPipeline::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-Graph/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Resources: Resource: Type: AWS::Detective::Graph Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Detective-MemberInvitation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Parameters: GraphArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-grapharn MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberid MemberEmailAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html#cfn-detective-memberinvitation-memberemailaddress Resources: Resource: Type: AWS::Detective::MemberInvitation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-memberinvitation.html Properties: GraphArn: !Ref 'GraphArn' MemberId: !Ref 'MemberId' MemberEmailAddress: !Ref 'MemberEmailAddress' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-MicrosoftAD/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-microsoftad-vpcsettings.html#cfn-directoryservice-microsoftad-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::MicrosoftAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DirectoryService-SimpleAD/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name Password: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password Size: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size VpcSettingsVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid Resources: Resource: Type: AWS::DirectoryService::SimpleAD Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html Properties: Name: !Ref 'Name' Password: !Ref 'Password' Size: !Ref 'Size' VpcSettings: VpcId: !Ref 'VpcSettingsVpcId' Outputs: Alias: Value: GetAtt: - Resource - Alias DnsIpAddresses: Value: GetAtt: - Resource - DnsIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBCluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBCluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBCluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBCluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBCluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBCluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBCluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBCluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBCluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBCluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Parameters: MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-masterusername Resources: Resource: Type: AWS::DocDB::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html Properties: MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBClusterParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family Resources: Resource: Type: AWS::DocDB::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBInstance/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBInstance/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBInstance/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBInstance/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBInstance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBInstance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBInstance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBInstance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBInstance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBInstance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbinstanceclass DBClusterIdentifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html#cfn-docdb-dbinstance-dbclusteridentifier Resources: Resource: Type: AWS::DocDB::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' DBClusterIdentifier: !Ref 'DBClusterIdentifier' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DocDB-DBSubnetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::DocDB::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-DynamoDB-Table/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Resources: Resource: Type: AWS::DynamoDB::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html Outputs: Arn: Value: GetAtt: - Resource - Arn StreamArn: Value: GetAtt: - Resource - StreamArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CapacityReservation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CapacityReservation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CapacityReservation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CapacityReservation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CapacityReservation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CapacityReservation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CapacityReservation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CapacityReservation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CapacityReservation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CapacityReservation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CapacityReservation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CapacityReservation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CapacityReservation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CapacityReservation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancecount AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzone InstancePlatform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instanceplatform InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-instancetype Resources: Resource: Type: AWS::EC2::CapacityReservation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html Properties: InstanceCount: !Ref 'InstanceCount' AvailabilityZone: !Ref 'AvailabilityZone' InstancePlatform: !Ref 'InstancePlatform' InstanceType: !Ref 'InstanceType' Outputs: Tenancy: Value: GetAtt: - Resource - Tenancy AvailableInstanceCount: Value: GetAtt: - Resource - AvailableInstanceCount AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone TotalInstanceCount: Value: GetAtt: - Resource - TotalInstanceCount InstanceType: Value: GetAtt: - Resource - InstanceType ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnAuthorizationRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid TargetNetworkCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr Resources: Resource: Type: AWS::EC2::ClientVpnAuthorizationRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetNetworkCidr: !Ref 'TargetNetworkCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: Enabled: !Ref 'ConnectionLogOptionsEnabled' ServerCertificateArn: !Ref 'ServerCertificateArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: Enabled: !Ref 'ConnectionLogOptionsEnabled' ServerCertificateArn: !Ref 'ServerCertificateArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: Enabled: !Ref 'ConnectionLogOptionsEnabled' ServerCertificateArn: !Ref 'ServerCertificateArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: Enabled: !Ref 'ConnectionLogOptionsEnabled' ServerCertificateArn: !Ref 'ServerCertificateArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: Enabled: !Ref 'ConnectionLogOptionsEnabled' ServerCertificateArn: !Ref 'ServerCertificateArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: Enabled: !Ref 'ConnectionLogOptionsEnabled' ServerCertificateArn: !Ref 'ServerCertificateArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: Enabled: !Ref 'ConnectionLogOptionsEnabled' ServerCertificateArn: !Ref 'ServerCertificateArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: Enabled: !Ref 'ConnectionLogOptionsEnabled' ServerCertificateArn: !Ref 'ServerCertificateArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: Enabled: !Ref 'ConnectionLogOptionsEnabled' ServerCertificateArn: !Ref 'ServerCertificateArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: Enabled: !Ref 'ConnectionLogOptionsEnabled' ServerCertificateArn: !Ref 'ServerCertificateArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: Enabled: !Ref 'ConnectionLogOptionsEnabled' ServerCertificateArn: !Ref 'ServerCertificateArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: Enabled: !Ref 'ConnectionLogOptionsEnabled' ServerCertificateArn: !Ref 'ServerCertificateArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: Enabled: !Ref 'ConnectionLogOptionsEnabled' ServerCertificateArn: !Ref 'ServerCertificateArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnEndpoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Parameters: ClientCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientcidrblock ConnectionLogOptionsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html#cfn-ec2-clientvpnendpoint-connectionlogoptions-enabled AllowedValues: - 'true' - 'false' ServerCertificateArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn Resources: Resource: Type: AWS::EC2::ClientVpnEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html Properties: ClientCidrBlock: !Ref 'ClientCidrBlock' ConnectionLogOptions: Enabled: !Ref 'ConnectionLogOptionsEnabled' ServerCertificateArn: !Ref 'ServerCertificateArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnRoute/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnRoute/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnRoute/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnRoute/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnRoute/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnRoute/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnRoute/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnRoute/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnRoute/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnRoute/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnRoute/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnRoute/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnRoute/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnRoute/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-clientvpnendpointid TargetVpcSubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-targetvpcsubnetid DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html#cfn-ec2-clientvpnroute-destinationcidrblock Resources: Resource: Type: AWS::EC2::ClientVpnRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnroute.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' TargetVpcSubnetId: !Ref 'TargetVpcSubnetId' DestinationCidrBlock: !Ref 'DestinationCidrBlock' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-ClientVpnTargetNetworkAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Parameters: ClientVpnEndpointId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-clientvpnendpointid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html#cfn-ec2-clientvpntargetnetworkassociation-subnetid Resources: Resource: Type: AWS::EC2::ClientVpnTargetNetworkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpntargetnetworkassociation.html Properties: ClientVpnEndpointId: !Ref 'ClientVpnEndpointId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-CustomerGateway/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Parameters: BgpAsn: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-bgpasn IpAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-ipaddress Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html#cfn-ec2-customergateway-type Resources: Resource: Type: AWS::EC2::CustomerGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customer-gateway.html Properties: BgpAsn: !Ref 'BgpAsn' IpAddress: !Ref 'IpAddress' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-DHCPOptions/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html Resources: Resource: Type: AWS::EC2::DHCPOptions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcp-options.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EC2Fleet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Parameters: TargetCapacitySpecificationRequestTotalTargetCapacity: Type: Number Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-targetcapacityspecificationrequest.html#cfn-ec2-ec2fleet-targetcapacityspecificationrequest-totaltargetcapacity Resources: Resource: Type: AWS::EC2::EC2Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ec2fleet.html Properties: TargetCapacitySpecification: TotalTargetCapacity: !Ref 'TargetCapacitySpecificationRequestTotalTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIP/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Resources: Resource: Type: AWS::EC2::EIP Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html Outputs: AllocationId: Value: GetAtt: - Resource - AllocationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EIPAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html Resources: Resource: Type: AWS::EC2::EIPAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip-association.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-EgressOnlyInternetGateway/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid Resources: Resource: Type: AWS::EC2::EgressOnlyInternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-FlowLog/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Parameters: ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourceid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-resourcetype TrafficType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-traffictype Resources: Resource: Type: AWS::EC2::FlowLog Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html Properties: ResourceId: !Ref 'ResourceId' ResourceType: !Ref 'ResourceType' TrafficType: !Ref 'TrafficType' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-GatewayRouteTableAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-routetableid GatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html#cfn-ec2-gatewayroutetableassociation-gatewayid Resources: Resource: Type: AWS::EC2::GatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-gatewayroutetableassociation.html Properties: RouteTableId: !Ref 'RouteTableId' GatewayId: !Ref 'GatewayId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Host/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype Resources: Resource: Type: AWS::EC2::Host Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' InstanceType: !Ref 'InstanceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Instance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Resources: Resource: Type: AWS::EC2::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-InternetGateway/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html Resources: Resource: Type: AWS::EC2::InternetGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LaunchTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Resources: Resource: Type: AWS::EC2::LaunchTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html Outputs: LatestVersionNumber: Value: GetAtt: - Resource - LatestVersionNumber DefaultVersionNumber: Value: GetAtt: - Resource - DefaultVersionNumber ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRoute/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid LocalGatewayVirtualInterfaceGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid Resources: Resource: Type: AWS::EC2::LocalGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' LocalGatewayVirtualInterfaceGroupId: !Ref 'LocalGatewayVirtualInterfaceGroupId' Outputs: State: Value: GetAtt: - Resource - State Type: Value: GetAtt: - Resource - Type ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-LocalGatewayRouteTableVPCAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Parameters: LocalGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-localgatewayroutetableid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html#cfn-ec2-localgatewayroutetablevpcassociation-vpcid Resources: Resource: Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html Properties: LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId' VpcId: !Ref 'VpcId' Outputs: LocalGatewayId: Value: GetAtt: - Resource - LocalGatewayId LocalGatewayRouteTableVpcAssociationId: Value: GetAtt: - Resource - LocalGatewayRouteTableVpcAssociationId State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NatGateway/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Parameters: AllocationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid Resources: Resource: Type: AWS::EC2::NatGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html Properties: AllocationId: !Ref 'AllocationId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAcl/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html#cfn-ec2-networkacl-vpcid Resources: Resource: Type: AWS::EC2::NetworkAcl Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkAclEntry/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-networkaclid Protocol: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-protocol RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-ruleaction RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html#cfn-ec2-networkaclentry-rulenumber Resources: Resource: Type: AWS::EC2::NetworkAclEntry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-acl-entry.html Properties: NetworkAclId: !Ref 'NetworkAclId' Protocol: !Ref 'Protocol' RuleAction: !Ref 'RuleAction' RuleNumber: !Ref 'RuleNumber' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterface/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Parameters: SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html#cfn-awsec2networkinterface-subnetid Resources: Resource: Type: AWS::EC2::NetworkInterface Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface.html Properties: SubnetId: !Ref 'SubnetId' Outputs: PrimaryPrivateIpAddress: Value: GetAtt: - Resource - PrimaryPrivateIpAddress SecondaryPrivateIpAddresses: Value: GetAtt: - Resource - SecondaryPrivateIpAddresses ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfaceAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Parameters: DeviceIndex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid Resources: Resource: Type: AWS::EC2::NetworkInterfaceAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html Properties: DeviceIndex: !Ref 'DeviceIndex' InstanceId: !Ref 'InstanceId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-NetworkInterfacePermission/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Parameters: AwsAccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-awsaccountid NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-networkinterfaceid Permission: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html#cfn-ec2-networkinterfacepermission-permission Resources: Resource: Type: AWS::EC2::NetworkInterfacePermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfacepermission.html Properties: AwsAccountId: !Ref 'AwsAccountId' NetworkInterfaceId: !Ref 'NetworkInterfaceId' Permission: !Ref 'Permission' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PlacementGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html Resources: Resource: Type: AWS::EC2::PlacementGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-placementgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-PrefixList/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Parameters: PrefixListName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname AddressFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily MaxEntries: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries Resources: Resource: Type: AWS::EC2::PrefixList Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html Properties: PrefixListName: !Ref 'PrefixListName' AddressFamily: !Ref 'AddressFamily' MaxEntries: !Ref 'MaxEntries' Outputs: PrefixListId: Value: GetAtt: - Resource - PrefixListId OwnerId: Value: GetAtt: - Resource - OwnerId Version: Value: GetAtt: - Resource - Version Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Route/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html#cfn-ec2-route-routetableid Resources: Resource: Type: AWS::EC2::Route Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html Properties: RouteTableId: !Ref 'RouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-RouteTable/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html#cfn-ec2-routetable-vpcid Resources: Resource: Type: AWS::EC2::RouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route-table.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2-securitygroup-groupdescription Resources: Resource: Type: AWS::EC2::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' Outputs: GroupId: Value: GetAtt: - Resource - GroupId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupEgress/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-groupid IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html#cfn-ec2-securitygroupegress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupEgress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html Properties: GroupId: !Ref 'GroupId' IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SecurityGroupIngress/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Parameters: IpProtocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html#cfn-ec2-security-group-ingress-ipprotocol Resources: Resource: Type: AWS::EC2::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-ingress.html Properties: IpProtocol: !Ref 'IpProtocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SpotFleet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Parameters: SpotFleetRequestConfigDataIamFleetRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-iamfleetrole SpotFleetRequestConfigDataTargetCapacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotfleetrequestconfigdata.html#cfn-ec2-spotfleet-spotfleetrequestconfigdata-targetcapacity Resources: Resource: Type: AWS::EC2::SpotFleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-spotfleet.html Properties: SpotFleetRequestConfigData: IamFleetRole: !Ref 'SpotFleetRequestConfigDataIamFleetRole' TargetCapacity: !Ref 'SpotFleetRequestConfigDataTargetCapacity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Subnet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-cidrblock VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-awsec2subnet-prop-vpcid Resources: Resource: Type: AWS::EC2::Subnet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html Properties: CidrBlock: !Ref 'CidrBlock' VpcId: !Ref 'VpcId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks NetworkAclAssociationId: Value: GetAtt: - Resource - NetworkAclAssociationId VpcId: Value: GetAtt: - Resource - VpcId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetCidrBlock/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Parameters: Ipv6CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid Resources: Resource: Type: AWS::EC2::SubnetCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html Properties: Ipv6CidrBlock: !Ref 'Ipv6CidrBlock' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetNetworkAclAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Parameters: NetworkAclId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-networkaclid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html#cfn-ec2-subnetnetworkaclassociation-associationid Resources: Resource: Type: AWS::EC2::SubnetNetworkAclAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-network-acl-assoc.html Properties: NetworkAclId: !Ref 'NetworkAclId' SubnetId: !Ref 'SubnetId' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-SubnetRouteTableAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Parameters: RouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-routetableid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html#cfn-ec2-subnetroutetableassociation-subnetid Resources: Resource: Type: AWS::EC2::SubnetRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet-route-table-assoc.html Properties: RouteTableId: !Ref 'RouteTableId' SubnetId: !Ref 'SubnetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html Resources: Resource: Type: AWS::EC2::TrafficMirrorFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorFilterRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Parameters: RuleAction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-ruleaction SourceCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-sourcecidrblock RuleNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-rulenumber DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-destinationcidrblock TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterid TrafficDirection: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficdirection Resources: Resource: Type: AWS::EC2::TrafficMirrorFilterRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html Properties: RuleAction: !Ref 'RuleAction' SourceCidrBlock: !Ref 'SourceCidrBlock' RuleNumber: !Ref 'RuleNumber' DestinationCidrBlock: !Ref 'DestinationCidrBlock' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' TrafficDirection: !Ref 'TrafficDirection' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorSession/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Parameters: TrafficMirrorTargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrortargetid SessionNumber: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-sessionnumber NetworkInterfaceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-networkinterfaceid TrafficMirrorFilterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-trafficmirrorfilterid Resources: Resource: Type: AWS::EC2::TrafficMirrorSession Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html Properties: TrafficMirrorTargetId: !Ref 'TrafficMirrorTargetId' SessionNumber: !Ref 'SessionNumber' NetworkInterfaceId: !Ref 'NetworkInterfaceId' TrafficMirrorFilterId: !Ref 'TrafficMirrorFilterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TrafficMirrorTarget/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html Resources: Resource: Type: AWS::EC2::TrafficMirrorTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGateway/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html Resources: Resource: Type: AWS::EC2::TransitGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-transitgatewayid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html#cfn-ec2-transitgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::TransitGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayattachment.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRoute/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#cfn-ec2-transitgatewayroute-transitgatewayroutetableid Resources: Resource: Type: AWS::EC2::TransitGatewayRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTable/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Parameters: TransitGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTable Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html Properties: TransitGatewayId: !Ref 'TransitGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTableAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#cfn-ec2-transitgatewayroutetableassociation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTableAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-TransitGatewayRouteTablePropagation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Parameters: TransitGatewayRouteTableId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayroutetableid TransitGatewayAttachmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#cfn-ec2-transitgatewayroutetablepropagation-transitgatewayattachmentid Resources: Resource: Type: AWS::EC2::TransitGatewayRouteTablePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html Properties: TransitGatewayRouteTableId: !Ref 'TransitGatewayRouteTableId' TransitGatewayAttachmentId: !Ref 'TransitGatewayAttachmentId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPC/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Parameters: CidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#cfn-aws-ec2-vpc-cidrblock Resources: Resource: Type: AWS::EC2::VPC Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html Properties: CidrBlock: !Ref 'CidrBlock' Outputs: CidrBlock: Value: GetAtt: - Resource - CidrBlock CidrBlockAssociations: Value: GetAtt: - Resource - CidrBlockAssociations DefaultNetworkAcl: Value: GetAtt: - Resource - DefaultNetworkAcl DefaultSecurityGroup: Value: GetAtt: - Resource - DefaultSecurityGroup Ipv6CidrBlocks: Value: GetAtt: - Resource - Ipv6CidrBlocks ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCCidrBlock/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html#cfn-ec2-vpccidrblock-vpcid Resources: Resource: Type: AWS::EC2::VPCCidrBlock Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCDHCPOptionsAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Parameters: DhcpOptionsId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid Resources: Resource: Type: AWS::EC2::VPCDHCPOptionsAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html Properties: DhcpOptionsId: !Ref 'DhcpOptionsId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Parameters: ServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid Resources: Resource: Type: AWS::EC2::VPCEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html Properties: ServiceName: !Ref 'ServiceName' VpcId: !Ref 'VpcId' Outputs: CreationTimestamp: Value: GetAtt: - Resource - CreationTimestamp DnsEntries: Value: GetAtt: - Resource - DnsEntries NetworkInterfaceIds: Value: GetAtt: - Resource - NetworkInterfaceIds ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointConnectionNotification/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Parameters: ConnectionNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-connectionnotificationarn Resources: Resource: Type: AWS::EC2::VPCEndpointConnectionNotification Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Properties: ConnectionNotificationArn: !Ref 'ConnectionNotificationArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointConnectionNotification/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Parameters: ConnectionNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-connectionnotificationarn Resources: Resource: Type: AWS::EC2::VPCEndpointConnectionNotification Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Properties: ConnectionNotificationArn: !Ref 'ConnectionNotificationArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointConnectionNotification/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Parameters: ConnectionNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-connectionnotificationarn Resources: Resource: Type: AWS::EC2::VPCEndpointConnectionNotification Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Properties: ConnectionNotificationArn: !Ref 'ConnectionNotificationArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointConnectionNotification/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Parameters: ConnectionNotificationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html#cfn-ec2-vpcendpointconnectionnotification-connectionnotificationarn Resources: Resource: Type: AWS::EC2::VPCEndpointConnectionNotification Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html Properties: ConnectionNotificationArn: !Ref 'ConnectionNotificationArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointService/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html Resources: Resource: Type: AWS::EC2::VPCEndpointService Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCEndpointServicePermissions/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Parameters: ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html#cfn-ec2-vpcendpointservicepermissions-serviceid Resources: Resource: Type: AWS::EC2::VPCEndpointServicePermissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html Properties: ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCGatewayAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Parameters: VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid Resources: Resource: Type: AWS::EC2::VPCGatewayAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html Properties: VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPCPeeringConnection/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Parameters: PeerVpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid VpcId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid Resources: Resource: Type: AWS::EC2::VPCPeeringConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html Properties: PeerVpcId: !Ref 'PeerVpcId' VpcId: !Ref 'VpcId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnection/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Parameters: CustomerGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-customergatewayid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html#cfn-ec2-vpnconnection-type Resources: Resource: Type: AWS::EC2::VPNConnection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection.html Properties: CustomerGatewayId: !Ref 'CustomerGatewayId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNConnectionRoute/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Parameters: DestinationCidrBlock: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-cidrblock VpnConnectionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html#cfn-ec2-vpnconnectionroute-connectionid Resources: Resource: Type: AWS::EC2::VPNConnectionRoute Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-connection-route.html Properties: DestinationCidrBlock: !Ref 'DestinationCidrBlock' VpnConnectionId: !Ref 'VpnConnectionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGateway/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type Resources: Resource: Type: AWS::EC2::VPNGateway Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VPNGatewayRoutePropagation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Parameters: VpnGatewayId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid Resources: Resource: Type: AWS::EC2::VPNGatewayRoutePropagation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html Properties: VpnGatewayId: !Ref 'VpnGatewayId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-Volume/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Parameters: AvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html#cfn-ec2-ebs-volume-availabilityzone Resources: Resource: Type: AWS::EC2::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html Properties: AvailabilityZone: !Ref 'AvailabilityZone' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EC2-VolumeAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Parameters: Device: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device InstanceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid Resources: Resource: Type: AWS::EC2::VolumeAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html Properties: Device: !Ref 'Device' InstanceId: !Ref 'InstanceId' VolumeId: !Ref 'VolumeId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECR-Repository/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Resources: Resource: Type: AWS::ECR::Repository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-CapacityProvider/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Parameters: AutoScalingGroupProviderAutoScalingGroupArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-autoscalinggroupprovider.html#cfn-ecs-capacityprovider-autoscalinggroupprovider-autoscalinggrouparn Resources: Resource: Type: AWS::ECS::CapacityProvider Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html Properties: AutoScalingGroupProvider: AutoScalingGroupArn: !Ref 'AutoScalingGroupProviderAutoScalingGroupArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Cluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Resources: Resource: Type: AWS::ECS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-PrimaryTaskSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster TaskSetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service Resources: Resource: Type: AWS::ECS::PrimaryTaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html Properties: Cluster: !Ref 'Cluster' TaskSetId: !Ref 'TaskSetId' Service: !Ref 'Service' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-Service/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Resources: Resource: Type: AWS::ECS::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html Resources: Resource: Type: AWS::ECS::TaskDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ECS-TaskSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Parameters: Cluster: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-cluster Service: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-service TaskDefinition: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html#cfn-ecs-taskset-taskdefinition Resources: Resource: Type: AWS::ECS::TaskSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html Properties: Cluster: !Ref 'Cluster' Service: !Ref 'Service' TaskDefinition: !Ref 'TaskDefinition' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-AccessPoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-filesystemid Resources: Resource: Type: AWS::EFS::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html Properties: FileSystemId: !Ref 'FileSystemId' Outputs: AccessPointId: Value: GetAtt: - Resource - AccessPointId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-FileSystem/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Resources: Resource: Type: AWS::EFS::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html Outputs: FileSystemId: Value: GetAtt: - Resource - FileSystemId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EFS-MountTarget/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Parameters: FileSystemId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid SubnetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid Resources: Resource: Type: AWS::EFS::MountTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html Properties: FileSystemId: !Ref 'FileSystemId' SubnetId: !Ref 'SubnetId' Outputs: IpAddress: Value: GetAtt: - Resource - IpAddress ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Cluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-rolearn Resources: Resource: Type: AWS::EKS::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html Properties: RoleArn: !Ref 'RoleArn' ResourcesVpcConfig: {} Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ClusterSecurityGroupId: Value: GetAtt: - Resource - ClusterSecurityGroupId EncryptionConfigKeyArn: Value: GetAtt: - Resource - EncryptionConfigKeyArn Arn: Value: GetAtt: - Resource - Arn CertificateAuthorityData: Value: GetAtt: - Resource - CertificateAuthorityData ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EKS-Nodegroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Parameters: NodeRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-noderole ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-clustername Resources: Resource: Type: AWS::EKS::Nodegroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html Properties: NodeRole: !Ref 'NodeRole' ClusterName: !Ref 'ClusterName' Outputs: NodegroupName: Value: GetAtt: - Resource - NodegroupName ClusterName: Value: GetAtt: - Resource - ClusterName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Cluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Parameters: JobFlowRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name ServiceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole Resources: Resource: Type: AWS::EMR::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html Properties: Instances: {} JobFlowRole: !Ref 'JobFlowRole' Name: !Ref 'Name' ServiceRole: !Ref 'ServiceRole' Outputs: MasterPublicDNS: Value: GetAtt: - Resource - MasterPublicDNS ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceFleetConfig/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Parameters: ClusterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid InstanceFleetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype Resources: Resource: Type: AWS::EMR::InstanceFleetConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html Properties: ClusterId: !Ref 'ClusterId' InstanceFleetType: !Ref 'InstanceFleetType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-InstanceGroupConfig/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Parameters: InstanceCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount- InstanceRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid Resources: Resource: Type: AWS::EMR::InstanceGroupConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html Properties: InstanceCount: !Ref 'InstanceCount' InstanceRole: !Ref 'InstanceRole' InstanceType: !Ref 'InstanceType' JobFlowId: !Ref 'JobFlowId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-SecurityConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Parameters: SecurityConfiguration: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration Resources: Resource: Type: AWS::EMR::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html Properties: SecurityConfiguration: !Ref 'SecurityConfiguration' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EMR-Step/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Parameters: ActionOnFailure: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure HadoopJarStepConfigJar: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar JobFlowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name Resources: Resource: Type: AWS::EMR::Step Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html Properties: ActionOnFailure: !Ref 'ActionOnFailure' HadoopJarStep: Jar: !Ref 'HadoopJarStepConfigJar' JobFlowId: !Ref 'JobFlowId' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-CacheCluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Parameters: CacheNodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine NumCacheNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes Resources: Resource: Type: AWS::ElastiCache::CacheCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html Properties: CacheNodeType: !Ref 'CacheNodeType' Engine: !Ref 'Engine' NumCacheNodes: !Ref 'NumCacheNodes' Outputs: ConfigurationEndpoint.Address: Value: GetAtt: - Resource - ConfigurationEndpoint.Address ConfigurationEndpoint.Port: Value: GetAtt: - Resource - ConfigurationEndpoint.Port RedisEndpoint.Address: Value: GetAtt: - Resource - RedisEndpoint.Address RedisEndpoint.Port: Value: GetAtt: - Resource - RedisEndpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Parameters: CacheParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description Resources: Resource: Type: AWS::ElastiCache::ParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html Properties: CacheParameterGroupFamily: !Ref 'CacheParameterGroupFamily' Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-ReplicationGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Parameters: ReplicationGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription Resources: Resource: Type: AWS::ElastiCache::ReplicationGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html Properties: ReplicationGroupDescription: !Ref 'ReplicationGroupDescription' Outputs: ConfigurationEndPoint.Address: Value: GetAtt: - Resource - ConfigurationEndPoint.Address ConfigurationEndPoint.Port: Value: GetAtt: - Resource - ConfigurationEndPoint.Port PrimaryEndPoint.Address: Value: GetAtt: - Resource - PrimaryEndPoint.Address PrimaryEndPoint.Port: Value: GetAtt: - Resource - PrimaryEndPoint.Port ReadEndPoint.Addresses: Value: GetAtt: - Resource - ReadEndPoint.Addresses ReadEndPoint.Addresses.List: Value: GetAtt: - Resource - ReadEndPoint.Addresses.List ReadEndPoint.Ports: Value: GetAtt: - Resource - ReadEndPoint.Ports ReadEndPoint.Ports.List: Value: GetAtt: - Resource - ReadEndPoint.Ports.List ReaderEndPoint.Address: Value: GetAtt: - Resource - ReaderEndPoint.Address ReaderEndPoint.Port: Value: GetAtt: - Resource - ReaderEndPoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Resources: Resource: Type: AWS::ElastiCache::SecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SecurityGroupIngress/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Parameters: CacheSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname EC2SecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname Resources: Resource: Type: AWS::ElastiCache::SecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html Properties: CacheSecurityGroupName: !Ref 'CacheSecurityGroupName' EC2SecurityGroupName: !Ref 'EC2SecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElastiCache-SubnetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description Resources: Resource: Type: AWS::ElastiCache::SubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Application/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html Resources: Resource: Type: AWS::ElasticBeanstalk::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ApplicationVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname SourceBundleS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket SourceBundleS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key Resources: Resource: Type: AWS::ElasticBeanstalk::ApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html Properties: ApplicationName: !Ref 'ApplicationName' SourceBundle: S3Bucket: !Ref 'SourceBundleS3Bucket' S3Key: !Ref 'SourceBundleS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-ConfigurationTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::ConfigurationTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html Properties: ApplicationName: !Ref 'ApplicationName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticBeanstalk-Environment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname Resources: Resource: Type: AWS::ElasticBeanstalk::Environment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html Properties: ApplicationName: !Ref 'ApplicationName' Outputs: EndpointURL: Value: GetAtt: - Resource - EndpointURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancing-LoadBalancer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Resources: Resource: Type: AWS::ElasticLoadBalancing::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html Outputs: CanonicalHostedZoneName: Value: GetAtt: - Resource - CanonicalHostedZoneName CanonicalHostedZoneNameID: Value: GetAtt: - Resource - CanonicalHostedZoneNameID DNSName: Value: GetAtt: - Resource - DNSName SourceSecurityGroup.GroupName: Value: GetAtt: - Resource - SourceSecurityGroup.GroupName SourceSecurityGroup.OwnerAlias: Value: GetAtt: - Resource - SourceSecurityGroup.OwnerAlias ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-Listener/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Parameters: LoadBalancerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn Port: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol Resources: Resource: Type: AWS::ElasticLoadBalancingV2::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html Properties: LoadBalancerArn: !Ref 'LoadBalancerArn' Port: !Ref 'Port' Protocol: !Ref 'Protocol' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerCertificate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerCertificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html Properties: ListenerArn: !Ref 'ListenerArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-ListenerRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority Resources: Resource: Type: AWS::ElasticLoadBalancingV2::ListenerRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html Properties: ListenerArn: !Ref 'ListenerArn' Priority: !Ref 'Priority' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-LoadBalancer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::LoadBalancer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html Outputs: CanonicalHostedZoneID: Value: GetAtt: - Resource - CanonicalHostedZoneID DNSName: Value: GetAtt: - Resource - DNSName LoadBalancerFullName: Value: GetAtt: - Resource - LoadBalancerFullName LoadBalancerName: Value: GetAtt: - Resource - LoadBalancerName SecurityGroups: Value: GetAtt: - Resource - SecurityGroups ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ElasticLoadBalancingV2-TargetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Resources: Resource: Type: AWS::ElasticLoadBalancingV2::TargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html Outputs: LoadBalancerArns: Value: GetAtt: - Resource - LoadBalancerArns TargetGroupFullName: Value: GetAtt: - Resource - TargetGroupFullName TargetGroupName: Value: GetAtt: - Resource - TargetGroupName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Elasticsearch-Domain/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Resources: Resource: Type: AWS::Elasticsearch::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainArn: Value: GetAtt: - Resource - DomainArn DomainEndpoint: Value: GetAtt: - Resource - DomainEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Discoverer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Parameters: SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-sourcearn Resources: Resource: Type: AWS::EventSchemas::Discoverer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Properties: SourceArn: !Ref 'SourceArn' Outputs: DiscovererArn: Value: GetAtt: - Resource - DiscovererArn DiscovererId: Value: GetAtt: - Resource - DiscovererId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Discoverer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Parameters: SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-sourcearn Resources: Resource: Type: AWS::EventSchemas::Discoverer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Properties: SourceArn: !Ref 'SourceArn' Outputs: DiscovererArn: Value: GetAtt: - Resource - DiscovererArn DiscovererId: Value: GetAtt: - Resource - DiscovererId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Discoverer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Parameters: SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-sourcearn Resources: Resource: Type: AWS::EventSchemas::Discoverer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Properties: SourceArn: !Ref 'SourceArn' Outputs: DiscovererArn: Value: GetAtt: - Resource - DiscovererArn DiscovererId: Value: GetAtt: - Resource - DiscovererId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Discoverer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Parameters: SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-sourcearn Resources: Resource: Type: AWS::EventSchemas::Discoverer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Properties: SourceArn: !Ref 'SourceArn' Outputs: DiscovererArn: Value: GetAtt: - Resource - DiscovererArn DiscovererId: Value: GetAtt: - Resource - DiscovererId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Discoverer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Parameters: SourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-sourcearn Resources: Resource: Type: AWS::EventSchemas::Discoverer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html Properties: SourceArn: !Ref 'SourceArn' Outputs: DiscovererArn: Value: GetAtt: - Resource - DiscovererArn DiscovererId: Value: GetAtt: - Resource - DiscovererId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Registry/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Resources: Resource: Type: AWS::EventSchemas::Registry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Outputs: RegistryName: Value: GetAtt: - Resource - RegistryName RegistryArn: Value: GetAtt: - Resource - RegistryArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Registry/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Resources: Resource: Type: AWS::EventSchemas::Registry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Outputs: RegistryName: Value: GetAtt: - Resource - RegistryName RegistryArn: Value: GetAtt: - Resource - RegistryArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Registry/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Resources: Resource: Type: AWS::EventSchemas::Registry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Outputs: RegistryName: Value: GetAtt: - Resource - RegistryName RegistryArn: Value: GetAtt: - Resource - RegistryArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Registry/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Resources: Resource: Type: AWS::EventSchemas::Registry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Outputs: RegistryName: Value: GetAtt: - Resource - RegistryName RegistryArn: Value: GetAtt: - Resource - RegistryArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Registry/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Resources: Resource: Type: AWS::EventSchemas::Registry Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html Outputs: RegistryName: Value: GetAtt: - Resource - RegistryName RegistryArn: Value: GetAtt: - Resource - RegistryArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-RegistryPolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Parameters: Policy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname Resources: Resource: Type: AWS::EventSchemas::RegistryPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html Properties: Policy: !Ref 'Policy' RegistryName: !Ref 'RegistryName' Outputs: Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Schema/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-type Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-content RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-registryname Resources: Resource: Type: AWS::EventSchemas::Schema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Properties: Type: !Ref 'Type' Content: !Ref 'Content' RegistryName: !Ref 'RegistryName' Outputs: SchemaVersion: Value: GetAtt: - Resource - SchemaVersion SchemaArn: Value: GetAtt: - Resource - SchemaArn SchemaName: Value: GetAtt: - Resource - SchemaName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Schema/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-type Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-content RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-registryname Resources: Resource: Type: AWS::EventSchemas::Schema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Properties: Type: !Ref 'Type' Content: !Ref 'Content' RegistryName: !Ref 'RegistryName' Outputs: SchemaVersion: Value: GetAtt: - Resource - SchemaVersion SchemaArn: Value: GetAtt: - Resource - SchemaArn SchemaName: Value: GetAtt: - Resource - SchemaName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Schema/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-type Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-content RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-registryname Resources: Resource: Type: AWS::EventSchemas::Schema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Properties: Type: !Ref 'Type' Content: !Ref 'Content' RegistryName: !Ref 'RegistryName' Outputs: SchemaVersion: Value: GetAtt: - Resource - SchemaVersion SchemaArn: Value: GetAtt: - Resource - SchemaArn SchemaName: Value: GetAtt: - Resource - SchemaName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Schema/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-type Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-content RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-registryname Resources: Resource: Type: AWS::EventSchemas::Schema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Properties: Type: !Ref 'Type' Content: !Ref 'Content' RegistryName: !Ref 'RegistryName' Outputs: SchemaVersion: Value: GetAtt: - Resource - SchemaVersion SchemaArn: Value: GetAtt: - Resource - SchemaArn SchemaName: Value: GetAtt: - Resource - SchemaName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-EventSchemas-Schema/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-type Content: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-content RegistryName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html#cfn-eventschemas-schema-registryname Resources: Resource: Type: AWS::EventSchemas::Schema Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-schema.html Properties: Type: !Ref 'Type' Content: !Ref 'Content' RegistryName: !Ref 'RegistryName' Outputs: SchemaVersion: Value: GetAtt: - Resource - SchemaVersion SchemaArn: Value: GetAtt: - Resource - SchemaArn SchemaName: Value: GetAtt: - Resource - SchemaName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBus/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name Resources: Resource: Type: AWS::Events::EventBus Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html Properties: Name: !Ref 'Name' Outputs: Policy: Value: GetAtt: - Resource - Policy Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-EventBusPolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action StatementId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal Resources: Resource: Type: AWS::Events::EventBusPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html Properties: Action: !Ref 'Action' StatementId: !Ref 'StatementId' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Events-Rule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Resources: Resource: Type: AWS::Events::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-NotificationChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Parameters: SnsRoleName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn Resources: Resource: Type: AWS::FMS::NotificationChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html Properties: SnsRoleName: !Ref 'SnsRoleName' SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FMS-Policy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Parameters: ExcludeResourceTags: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-excluderesourcetags AllowedValues: - 'true' - 'false' PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-policyname RemediationEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-remediationenabled AllowedValues: - 'true' - 'false' ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcetype SecurityServicePolicyData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-securityservicepolicydata Resources: Resource: Type: AWS::FMS::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html Properties: ExcludeResourceTags: !Ref 'ExcludeResourceTags' PolicyName: !Ref 'PolicyName' RemediationEnabled: !Ref 'RemediationEnabled' ResourceType: !Ref 'ResourceType' SecurityServicePolicyData: !Ref 'SecurityServicePolicyData' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FSx-FileSystem/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: FileSystemType: !Ref 'FileSystemType' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FSx-FileSystem/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: FileSystemType: !Ref 'FileSystemType' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FSx-FileSystem/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: FileSystemType: !Ref 'FileSystemType' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FSx-FileSystem/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: FileSystemType: !Ref 'FileSystemType' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FSx-FileSystem/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: FileSystemType: !Ref 'FileSystemType' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FSx-FileSystem/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: FileSystemType: !Ref 'FileSystemType' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FSx-FileSystem/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: FileSystemType: !Ref 'FileSystemType' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FSx-FileSystem/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: FileSystemType: !Ref 'FileSystemType' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FSx-FileSystem/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: FileSystemType: !Ref 'FileSystemType' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-FSx-FileSystem/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Parameters: FileSystemType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html#cfn-fsx-filesystem-filesystemtype Resources: Resource: Type: AWS::FSx::FileSystem Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-filesystem.html Properties: FileSystemType: !Ref 'FileSystemType' Outputs: LustreMountName: Value: GetAtt: - Resource - LustreMountName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Alias/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name RoutingStrategyType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type Resources: Resource: Type: AWS::GameLift::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html Properties: Name: !Ref 'Name' RoutingStrategy: Type: !Ref 'RoutingStrategyType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Build/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html Resources: Resource: Type: AWS::GameLift::Build Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Fleet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Parameters: EC2InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Resources: Resource: Type: AWS::GameLift::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html Properties: EC2InstanceType: !Ref 'EC2InstanceType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-GameSessionQueue/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-GameSessionQueue/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-GameSessionQueue/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-GameSessionQueue/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-GameSessionQueue/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-GameSessionQueue/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-GameSessionQueue/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-GameSessionQueue/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-GameSessionQueue/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-GameSessionQueue/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-GameSessionQueue/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-GameSessionQueue/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-GameSessionQueue/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-GameSessionQueue/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name Resources: Resource: Type: AWS::GameLift::GameSessionQueue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: Name: !Ref 'Name' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: Name: !Ref 'Name' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: Name: !Ref 'Name' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: Name: !Ref 'Name' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: Name: !Ref 'Name' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: Name: !Ref 'Name' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: Name: !Ref 'Name' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: Name: !Ref 'Name' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: Name: !Ref 'Name' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: Name: !Ref 'Name' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: Name: !Ref 'Name' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: Name: !Ref 'Name' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: Name: !Ref 'Name' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-name RequestTimeoutSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-requesttimeoutseconds AcceptanceRequired: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-acceptancerequired AllowedValues: - 'true' - 'false' RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html#cfn-gamelift-matchmakingconfiguration-rulesetname Resources: Resource: Type: AWS::GameLift::MatchmakingConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingconfiguration.html Properties: Name: !Ref 'Name' RequestTimeoutSeconds: !Ref 'RequestTimeoutSeconds' AcceptanceRequired: !Ref 'AcceptanceRequired' RuleSetName: !Ref 'RuleSetName' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-MatchmakingRuleSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Parameters: RuleSetBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name Resources: Resource: Type: AWS::GameLift::MatchmakingRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html Properties: RuleSetBody: !Ref 'RuleSetBody' Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Script/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Script/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Script/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Script/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Script/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Script/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Script/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Script/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Script/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Script/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Script/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Script/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Script/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GameLift-Script/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Parameters: S3LocationBucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-bucket S3LocationKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-key S3LocationRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-script-s3location.html#cfn-gamelift-script-s3location-rolearn Resources: Resource: Type: AWS::GameLift::Script Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html Properties: StorageLocation: Bucket: !Ref 'S3LocationBucket' Key: !Ref 'S3LocationKey' RoleArn: !Ref 'S3LocationRoleArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Accelerator/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html#cfn-globalaccelerator-accelerator-name Resources: Resource: Type: AWS::GlobalAccelerator::Accelerator Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html Properties: Name: !Ref 'Name' Outputs: DnsName: Value: GetAtt: - Resource - DnsName AcceleratorArn: Value: GetAtt: - Resource - AcceleratorArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-EndpointGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Parameters: ListenerArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-listenerarn EndpointGroupRegion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html#cfn-globalaccelerator-endpointgroup-endpointgroupregion Resources: Resource: Type: AWS::GlobalAccelerator::EndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-endpointgroup.html Properties: ListenerArn: !Ref 'ListenerArn' EndpointGroupRegion: !Ref 'EndpointGroupRegion' Outputs: EndpointGroupArn: Value: GetAtt: - Resource - EndpointGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GlobalAccelerator-Listener/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Parameters: AcceleratorArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-acceleratorarn Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html#cfn-globalaccelerator-listener-protocol Resources: Resource: Type: AWS::GlobalAccelerator::Listener Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-listener.html Properties: AcceleratorArn: !Ref 'AcceleratorArn' Protocol: !Ref 'Protocol' Outputs: ListenerArn: Value: GetAtt: - Resource - ListenerArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Classifier/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html Resources: Resource: Type: AWS::Glue::Classifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Connection/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Parameters: ConnectionInputConnectionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype ConnectionInputConnectionProperties: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid Resources: Resource: Type: AWS::Glue::Connection Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html Properties: ConnectionInput: ConnectionType: !Ref 'ConnectionInputConnectionType' ConnectionProperties: !Ref 'ConnectionInputConnectionProperties' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Crawler/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role Resources: Resource: Type: AWS::Glue::Crawler Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html Properties: Role: !Ref 'Role' Targets: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DataCatalogEncryptionSettings/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html#cfn-glue-datacatalogencryptionsettings-catalogid Resources: Resource: Type: AWS::Glue::DataCatalogEncryptionSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-datacatalogencryptionsettings.html Properties: DataCatalogEncryptionSettings: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Database/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Parameters: CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid Resources: Resource: Type: AWS::Glue::Database Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html Properties: DatabaseInput: {} CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-DevEndpoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn Resources: Resource: Type: AWS::Glue::DevEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html Properties: RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Job/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role Resources: Resource: Type: AWS::Glue::Job Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html Properties: Role: !Ref 'Role' Command: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-MLTransform/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html#cfn-glue-mltransform-role TransformParametersTransformType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype Resources: Resource: Type: AWS::Glue::MLTransform Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html Properties: Role: !Ref 'Role' TransformParameters: TransformType: !Ref 'TransformParametersTransformType' InputRecordTables: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Partition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Parameters: TableName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid Resources: Resource: Type: AWS::Glue::Partition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html Properties: TableName: !Ref 'TableName' DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' PartitionInput: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-SecurityConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html#cfn-glue-securityconfiguration-name Resources: Resource: Type: AWS::Glue::SecurityConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.html Properties: EncryptionConfiguration: {} Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Table/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Parameters: DatabaseName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename CatalogId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid Resources: Resource: Type: AWS::Glue::Table Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html Properties: TableInput: {} DatabaseName: !Ref 'DatabaseName' CatalogId: !Ref 'CatalogId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Trigger/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type Resources: Resource: Type: AWS::Glue::Trigger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html Properties: Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Glue-Workflow/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html Resources: Resource: Type: AWS::Glue::Workflow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name Resources: Resource: Type: AWS::Greengrass::ConnectorDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ConnectorDefinitionVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Parameters: ConnectorDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html#cfn-greengrass-connectordefinitionversion-connectordefinitionid Resources: Resource: Type: AWS::Greengrass::ConnectorDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinitionversion.html Properties: ConnectorDefinitionId: !Ref 'ConnectorDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html#cfn-greengrass-coredefinition-name Resources: Resource: Type: AWS::Greengrass::CoreDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-CoreDefinitionVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Parameters: CoreDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid Resources: Resource: Type: AWS::Greengrass::CoreDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html Properties: CoreDefinitionId: !Ref 'CoreDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html#cfn-greengrass-devicedefinition-name Resources: Resource: Type: AWS::Greengrass::DeviceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-DeviceDefinitionVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Parameters: DeviceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html#cfn-greengrass-devicedefinitionversion-devicedefinitionid Resources: Resource: Type: AWS::Greengrass::DeviceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html Properties: DeviceDefinitionId: !Ref 'DeviceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html#cfn-greengrass-functiondefinition-name Resources: Resource: Type: AWS::Greengrass::FunctionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-FunctionDefinitionVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Parameters: FunctionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html#cfn-greengrass-functiondefinitionversion-functiondefinitionid Resources: Resource: Type: AWS::Greengrass::FunctionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-functiondefinitionversion.html Properties: FunctionDefinitionId: !Ref 'FunctionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-Group/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-Group/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-Group/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-Group/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-Group/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-Group/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-Group/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-Group/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-Group/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-Group/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-Group/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html#cfn-greengrass-group-name Resources: Resource: Type: AWS::Greengrass::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html Properties: Name: !Ref 'Name' Outputs: RoleAttachedAt: Value: GetAtt: - Resource - RoleAttachedAt LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn RoleArn: Value: GetAtt: - Resource - RoleArn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-GroupVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-GroupVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-GroupVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-GroupVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-GroupVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-GroupVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-GroupVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-GroupVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-GroupVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-GroupVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-GroupVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Parameters: GroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html#cfn-greengrass-groupversion-groupid Resources: Resource: Type: AWS::Greengrass::GroupVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-groupversion.html Properties: GroupId: !Ref 'GroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name Resources: Resource: Type: AWS::Greengrass::LoggerDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-LoggerDefinitionVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Parameters: LoggerDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html#cfn-greengrass-loggerdefinitionversion-loggerdefinitionid Resources: Resource: Type: AWS::Greengrass::LoggerDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinitionversion.html Properties: LoggerDefinitionId: !Ref 'LoggerDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html#cfn-greengrass-resourcedefinition-name Resources: Resource: Type: AWS::Greengrass::ResourceDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-ResourceDefinitionVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Parameters: ResourceDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html#cfn-greengrass-resourcedefinitionversion-resourcedefinitionid Resources: Resource: Type: AWS::Greengrass::ResourceDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-resourcedefinitionversion.html Properties: ResourceDefinitionId: !Ref 'ResourceDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html#cfn-greengrass-subscriptiondefinition-name Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinition.html Properties: Name: !Ref 'Name' Outputs: LatestVersionArn: Value: GetAtt: - Resource - LatestVersionArn Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Greengrass-SubscriptionDefinitionVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Parameters: SubscriptionDefinitionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html#cfn-greengrass-subscriptiondefinitionversion-subscriptiondefinitionid Resources: Resource: Type: AWS::Greengrass::SubscriptionDefinitionVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-subscriptiondefinitionversion.html Properties: SubscriptionDefinitionId: !Ref 'SubscriptionDefinitionId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-Config/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-name ConfigData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-configdata Resources: Resource: Type: AWS::GroundStation::Config Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Properties: Name: !Ref 'Name' ConfigData: !Ref 'ConfigData' Outputs: Type: Value: GetAtt: - Resource - Type Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-Config/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-name ConfigData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-configdata Resources: Resource: Type: AWS::GroundStation::Config Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Properties: Name: !Ref 'Name' ConfigData: !Ref 'ConfigData' Outputs: Type: Value: GetAtt: - Resource - Type Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-Config/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-name ConfigData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-configdata Resources: Resource: Type: AWS::GroundStation::Config Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Properties: Name: !Ref 'Name' ConfigData: !Ref 'ConfigData' Outputs: Type: Value: GetAtt: - Resource - Type Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-Config/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-name ConfigData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-configdata Resources: Resource: Type: AWS::GroundStation::Config Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Properties: Name: !Ref 'Name' ConfigData: !Ref 'ConfigData' Outputs: Type: Value: GetAtt: - Resource - Type Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-Config/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-name ConfigData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-configdata Resources: Resource: Type: AWS::GroundStation::Config Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Properties: Name: !Ref 'Name' ConfigData: !Ref 'ConfigData' Outputs: Type: Value: GetAtt: - Resource - Type Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-Config/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-name ConfigData: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#cfn-groundstation-config-configdata Resources: Resource: Type: AWS::GroundStation::Config Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html Properties: Name: !Ref 'Name' ConfigData: !Ref 'ConfigData' Outputs: Type: Value: GetAtt: - Resource - Type Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-DataflowEndpointGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Resources: Resource: Type: AWS::GroundStation::DataflowEndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Status: Value: GetAtt: - Resource - Status ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-DataflowEndpointGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Resources: Resource: Type: AWS::GroundStation::DataflowEndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Status: Value: GetAtt: - Resource - Status ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-DataflowEndpointGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Resources: Resource: Type: AWS::GroundStation::DataflowEndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Status: Value: GetAtt: - Resource - Status ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-DataflowEndpointGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Resources: Resource: Type: AWS::GroundStation::DataflowEndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Status: Value: GetAtt: - Resource - Status ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-DataflowEndpointGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Resources: Resource: Type: AWS::GroundStation::DataflowEndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Status: Value: GetAtt: - Resource - Status ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-DataflowEndpointGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Resources: Resource: Type: AWS::GroundStation::DataflowEndpointGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Status: Value: GetAtt: - Resource - Status ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-MissionProfile/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-name MinimumViableContactDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-minimumviablecontactdurationseconds TrackingConfigArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-trackingconfigarn Resources: Resource: Type: AWS::GroundStation::MissionProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Properties: Name: !Ref 'Name' MinimumViableContactDurationSeconds: !Ref 'MinimumViableContactDurationSeconds' TrackingConfigArn: !Ref 'TrackingConfigArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Region: Value: GetAtt: - Resource - Region ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-MissionProfile/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-name MinimumViableContactDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-minimumviablecontactdurationseconds TrackingConfigArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-trackingconfigarn Resources: Resource: Type: AWS::GroundStation::MissionProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Properties: Name: !Ref 'Name' MinimumViableContactDurationSeconds: !Ref 'MinimumViableContactDurationSeconds' TrackingConfigArn: !Ref 'TrackingConfigArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Region: Value: GetAtt: - Resource - Region ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-MissionProfile/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-name MinimumViableContactDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-minimumviablecontactdurationseconds TrackingConfigArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-trackingconfigarn Resources: Resource: Type: AWS::GroundStation::MissionProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Properties: Name: !Ref 'Name' MinimumViableContactDurationSeconds: !Ref 'MinimumViableContactDurationSeconds' TrackingConfigArn: !Ref 'TrackingConfigArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Region: Value: GetAtt: - Resource - Region ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-MissionProfile/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-name MinimumViableContactDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-minimumviablecontactdurationseconds TrackingConfigArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-trackingconfigarn Resources: Resource: Type: AWS::GroundStation::MissionProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Properties: Name: !Ref 'Name' MinimumViableContactDurationSeconds: !Ref 'MinimumViableContactDurationSeconds' TrackingConfigArn: !Ref 'TrackingConfigArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Region: Value: GetAtt: - Resource - Region ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-MissionProfile/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-name MinimumViableContactDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-minimumviablecontactdurationseconds TrackingConfigArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-trackingconfigarn Resources: Resource: Type: AWS::GroundStation::MissionProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Properties: Name: !Ref 'Name' MinimumViableContactDurationSeconds: !Ref 'MinimumViableContactDurationSeconds' TrackingConfigArn: !Ref 'TrackingConfigArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Region: Value: GetAtt: - Resource - Region ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GroundStation-MissionProfile/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-name MinimumViableContactDurationSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-minimumviablecontactdurationseconds TrackingConfigArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-trackingconfigarn Resources: Resource: Type: AWS::GroundStation::MissionProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html Properties: Name: !Ref 'Name' MinimumViableContactDurationSeconds: !Ref 'MinimumViableContactDurationSeconds' TrackingConfigArn: !Ref 'TrackingConfigArn' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Region: Value: GetAtt: - Resource - Region ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Detector/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Parameters: Enable: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::GuardDuty::Detector Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html Properties: Enable: !Ref 'Enable' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Filter/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: {} Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Filter/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: {} Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Filter/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: {} Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Filter/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: {} Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Filter/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: {} Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Filter/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: {} Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Filter/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: {} Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Filter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: {} Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Filter/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: {} Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Filter/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: {} Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Filter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: {} Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Filter/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: {} Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Filter/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: {} Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Filter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-action Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-description DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid Rank: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-rank Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-name Resources: Resource: Type: AWS::GuardDuty::Filter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html Properties: Action: !Ref 'Action' Description: !Ref 'Description' DetectorId: !Ref 'DetectorId' FindingCriteria: {} Rank: !Ref 'Rank' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-IPSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-IPSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-IPSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-IPSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-IPSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-IPSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-IPSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-IPSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-IPSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-IPSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-IPSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-IPSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-IPSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-IPSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location Resources: Resource: Type: AWS::GuardDuty::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Master/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Master/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Master/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Master/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Master/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Master/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Master/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Master/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Master/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Master/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Master/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Master/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Master/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Master/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Parameters: DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid MasterId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid Resources: Resource: Type: AWS::GuardDuty::Master Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html Properties: DetectorId: !Ref 'DetectorId' MasterId: !Ref 'MasterId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Member/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: MemberId: !Ref 'MemberId' Email: !Ref 'Email' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Member/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: MemberId: !Ref 'MemberId' Email: !Ref 'Email' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Member/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: MemberId: !Ref 'MemberId' Email: !Ref 'Email' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Member/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: MemberId: !Ref 'MemberId' Email: !Ref 'Email' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Member/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: MemberId: !Ref 'MemberId' Email: !Ref 'Email' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Member/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: MemberId: !Ref 'MemberId' Email: !Ref 'Email' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Member/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: MemberId: !Ref 'MemberId' Email: !Ref 'Email' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Member/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: MemberId: !Ref 'MemberId' Email: !Ref 'Email' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Member/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: MemberId: !Ref 'MemberId' Email: !Ref 'Email' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Member/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: MemberId: !Ref 'MemberId' Email: !Ref 'Email' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Member/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: MemberId: !Ref 'MemberId' Email: !Ref 'Email' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Member/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: MemberId: !Ref 'MemberId' Email: !Ref 'Email' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Member/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: MemberId: !Ref 'MemberId' Email: !Ref 'Email' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-Member/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid Email: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid Resources: Resource: Type: AWS::GuardDuty::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html Properties: MemberId: !Ref 'MemberId' Email: !Ref 'Email' DetectorId: !Ref 'DetectorId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-GuardDuty-ThreatIntelSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Parameters: Format: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format Activate: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate AllowedValues: - 'true' - 'false' DetectorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location Resources: Resource: Type: AWS::GuardDuty::ThreatIntelSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html Properties: Format: !Ref 'Format' Activate: !Ref 'Activate' DetectorId: !Ref 'DetectorId' Location: !Ref 'Location' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-AccessKey/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Parameters: UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html#cfn-iam-accesskey-username Resources: Resource: Type: AWS::IAM::AccessKey Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html Properties: UserName: !Ref 'UserName' Outputs: SecretAccessKey: Value: GetAtt: - Resource - SecretAccessKey ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Group/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Resources: Resource: Type: AWS::IAM::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-InstanceProfile/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Resources: Resource: Type: AWS::IAM::InstanceProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ManagedPolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html#cfn-iam-managedpolicy-policydocument Resources: Resource: Type: AWS::IAM::ManagedPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Policy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname Resources: Resource: Type: AWS::IAM::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' PolicyName: !Ref 'PolicyName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-Role/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Parameters: AssumeRolePolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#cfn-iam-role-assumerolepolicydocument Resources: Resource: Type: AWS::IAM::Role Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html Properties: AssumeRolePolicyDocument: !Ref 'AssumeRolePolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn RoleId: Value: GetAtt: - Resource - RoleId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-ServiceLinkedRole/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Parameters: AWSServiceName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html#cfn-iam-servicelinkedrole-awsservicename Resources: Resource: Type: AWS::IAM::ServiceLinkedRole Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-servicelinkedrole.html Properties: AWSServiceName: !Ref 'AWSServiceName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-User/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Resources: Resource: Type: AWS::IAM::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IAM-UserToGroupAddition/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Parameters: GroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname Resources: Resource: Type: AWS::IAM::UserToGroupAddition Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html Properties: GroupName: !Ref 'GroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Component/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version Platform: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform Resources: Resource: Type: AWS::ImageBuilder::Component Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' Platform: !Ref 'Platform' Outputs: Arn: Value: GetAtt: - Resource - Arn Type: Value: GetAtt: - Resource - Type Encrypted: Value: GetAtt: - Resource - Encrypted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-DistributionConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html#cfn-imagebuilder-distributionconfiguration-name Resources: Resource: Type: AWS::ImageBuilder::DistributionConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-distributionconfiguration.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-Image/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Parameters: ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::Image Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html Properties: ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ImageId: Value: GetAtt: - Resource - ImageId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImagePipeline/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-name ImageRecipeArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-imagerecipearn InfrastructureConfigurationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-infrastructureconfigurationarn Resources: Resource: Type: AWS::ImageBuilder::ImagePipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html Properties: Name: !Ref 'Name' ImageRecipeArn: !Ref 'ImageRecipeArn' InfrastructureConfigurationArn: !Ref 'InfrastructureConfigurationArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-ImageRecipe/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-name Version: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version ParentImage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage Resources: Resource: Type: AWS::ImageBuilder::ImageRecipe Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html Properties: Name: !Ref 'Name' Version: !Ref 'Version' ParentImage: !Ref 'ParentImage' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ImageBuilder-InfrastructureConfiguration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-name InstanceProfileName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename Resources: Resource: Type: AWS::ImageBuilder::InfrastructureConfiguration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html Properties: Name: !Ref 'Name' InstanceProfileName: !Ref 'InstanceProfileName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTarget/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTarget/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTarget/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTarget/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTarget/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTarget/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTarget/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTarget/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTarget/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTarget/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTarget/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTarget/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Resources: Resource: Type: AWS::Inspector::AssessmentTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-AssessmentTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Parameters: AssessmentTargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn DurationInSeconds: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds Resources: Resource: Type: AWS::Inspector::AssessmentTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html Properties: AssessmentTargetArn: !Ref 'AssessmentTargetArn' DurationInSeconds: !Ref 'DurationInSeconds' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-ResourceGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-ResourceGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-ResourceGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-ResourceGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-ResourceGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-ResourceGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-ResourceGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-ResourceGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-ResourceGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-ResourceGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-ResourceGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Inspector-ResourceGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Resources: Resource: Type: AWS::Inspector::ResourceGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: Status: !Ref 'Status' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Certificate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Parameters: CertificateSigningRequest: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest Status: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status Resources: Resource: Type: AWS::IoT::Certificate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html Properties: CertificateSigningRequest: !Ref 'CertificateSigningRequest' Status: !Ref 'Status' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Policy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument Resources: Resource: Type: AWS::IoT::Policy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-PolicyPrincipalAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Parameters: PolicyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal Resources: Resource: Type: AWS::IoT::PolicyPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html Properties: PolicyName: !Ref 'PolicyName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ProvisioningTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Parameters: ProvisioningRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-provisioningrolearn TemplateBody: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html#cfn-iot-provisioningtemplate-templatebody Resources: Resource: Type: AWS::IoT::ProvisioningTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-provisioningtemplate.html Properties: ProvisioningRoleArn: !Ref 'ProvisioningRoleArn' TemplateBody: !Ref 'TemplateBody' Outputs: TemplateArn: Value: GetAtt: - Resource - TemplateArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-Thing/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html Resources: Resource: Type: AWS::IoT::Thing Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-ThingPrincipalAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Parameters: Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal ThingName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname Resources: Resource: Type: AWS::IoT::ThingPrincipalAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html Properties: Principal: !Ref 'Principal' ThingName: !Ref 'ThingName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT-TopicRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Parameters: TopicRulePayloadRuleDisabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled AllowedValues: - 'true' - 'false' TopicRulePayloadSql: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql Resources: Resource: Type: AWS::IoT::TopicRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html Properties: TopicRulePayload: RuleDisabled: !Ref 'TopicRulePayloadRuleDisabled' Sql: !Ref 'TopicRulePayloadSql' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Device/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Parameters: DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-deviceid Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoT1Click::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Properties: DeviceId: !Ref 'DeviceId' Enabled: !Ref 'Enabled' Outputs: DeviceId: Value: GetAtt: - Resource - DeviceId Enabled: Value: GetAtt: - Resource - Enabled Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Device/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Parameters: DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-deviceid Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoT1Click::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Properties: DeviceId: !Ref 'DeviceId' Enabled: !Ref 'Enabled' Outputs: DeviceId: Value: GetAtt: - Resource - DeviceId Enabled: Value: GetAtt: - Resource - Enabled Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Device/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Parameters: DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-deviceid Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoT1Click::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Properties: DeviceId: !Ref 'DeviceId' Enabled: !Ref 'Enabled' Outputs: DeviceId: Value: GetAtt: - Resource - DeviceId Enabled: Value: GetAtt: - Resource - Enabled Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Device/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Parameters: DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-deviceid Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoT1Click::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Properties: DeviceId: !Ref 'DeviceId' Enabled: !Ref 'Enabled' Outputs: DeviceId: Value: GetAtt: - Resource - DeviceId Enabled: Value: GetAtt: - Resource - Enabled Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Device/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Parameters: DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-deviceid Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoT1Click::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Properties: DeviceId: !Ref 'DeviceId' Enabled: !Ref 'Enabled' Outputs: DeviceId: Value: GetAtt: - Resource - DeviceId Enabled: Value: GetAtt: - Resource - Enabled Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Device/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Parameters: DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-deviceid Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoT1Click::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Properties: DeviceId: !Ref 'DeviceId' Enabled: !Ref 'Enabled' Outputs: DeviceId: Value: GetAtt: - Resource - DeviceId Enabled: Value: GetAtt: - Resource - Enabled Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Device/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Parameters: DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-deviceid Enabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#cfn-iot1click-device-enabled AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::IoT1Click::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html Properties: DeviceId: !Ref 'DeviceId' Enabled: !Ref 'Enabled' Outputs: DeviceId: Value: GetAtt: - Resource - DeviceId Enabled: Value: GetAtt: - Resource - Enabled Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Placement/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Parameters: ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-projectname Resources: Resource: Type: AWS::IoT1Click::Placement Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Properties: ProjectName: !Ref 'ProjectName' Outputs: PlacementName: Value: GetAtt: - Resource - PlacementName ProjectName: Value: GetAtt: - Resource - ProjectName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Placement/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Parameters: ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-projectname Resources: Resource: Type: AWS::IoT1Click::Placement Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Properties: ProjectName: !Ref 'ProjectName' Outputs: PlacementName: Value: GetAtt: - Resource - PlacementName ProjectName: Value: GetAtt: - Resource - ProjectName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Placement/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Parameters: ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-projectname Resources: Resource: Type: AWS::IoT1Click::Placement Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Properties: ProjectName: !Ref 'ProjectName' Outputs: PlacementName: Value: GetAtt: - Resource - PlacementName ProjectName: Value: GetAtt: - Resource - ProjectName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Placement/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Parameters: ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-projectname Resources: Resource: Type: AWS::IoT1Click::Placement Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Properties: ProjectName: !Ref 'ProjectName' Outputs: PlacementName: Value: GetAtt: - Resource - PlacementName ProjectName: Value: GetAtt: - Resource - ProjectName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Placement/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Parameters: ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-projectname Resources: Resource: Type: AWS::IoT1Click::Placement Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Properties: ProjectName: !Ref 'ProjectName' Outputs: PlacementName: Value: GetAtt: - Resource - PlacementName ProjectName: Value: GetAtt: - Resource - ProjectName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Placement/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Parameters: ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-projectname Resources: Resource: Type: AWS::IoT1Click::Placement Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Properties: ProjectName: !Ref 'ProjectName' Outputs: PlacementName: Value: GetAtt: - Resource - PlacementName ProjectName: Value: GetAtt: - Resource - ProjectName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Placement/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Parameters: ProjectName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#cfn-iot1click-placement-projectname Resources: Resource: Type: AWS::IoT1Click::Placement Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html Properties: ProjectName: !Ref 'ProjectName' Outputs: PlacementName: Value: GetAtt: - Resource - PlacementName ProjectName: Value: GetAtt: - Resource - ProjectName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Project/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Resources: Resource: Type: AWS::IoT1Click::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Properties: PlacementTemplate: {} Outputs: ProjectName: Value: GetAtt: - Resource - ProjectName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Project/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Resources: Resource: Type: AWS::IoT1Click::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Properties: PlacementTemplate: {} Outputs: ProjectName: Value: GetAtt: - Resource - ProjectName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Project/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Resources: Resource: Type: AWS::IoT1Click::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Properties: PlacementTemplate: {} Outputs: ProjectName: Value: GetAtt: - Resource - ProjectName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Project/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Resources: Resource: Type: AWS::IoT1Click::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Properties: PlacementTemplate: {} Outputs: ProjectName: Value: GetAtt: - Resource - ProjectName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Project/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Resources: Resource: Type: AWS::IoT1Click::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Properties: PlacementTemplate: {} Outputs: ProjectName: Value: GetAtt: - Resource - ProjectName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Project/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Resources: Resource: Type: AWS::IoT1Click::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Properties: PlacementTemplate: {} Outputs: ProjectName: Value: GetAtt: - Resource - ProjectName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoT1Click-Project/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Resources: Resource: Type: AWS::IoT1Click::Project Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html Properties: PlacementTemplate: {} Outputs: ProjectName: Value: GetAtt: - Resource - ProjectName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Channel/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Resources: Resource: Type: AWS::IoTAnalytics::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Channel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Resources: Resource: Type: AWS::IoTAnalytics::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Channel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Resources: Resource: Type: AWS::IoTAnalytics::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Channel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Resources: Resource: Type: AWS::IoTAnalytics::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Channel/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Resources: Resource: Type: AWS::IoTAnalytics::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Channel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html Resources: Resource: Type: AWS::IoTAnalytics::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Dataset/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Resources: Resource: Type: AWS::IoTAnalytics::Dataset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Dataset/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Resources: Resource: Type: AWS::IoTAnalytics::Dataset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Dataset/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Resources: Resource: Type: AWS::IoTAnalytics::Dataset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Dataset/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Resources: Resource: Type: AWS::IoTAnalytics::Dataset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Dataset/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Resources: Resource: Type: AWS::IoTAnalytics::Dataset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Dataset/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html Resources: Resource: Type: AWS::IoTAnalytics::Dataset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-dataset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Datastore/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Resources: Resource: Type: AWS::IoTAnalytics::Datastore Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Datastore/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Resources: Resource: Type: AWS::IoTAnalytics::Datastore Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Datastore/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Resources: Resource: Type: AWS::IoTAnalytics::Datastore Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Datastore/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Resources: Resource: Type: AWS::IoTAnalytics::Datastore Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Datastore/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Resources: Resource: Type: AWS::IoTAnalytics::Datastore Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Datastore/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html Resources: Resource: Type: AWS::IoTAnalytics::Datastore Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Pipeline/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Resources: Resource: Type: AWS::IoTAnalytics::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Pipeline/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Resources: Resource: Type: AWS::IoTAnalytics::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Pipeline/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Resources: Resource: Type: AWS::IoTAnalytics::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Pipeline/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Resources: Resource: Type: AWS::IoTAnalytics::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Pipeline/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Resources: Resource: Type: AWS::IoTAnalytics::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTAnalytics-Pipeline/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html Resources: Resource: Type: AWS::IoTAnalytics::Pipeline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-DetectorModel/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-DetectorModel/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-DetectorModel/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-DetectorModel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-DetectorModel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-DetectorModel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-DetectorModel/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-DetectorModel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-DetectorModel/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-DetectorModel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html Resources: Resource: Type: AWS::IoTEvents::DetectorModel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-Input/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-Input/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-Input/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-Input/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-Input/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-Input/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-Input/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-Input/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-Input/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTEvents-Input/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html Resources: Resource: Type: AWS::IoTEvents::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTThingsGraph-FlowTemplate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Parameters: DefinitionDocumentLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-language DefinitionDocumentText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-text Resources: Resource: Type: AWS::IoTThingsGraph::FlowTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Properties: Definition: Language: !Ref 'DefinitionDocumentLanguage' Text: !Ref 'DefinitionDocumentText' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTThingsGraph-FlowTemplate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Parameters: DefinitionDocumentLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-language DefinitionDocumentText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-text Resources: Resource: Type: AWS::IoTThingsGraph::FlowTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Properties: Definition: Language: !Ref 'DefinitionDocumentLanguage' Text: !Ref 'DefinitionDocumentText' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTThingsGraph-FlowTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Parameters: DefinitionDocumentLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-language DefinitionDocumentText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-text Resources: Resource: Type: AWS::IoTThingsGraph::FlowTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Properties: Definition: Language: !Ref 'DefinitionDocumentLanguage' Text: !Ref 'DefinitionDocumentText' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTThingsGraph-FlowTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Parameters: DefinitionDocumentLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-language DefinitionDocumentText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-text Resources: Resource: Type: AWS::IoTThingsGraph::FlowTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Properties: Definition: Language: !Ref 'DefinitionDocumentLanguage' Text: !Ref 'DefinitionDocumentText' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-IoTThingsGraph-FlowTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Parameters: DefinitionDocumentLanguage: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-language DefinitionDocumentText: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-text Resources: Resource: Type: AWS::IoTThingsGraph::FlowTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html Properties: Definition: Language: !Ref 'DefinitionDocumentLanguage' Text: !Ref 'DefinitionDocumentText' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Alias/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Parameters: AliasName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname TargetKeyId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid Resources: Resource: Type: AWS::KMS::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html Properties: AliasName: !Ref 'AliasName' TargetKeyId: !Ref 'TargetKeyId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KMS-Key/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Parameters: KeyPolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy Resources: Resource: Type: AWS::KMS::Key Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html Properties: KeyPolicy: !Ref 'KeyPolicy' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-Stream/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Parameters: ShardCount: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html#cfn-kinesis-stream-shardcount Resources: Resource: Type: AWS::Kinesis::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html Properties: ShardCount: !Ref 'ShardCount' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Kinesis-StreamConsumer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Parameters: ConsumerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername StreamARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn Resources: Resource: Type: AWS::Kinesis::StreamConsumer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html Properties: ConsumerName: !Ref 'ConsumerName' StreamARN: !Ref 'StreamARN' Outputs: ConsumerCreationTimestamp: Value: GetAtt: - Resource - ConsumerCreationTimestamp ConsumerName: Value: GetAtt: - Resource - ConsumerName ConsumerARN: Value: GetAtt: - Resource - ConsumerARN ConsumerStatus: Value: GetAtt: - Resource - ConsumerStatus StreamARN: Value: GetAtt: - Resource - StreamARN ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-Application/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-Application/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-Application/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-Application/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-Application/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-Application/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-Application/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-Application/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-Application/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html Resources: Resource: Type: AWS::KinesisAnalytics::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationOutput/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalytics-ApplicationReferenceDataSource/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalytics::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: RuntimeEnvironment: !Ref 'RuntimeEnvironment' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: RuntimeEnvironment: !Ref 'RuntimeEnvironment' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: RuntimeEnvironment: !Ref 'RuntimeEnvironment' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: RuntimeEnvironment: !Ref 'RuntimeEnvironment' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: RuntimeEnvironment: !Ref 'RuntimeEnvironment' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: RuntimeEnvironment: !Ref 'RuntimeEnvironment' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: RuntimeEnvironment: !Ref 'RuntimeEnvironment' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: RuntimeEnvironment: !Ref 'RuntimeEnvironment' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: RuntimeEnvironment: !Ref 'RuntimeEnvironment' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-Application/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Parameters: RuntimeEnvironment: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment ServiceExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole Resources: Resource: Type: AWS::KinesisAnalyticsV2::Application Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html Properties: RuntimeEnvironment: !Ref 'RuntimeEnvironment' ServiceExecutionRole: !Ref 'ServiceExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Parameters: ApplicationName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname CloudWatchLoggingOptionLogStreamARN: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption-logstreamarn Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html Properties: ApplicationName: !Ref 'ApplicationName' CloudWatchLoggingOption: LogStreamARN: !Ref 'CloudWatchLoggingOptionLogStreamARN' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationOutput/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationOutput Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html Properties: ApplicationName: !Ref 'ApplicationName' Output: DestinationSchema: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Parameters: ApplicationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationreferencedatasource-recordformat.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-recordformat-recordformattype Resources: Resource: Type: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html Properties: ApplicationName: !Ref 'ApplicationName' ReferenceDataSource: ReferenceSchema: RecordFormat: RecordFormatType: !Ref 'ReferenceDataSourceReferenceSchemaRecordFormatRecordFormatType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-KinesisFirehose-DeliveryStream/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Resources: Resource: Type: AWS::KinesisFirehose::DeliveryStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-DataLakeSettings/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Resources: Resource: Type: AWS::LakeFormation::DataLakeSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-DataLakeSettings/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Resources: Resource: Type: AWS::LakeFormation::DataLakeSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-DataLakeSettings/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Resources: Resource: Type: AWS::LakeFormation::DataLakeSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-DataLakeSettings/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Resources: Resource: Type: AWS::LakeFormation::DataLakeSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-DataLakeSettings/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html Resources: Resource: Type: AWS::LakeFormation::DataLakeSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-Permissions/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Resources: Resource: Type: AWS::LakeFormation::Permissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Properties: DataLakePrincipal: {} Resource: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-Permissions/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Resources: Resource: Type: AWS::LakeFormation::Permissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Properties: DataLakePrincipal: {} Resource: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-Permissions/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Resources: Resource: Type: AWS::LakeFormation::Permissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Properties: DataLakePrincipal: {} Resource: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-Permissions/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Resources: Resource: Type: AWS::LakeFormation::Permissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Properties: DataLakePrincipal: {} Resource: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-Permissions/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Resources: Resource: Type: AWS::LakeFormation::Permissions Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html Properties: DataLakePrincipal: {} Resource: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-Resource/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-resourcearn UseServiceLinkedRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-useservicelinkedrole AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::LakeFormation::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Properties: ResourceArn: !Ref 'ResourceArn' UseServiceLinkedRole: !Ref 'UseServiceLinkedRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-Resource/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-resourcearn UseServiceLinkedRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-useservicelinkedrole AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::LakeFormation::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Properties: ResourceArn: !Ref 'ResourceArn' UseServiceLinkedRole: !Ref 'UseServiceLinkedRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-Resource/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-resourcearn UseServiceLinkedRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-useservicelinkedrole AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::LakeFormation::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Properties: ResourceArn: !Ref 'ResourceArn' UseServiceLinkedRole: !Ref 'UseServiceLinkedRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-Resource/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-resourcearn UseServiceLinkedRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-useservicelinkedrole AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::LakeFormation::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Properties: ResourceArn: !Ref 'ResourceArn' UseServiceLinkedRole: !Ref 'UseServiceLinkedRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-LakeFormation-Resource/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-resourcearn UseServiceLinkedRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html#cfn-lakeformation-resource-useservicelinkedrole AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::LakeFormation::Resource Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-resource.html Properties: ResourceArn: !Ref 'ResourceArn' UseServiceLinkedRole: !Ref 'UseServiceLinkedRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Alias/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionname FunctionVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-functionversion Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name Resources: Resource: Type: AWS::Lambda::Alias Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html Properties: FunctionName: !Ref 'FunctionName' FunctionVersion: !Ref 'FunctionVersion' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventInvokeConfig/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-functionname Qualifier: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html#cfn-lambda-eventinvokeconfig-qualifier Resources: Resource: Type: AWS::Lambda::EventInvokeConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html Properties: FunctionName: !Ref 'FunctionName' Qualifier: !Ref 'Qualifier' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-EventSourceMapping/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Parameters: EventSourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-eventsourcearn FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#cfn-lambda-eventsourcemapping-functionname Resources: Resource: Type: AWS::Lambda::EventSourceMapping Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html Properties: EventSourceArn: !Ref 'EventSourceArn' FunctionName: !Ref 'FunctionName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Function/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Parameters: Handler: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-handler Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-role Runtime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime Resources: Resource: Type: AWS::Lambda::Function Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html Properties: Code: {} Handler: !Ref 'Handler' Role: !Ref 'Role' Runtime: !Ref 'Runtime' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Parameters: ContentS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket ContentS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key Resources: Resource: Type: AWS::Lambda::LayerVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html Properties: Content: S3Bucket: !Ref 'ContentS3Bucket' S3Key: !Ref 'ContentS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-LayerVersionPermission/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-action LayerVersionArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-layerversionarn Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html#cfn-lambda-layerversionpermission-principal Resources: Resource: Type: AWS::Lambda::LayerVersionPermission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversionpermission.html Properties: Action: !Ref 'Action' LayerVersionArn: !Ref 'LayerVersionArn' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Permission/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Parameters: Action: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-action FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionname Principal: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-principal Resources: Resource: Type: AWS::Lambda::Permission Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html Properties: Action: !Ref 'Action' FunctionName: !Ref 'FunctionName' Principal: !Ref 'Principal' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Lambda-Version/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Parameters: FunctionName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html#cfn-lambda-version-functionname Resources: Resource: Type: AWS::Lambda::Version Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html Properties: FunctionName: !Ref 'FunctionName' Outputs: Version: Value: GetAtt: - Resource - Version ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-Destination/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Parameters: DestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname DestinationPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn TargetArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn Resources: Resource: Type: AWS::Logs::Destination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html Properties: DestinationName: !Ref 'DestinationName' DestinationPolicy: !Ref 'DestinationPolicy' RoleArn: !Ref 'RoleArn' TargetArn: !Ref 'TargetArn' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Resources: Resource: Type: AWS::Logs::LogGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-LogStream/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Parameters: LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname Resources: Resource: Type: AWS::Logs::LogStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html Properties: LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-MetricFilter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Parameters: FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname Resources: Resource: Type: AWS::Logs::MetricFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html Properties: FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Logs-SubscriptionFilter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Parameters: DestinationArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn FilterPattern: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern LogGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname Resources: Resource: Type: AWS::Logs::SubscriptionFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html Properties: DestinationArn: !Ref 'DestinationArn' FilterPattern: !Ref 'FilterPattern' LogGroupName: !Ref 'LogGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MSK-Cluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Parameters: BrokerNodeGroupInfoInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype KafkaVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-kafkaversion NumberOfBrokerNodes: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-numberofbrokernodes ClusterName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clustername Resources: Resource: Type: AWS::MSK::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html Properties: BrokerNodeGroupInfo: InstanceType: !Ref 'BrokerNodeGroupInfoInstanceType' KafkaVersion: !Ref 'KafkaVersion' NumberOfBrokerNodes: !Ref 'NumberOfBrokerNodes' ClusterName: !Ref 'ClusterName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-CustomDataIdentifier/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-name Regex: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html#cfn-macie-customdataidentifier-regex Resources: Resource: Type: AWS::Macie::CustomDataIdentifier Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-customdataidentifier.html Properties: Name: !Ref 'Name' Regex: !Ref 'Regex' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn CreatedAt: Value: GetAtt: - Resource - CreatedAt Deleted: Value: GetAtt: - Resource - Deleted ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-FindingsFilter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-name Resources: Resource: Type: AWS::Macie::FindingsFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html Properties: Name: !Ref 'Name' FindingCriteria: {} Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn FindingsFilterListItems: Value: GetAtt: - Resource - FindingsFilterListItems ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Macie-Session/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Resources: Resource: Type: AWS::Macie::Session Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html Outputs: AwsAccountId: Value: GetAtt: - Resource - AwsAccountId ServiceRole: Value: GetAtt: - Resource - ServiceRole ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Member/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Name: !Ref 'MemberConfigurationName' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Member/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Name: !Ref 'MemberConfigurationName' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Member/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Name: !Ref 'MemberConfigurationName' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Member/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Name: !Ref 'MemberConfigurationName' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Member/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Name: !Ref 'MemberConfigurationName' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Member/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Name: !Ref 'MemberConfigurationName' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Member/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Name: !Ref 'MemberConfigurationName' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Member/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Parameters: MemberConfigurationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name Resources: Resource: Type: AWS::ManagedBlockchain::Member Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html Properties: MemberConfiguration: Name: !Ref 'MemberConfigurationName' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Node/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Node/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Node/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Node/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Node/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Node/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Node/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ManagedBlockchain-Node/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Parameters: MemberId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-memberid NetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html#cfn-managedblockchain-node-networkid NodeConfigurationAvailabilityZone: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-availabilityzone NodeConfigurationInstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-node-nodeconfiguration.html#cfn-managedblockchain-node-nodeconfiguration-instancetype Resources: Resource: Type: AWS::ManagedBlockchain::Node Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-node.html Properties: MemberId: !Ref 'MemberId' NetworkId: !Ref 'NetworkId' NodeConfiguration: AvailabilityZone: !Ref 'NodeConfigurationAvailabilityZone' InstanceType: !Ref 'NodeConfigurationInstanceType' Outputs: MemberId: Value: GetAtt: - Resource - MemberId NodeId: Value: GetAtt: - Resource - NodeId Arn: Value: GetAtt: - Resource - Arn NetworkId: Value: GetAtt: - Resource - NetworkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-JobTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html#cfn-mediaconvert-jobtemplate-settingsjson Resources: Resource: Type: AWS::MediaConvert::JobTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-jobtemplate.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Preset/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Parameters: SettingsJson: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html#cfn-mediaconvert-preset-settingsjson Resources: Resource: Type: AWS::MediaConvert::Preset Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html Properties: SettingsJson: !Ref 'SettingsJson' Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaConvert-Queue/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Resources: Resource: Type: AWS::MediaConvert::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html Outputs: Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Channel/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Channel/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Channel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Channel/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Channel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Channel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Channel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Channel/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Channel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Channel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Resources: Resource: Type: AWS::MediaLive::Channel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html Outputs: Arn: Value: GetAtt: - Resource - Arn Inputs: Value: GetAtt: - Resource - Inputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Input/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Input/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Input/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Input/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Input/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Input/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Input/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Input/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Input/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-Input/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Resources: Resource: Type: AWS::MediaLive::Input Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html Outputs: Destinations: Value: GetAtt: - Resource - Destinations Arn: Value: GetAtt: - Resource - Arn Sources: Value: GetAtt: - Resource - Sources ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaLive-InputSecurityGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Resources: Resource: Type: AWS::MediaLive::InputSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-inputsecuritygroup.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaStore-Container/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: ContainerName: !Ref 'ContainerName' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaStore-Container/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: ContainerName: !Ref 'ContainerName' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaStore-Container/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: ContainerName: !Ref 'ContainerName' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaStore-Container/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: ContainerName: !Ref 'ContainerName' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaStore-Container/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: ContainerName: !Ref 'ContainerName' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaStore-Container/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: ContainerName: !Ref 'ContainerName' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaStore-Container/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: ContainerName: !Ref 'ContainerName' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-MediaStore-Container/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Parameters: ContainerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html#cfn-mediastore-container-containername Resources: Resource: Type: AWS::MediaStore::Container Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediastore-container.html Properties: ContainerName: !Ref 'ContainerName' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBCluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBCluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBCluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBCluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBCluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBCluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBCluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBCluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBCluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBCluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBCluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Resources: Resource: Type: AWS::Neptune::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbcluster.html Outputs: ClusterResourceId: Value: GetAtt: - Resource - ClusterResourceId Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ReadEndpoint: Value: GetAtt: - Resource - ReadEndpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBClusterParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family Resources: Resource: Type: AWS::Neptune::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBInstance/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBInstance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBInstance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBInstance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBInstance/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBInstance/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBInstance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBInstance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBInstance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#cfn-neptune-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::Neptune::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Port: Value: GetAtt: - Resource - Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBParameterGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBParameterGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBParameterGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBParameterGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBParameterGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBParameterGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family Resources: Resource: Type: AWS::Neptune::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html Properties: Description: !Ref 'Description' Parameters: !Ref 'Parameters' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Neptune-DBSubnetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::Neptune::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-CustomerGatewayAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-globalnetworkid CustomerGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-customergatewayarn DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html#cfn-networkmanager-customergatewayassociation-deviceid Resources: Resource: Type: AWS::NetworkManager::CustomerGatewayAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' CustomerGatewayArn: !Ref 'CustomerGatewayArn' DeviceId: !Ref 'DeviceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Device/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html#cfn-networkmanager-device-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Device Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: DeviceArn: Value: GetAtt: - Resource - DeviceArn DeviceId: Value: GetAtt: - Resource - DeviceId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-GlobalNetwork/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Resources: Resource: Type: AWS::NetworkManager::GlobalNetwork Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Link/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid SiteId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid Resources: Resource: Type: AWS::NetworkManager::Link Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' SiteId: !Ref 'SiteId' Bandwidth: {} Outputs: LinkArn: Value: GetAtt: - Resource - LinkArn LinkId: Value: GetAtt: - Resource - LinkId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-LinkAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid DeviceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid LinkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid Resources: Resource: Type: AWS::NetworkManager::LinkAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' DeviceId: !Ref 'DeviceId' LinkId: !Ref 'LinkId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-Site/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid Resources: Resource: Type: AWS::NetworkManager::Site Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' Outputs: SiteArn: Value: GetAtt: - Resource - SiteArn SiteId: Value: GetAtt: - Resource - SiteId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-NetworkManager-TransitGatewayRegistration/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Parameters: GlobalNetworkId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-globalnetworkid TransitGatewayArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html#cfn-networkmanager-transitgatewayregistration-transitgatewayarn Resources: Resource: Type: AWS::NetworkManager::TransitGatewayRegistration Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html Properties: GlobalNetworkId: !Ref 'GlobalNetworkId' TransitGatewayArn: !Ref 'TransitGatewayArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-App/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type Resources: Resource: Type: AWS::OpsWorks::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html Properties: Name: !Ref 'Name' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-ElasticLoadBalancerAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Parameters: ElasticLoadBalancerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname LayerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid Resources: Resource: Type: AWS::OpsWorks::ElasticLoadBalancerAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html Properties: ElasticLoadBalancerName: !Ref 'ElasticLoadBalancerName' LayerId: !Ref 'LayerId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Instance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Parameters: InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid Resources: Resource: Type: AWS::OpsWorks::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html Properties: InstanceType: !Ref 'InstanceType' StackId: !Ref 'StackId' Outputs: AvailabilityZone: Value: GetAtt: - Resource - AvailabilityZone PrivateDnsName: Value: GetAtt: - Resource - PrivateDnsName PrivateIp: Value: GetAtt: - Resource - PrivateIp PublicDnsName: Value: GetAtt: - Resource - PublicDnsName PublicIp: Value: GetAtt: - Resource - PublicIp ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Layer/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Parameters: AutoAssignElasticIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips AllowedValues: - 'true' - 'false' AutoAssignPublicIps: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips AllowedValues: - 'true' - 'false' EnableAutoHealing: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing AllowedValues: - 'true' - 'false' Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name Shortname: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type Resources: Resource: Type: AWS::OpsWorks::Layer Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html Properties: AutoAssignElasticIps: !Ref 'AutoAssignElasticIps' AutoAssignPublicIps: !Ref 'AutoAssignPublicIps' EnableAutoHealing: !Ref 'EnableAutoHealing' Name: !Ref 'Name' Shortname: !Ref 'Shortname' StackId: !Ref 'StackId' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Stack/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Parameters: DefaultInstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn Resources: Resource: Type: AWS::OpsWorks::Stack Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html Properties: DefaultInstanceProfileArn: !Ref 'DefaultInstanceProfileArn' Name: !Ref 'Name' ServiceRoleArn: !Ref 'ServiceRoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-UserProfile/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Parameters: IamUserArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn Resources: Resource: Type: AWS::OpsWorks::UserProfile Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html Properties: IamUserArn: !Ref 'IamUserArn' Outputs: SshUsername: Value: GetAtt: - Resource - SshUsername ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorks-Volume/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Parameters: Ec2VolumeId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid StackId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid Resources: Resource: Type: AWS::OpsWorks::Volume Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html Properties: Ec2VolumeId: !Ref 'Ec2VolumeId' StackId: !Ref 'StackId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorksCM-Server/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: ServiceRoleArn: !Ref 'ServiceRoleArn' InstanceProfileArn: !Ref 'InstanceProfileArn' InstanceType: !Ref 'InstanceType' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorksCM-Server/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: ServiceRoleArn: !Ref 'ServiceRoleArn' InstanceProfileArn: !Ref 'InstanceProfileArn' InstanceType: !Ref 'InstanceType' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorksCM-Server/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: ServiceRoleArn: !Ref 'ServiceRoleArn' InstanceProfileArn: !Ref 'InstanceProfileArn' InstanceType: !Ref 'InstanceType' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorksCM-Server/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: ServiceRoleArn: !Ref 'ServiceRoleArn' InstanceProfileArn: !Ref 'InstanceProfileArn' InstanceType: !Ref 'InstanceType' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorksCM-Server/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: ServiceRoleArn: !Ref 'ServiceRoleArn' InstanceProfileArn: !Ref 'InstanceProfileArn' InstanceType: !Ref 'InstanceType' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorksCM-Server/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: ServiceRoleArn: !Ref 'ServiceRoleArn' InstanceProfileArn: !Ref 'InstanceProfileArn' InstanceType: !Ref 'InstanceType' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorksCM-Server/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: ServiceRoleArn: !Ref 'ServiceRoleArn' InstanceProfileArn: !Ref 'InstanceProfileArn' InstanceType: !Ref 'InstanceType' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorksCM-Server/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: ServiceRoleArn: !Ref 'ServiceRoleArn' InstanceProfileArn: !Ref 'InstanceProfileArn' InstanceType: !Ref 'InstanceType' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-OpsWorksCM-Server/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Parameters: ServiceRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn InstanceProfileArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instanceprofilearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-instancetype Resources: Resource: Type: AWS::OpsWorksCM::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html Properties: ServiceRoleArn: !Ref 'ServiceRoleArn' InstanceProfileArn: !Ref 'InstanceProfileArn' InstanceType: !Ref 'InstanceType' Outputs: Endpoint: Value: GetAtt: - Resource - Endpoint Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-ADMChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Parameters: ClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientsecret ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientid ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::ADMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Properties: ClientSecret: !Ref 'ClientSecret' ClientId: !Ref 'ClientId' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-ADMChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Parameters: ClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientsecret ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientid ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::ADMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Properties: ClientSecret: !Ref 'ClientSecret' ClientId: !Ref 'ClientId' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-ADMChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Parameters: ClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientsecret ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientid ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::ADMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Properties: ClientSecret: !Ref 'ClientSecret' ClientId: !Ref 'ClientId' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-ADMChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Parameters: ClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientsecret ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientid ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::ADMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Properties: ClientSecret: !Ref 'ClientSecret' ClientId: !Ref 'ClientId' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-ADMChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Parameters: ClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientsecret ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientid ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::ADMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Properties: ClientSecret: !Ref 'ClientSecret' ClientId: !Ref 'ClientId' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-ADMChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Parameters: ClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientsecret ClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-clientid ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html#cfn-pinpoint-admchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::ADMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html Properties: ClientSecret: !Ref 'ClientSecret' ClientId: !Ref 'ClientId' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html#cfn-pinpoint-apnschannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnschannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSSandboxChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSSandboxChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSSandboxChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSSandboxChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSSandboxChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSSandboxChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html#cfn-pinpoint-apnssandboxchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnssandboxchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSVoipChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSVoipChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSVoipChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSVoipChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSVoipChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSVoipChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSVoipChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSVoipChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSVoipChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSVoipChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSVoipChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html#cfn-pinpoint-apnsvoipchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSVoipChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSVoipSandboxChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSVoipSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSVoipSandboxChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSVoipSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSVoipSandboxChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSVoipSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSVoipSandboxChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSVoipSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSVoipSandboxChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSVoipSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-APNSVoipSandboxChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html#cfn-pinpoint-apnsvoipsandboxchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::APNSVoipSandboxChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-apnsvoipsandboxchannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-App/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-name Resources: Resource: Type: AWS::Pinpoint::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-App/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-name Resources: Resource: Type: AWS::Pinpoint::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-App/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-name Resources: Resource: Type: AWS::Pinpoint::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-App/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-name Resources: Resource: Type: AWS::Pinpoint::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-App/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-name Resources: Resource: Type: AWS::Pinpoint::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-App/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html#cfn-pinpoint-app-name Resources: Resource: Type: AWS::Pinpoint::App Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-ApplicationSettings/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-applicationid Resources: Resource: Type: AWS::Pinpoint::ApplicationSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-ApplicationSettings/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-applicationid Resources: Resource: Type: AWS::Pinpoint::ApplicationSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-ApplicationSettings/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-applicationid Resources: Resource: Type: AWS::Pinpoint::ApplicationSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-ApplicationSettings/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-applicationid Resources: Resource: Type: AWS::Pinpoint::ApplicationSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-ApplicationSettings/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-applicationid Resources: Resource: Type: AWS::Pinpoint::ApplicationSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-ApplicationSettings/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html#cfn-pinpoint-applicationsettings-applicationid Resources: Resource: Type: AWS::Pinpoint::ApplicationSettings Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-applicationsettings.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-BaiduChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Parameters: SecretKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-secretkey ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-apikey ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::BaiduChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Properties: SecretKey: !Ref 'SecretKey' ApiKey: !Ref 'ApiKey' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-BaiduChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Parameters: SecretKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-secretkey ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-apikey ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::BaiduChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Properties: SecretKey: !Ref 'SecretKey' ApiKey: !Ref 'ApiKey' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-BaiduChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Parameters: SecretKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-secretkey ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-apikey ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::BaiduChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Properties: SecretKey: !Ref 'SecretKey' ApiKey: !Ref 'ApiKey' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-BaiduChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Parameters: SecretKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-secretkey ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-apikey ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::BaiduChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Properties: SecretKey: !Ref 'SecretKey' ApiKey: !Ref 'ApiKey' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-BaiduChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Parameters: SecretKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-secretkey ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-apikey ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::BaiduChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Properties: SecretKey: !Ref 'SecretKey' ApiKey: !Ref 'ApiKey' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-BaiduChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Parameters: SecretKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-secretkey ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-apikey ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::BaiduChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html Properties: SecretKey: !Ref 'SecretKey' ApiKey: !Ref 'ApiKey' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-Campaign/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Parameters: SegmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-name ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-applicationid Resources: Resource: Type: AWS::Pinpoint::Campaign Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Properties: SegmentId: !Ref 'SegmentId' Name: !Ref 'Name' MessageConfiguration: {} Schedule: {} ApplicationId: !Ref 'ApplicationId' Outputs: CampaignId: Value: GetAtt: - Resource - CampaignId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-Campaign/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Parameters: SegmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-name ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-applicationid Resources: Resource: Type: AWS::Pinpoint::Campaign Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Properties: SegmentId: !Ref 'SegmentId' Name: !Ref 'Name' MessageConfiguration: {} Schedule: {} ApplicationId: !Ref 'ApplicationId' Outputs: CampaignId: Value: GetAtt: - Resource - CampaignId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-Campaign/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Parameters: SegmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-name ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-applicationid Resources: Resource: Type: AWS::Pinpoint::Campaign Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Properties: SegmentId: !Ref 'SegmentId' Name: !Ref 'Name' MessageConfiguration: {} Schedule: {} ApplicationId: !Ref 'ApplicationId' Outputs: CampaignId: Value: GetAtt: - Resource - CampaignId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-Campaign/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Parameters: SegmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-name ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-applicationid Resources: Resource: Type: AWS::Pinpoint::Campaign Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Properties: SegmentId: !Ref 'SegmentId' Name: !Ref 'Name' MessageConfiguration: {} Schedule: {} ApplicationId: !Ref 'ApplicationId' Outputs: CampaignId: Value: GetAtt: - Resource - CampaignId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-Campaign/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Parameters: SegmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-name ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-applicationid Resources: Resource: Type: AWS::Pinpoint::Campaign Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Properties: SegmentId: !Ref 'SegmentId' Name: !Ref 'Name' MessageConfiguration: {} Schedule: {} ApplicationId: !Ref 'ApplicationId' Outputs: CampaignId: Value: GetAtt: - Resource - CampaignId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-Campaign/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Parameters: SegmentId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-segmentid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-name ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html#cfn-pinpoint-campaign-applicationid Resources: Resource: Type: AWS::Pinpoint::Campaign Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-campaign.html Properties: SegmentId: !Ref 'SegmentId' Name: !Ref 'Name' MessageConfiguration: {} Schedule: {} ApplicationId: !Ref 'ApplicationId' Outputs: CampaignId: Value: GetAtt: - Resource - CampaignId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EmailChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Parameters: FromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-fromaddress ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-applicationid Identity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-identity Resources: Resource: Type: AWS::Pinpoint::EmailChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Properties: FromAddress: !Ref 'FromAddress' ApplicationId: !Ref 'ApplicationId' Identity: !Ref 'Identity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EmailChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Parameters: FromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-fromaddress ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-applicationid Identity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-identity Resources: Resource: Type: AWS::Pinpoint::EmailChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Properties: FromAddress: !Ref 'FromAddress' ApplicationId: !Ref 'ApplicationId' Identity: !Ref 'Identity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EmailChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Parameters: FromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-fromaddress ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-applicationid Identity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-identity Resources: Resource: Type: AWS::Pinpoint::EmailChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Properties: FromAddress: !Ref 'FromAddress' ApplicationId: !Ref 'ApplicationId' Identity: !Ref 'Identity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EmailChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Parameters: FromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-fromaddress ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-applicationid Identity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-identity Resources: Resource: Type: AWS::Pinpoint::EmailChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Properties: FromAddress: !Ref 'FromAddress' ApplicationId: !Ref 'ApplicationId' Identity: !Ref 'Identity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EmailChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Parameters: FromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-fromaddress ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-applicationid Identity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-identity Resources: Resource: Type: AWS::Pinpoint::EmailChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Properties: FromAddress: !Ref 'FromAddress' ApplicationId: !Ref 'ApplicationId' Identity: !Ref 'Identity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EmailChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Parameters: FromAddress: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-fromaddress ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-applicationid Identity: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-identity Resources: Resource: Type: AWS::Pinpoint::EmailChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html Properties: FromAddress: !Ref 'FromAddress' ApplicationId: !Ref 'ApplicationId' Identity: !Ref 'Identity' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EmailTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-templatename Subject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-subject Resources: Resource: Type: AWS::Pinpoint::EmailTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Properties: TemplateName: !Ref 'TemplateName' Subject: !Ref 'Subject' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EmailTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-templatename Subject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-subject Resources: Resource: Type: AWS::Pinpoint::EmailTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Properties: TemplateName: !Ref 'TemplateName' Subject: !Ref 'Subject' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EmailTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-templatename Subject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-subject Resources: Resource: Type: AWS::Pinpoint::EmailTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Properties: TemplateName: !Ref 'TemplateName' Subject: !Ref 'Subject' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EmailTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-templatename Subject: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html#cfn-pinpoint-emailtemplate-subject Resources: Resource: Type: AWS::Pinpoint::EmailTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailtemplate.html Properties: TemplateName: !Ref 'TemplateName' Subject: !Ref 'Subject' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EventStream/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-applicationid DestinationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-destinationstreamarn RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-rolearn Resources: Resource: Type: AWS::Pinpoint::EventStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Properties: ApplicationId: !Ref 'ApplicationId' DestinationStreamArn: !Ref 'DestinationStreamArn' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EventStream/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-applicationid DestinationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-destinationstreamarn RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-rolearn Resources: Resource: Type: AWS::Pinpoint::EventStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Properties: ApplicationId: !Ref 'ApplicationId' DestinationStreamArn: !Ref 'DestinationStreamArn' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EventStream/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-applicationid DestinationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-destinationstreamarn RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-rolearn Resources: Resource: Type: AWS::Pinpoint::EventStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Properties: ApplicationId: !Ref 'ApplicationId' DestinationStreamArn: !Ref 'DestinationStreamArn' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EventStream/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-applicationid DestinationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-destinationstreamarn RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-rolearn Resources: Resource: Type: AWS::Pinpoint::EventStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Properties: ApplicationId: !Ref 'ApplicationId' DestinationStreamArn: !Ref 'DestinationStreamArn' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EventStream/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-applicationid DestinationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-destinationstreamarn RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-rolearn Resources: Resource: Type: AWS::Pinpoint::EventStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Properties: ApplicationId: !Ref 'ApplicationId' DestinationStreamArn: !Ref 'DestinationStreamArn' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-EventStream/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-applicationid DestinationStreamArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-destinationstreamarn RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-rolearn Resources: Resource: Type: AWS::Pinpoint::EventStream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html Properties: ApplicationId: !Ref 'ApplicationId' DestinationStreamArn: !Ref 'DestinationStreamArn' RoleArn: !Ref 'RoleArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-GCMChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Parameters: ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-apikey ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::GCMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Properties: ApiKey: !Ref 'ApiKey' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-GCMChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Parameters: ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-apikey ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::GCMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Properties: ApiKey: !Ref 'ApiKey' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-GCMChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Parameters: ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-apikey ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::GCMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Properties: ApiKey: !Ref 'ApiKey' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-GCMChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Parameters: ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-apikey ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::GCMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Properties: ApiKey: !Ref 'ApiKey' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-GCMChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Parameters: ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-apikey ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::GCMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Properties: ApiKey: !Ref 'ApiKey' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-GCMChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Parameters: ApiKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-apikey ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-applicationid Resources: Resource: Type: AWS::Pinpoint::GCMChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html Properties: ApiKey: !Ref 'ApiKey' ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-PushTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-templatename Resources: Resource: Type: AWS::Pinpoint::PushTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Properties: TemplateName: !Ref 'TemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-PushTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-templatename Resources: Resource: Type: AWS::Pinpoint::PushTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Properties: TemplateName: !Ref 'TemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-PushTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-templatename Resources: Resource: Type: AWS::Pinpoint::PushTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Properties: TemplateName: !Ref 'TemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-PushTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html#cfn-pinpoint-pushtemplate-templatename Resources: Resource: Type: AWS::Pinpoint::PushTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-pushtemplate.html Properties: TemplateName: !Ref 'TemplateName' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-SMSChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-applicationid Resources: Resource: Type: AWS::Pinpoint::SMSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-SMSChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-applicationid Resources: Resource: Type: AWS::Pinpoint::SMSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-SMSChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-applicationid Resources: Resource: Type: AWS::Pinpoint::SMSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-SMSChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-applicationid Resources: Resource: Type: AWS::Pinpoint::SMSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-SMSChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-applicationid Resources: Resource: Type: AWS::Pinpoint::SMSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-SMSChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html#cfn-pinpoint-smschannel-applicationid Resources: Resource: Type: AWS::Pinpoint::SMSChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-Segment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-name Resources: Resource: Type: AWS::Pinpoint::Segment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Properties: ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' Outputs: SegmentId: Value: GetAtt: - Resource - SegmentId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-Segment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-name Resources: Resource: Type: AWS::Pinpoint::Segment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Properties: ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' Outputs: SegmentId: Value: GetAtt: - Resource - SegmentId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-Segment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-name Resources: Resource: Type: AWS::Pinpoint::Segment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Properties: ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' Outputs: SegmentId: Value: GetAtt: - Resource - SegmentId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-Segment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-name Resources: Resource: Type: AWS::Pinpoint::Segment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Properties: ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' Outputs: SegmentId: Value: GetAtt: - Resource - SegmentId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-Segment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-name Resources: Resource: Type: AWS::Pinpoint::Segment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Properties: ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' Outputs: SegmentId: Value: GetAtt: - Resource - SegmentId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-Segment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-applicationid Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html#cfn-pinpoint-segment-name Resources: Resource: Type: AWS::Pinpoint::Segment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-segment.html Properties: ApplicationId: !Ref 'ApplicationId' Name: !Ref 'Name' Outputs: SegmentId: Value: GetAtt: - Resource - SegmentId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-SmsTemplate/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-templatename Body: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-body Resources: Resource: Type: AWS::Pinpoint::SmsTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Properties: TemplateName: !Ref 'TemplateName' Body: !Ref 'Body' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-SmsTemplate/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-templatename Body: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-body Resources: Resource: Type: AWS::Pinpoint::SmsTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Properties: TemplateName: !Ref 'TemplateName' Body: !Ref 'Body' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-SmsTemplate/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-templatename Body: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-body Resources: Resource: Type: AWS::Pinpoint::SmsTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Properties: TemplateName: !Ref 'TemplateName' Body: !Ref 'Body' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-SmsTemplate/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Parameters: TemplateName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-templatename Body: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html#cfn-pinpoint-smstemplate-body Resources: Resource: Type: AWS::Pinpoint::SmsTemplate Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smstemplate.html Properties: TemplateName: !Ref 'TemplateName' Body: !Ref 'Body' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-VoiceChannel/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-applicationid Resources: Resource: Type: AWS::Pinpoint::VoiceChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-VoiceChannel/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-applicationid Resources: Resource: Type: AWS::Pinpoint::VoiceChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-VoiceChannel/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-applicationid Resources: Resource: Type: AWS::Pinpoint::VoiceChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-VoiceChannel/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-applicationid Resources: Resource: Type: AWS::Pinpoint::VoiceChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-VoiceChannel/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-applicationid Resources: Resource: Type: AWS::Pinpoint::VoiceChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Pinpoint-VoiceChannel/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Parameters: ApplicationId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html#cfn-pinpoint-voicechannel-applicationid Resources: Resource: Type: AWS::Pinpoint::VoiceChannel Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-voicechannel.html Properties: ApplicationId: !Ref 'ApplicationId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-ConfigurationSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html#cfn-pinpointemail-configurationset-name Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-ConfigurationSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html#cfn-pinpointemail-configurationset-name Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-ConfigurationSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html#cfn-pinpointemail-configurationset-name Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-ConfigurationSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html#cfn-pinpointemail-configurationset-name Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-ConfigurationSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html#cfn-pinpointemail-configurationset-name Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-ConfigurationSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html#cfn-pinpointemail-configurationset-name Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-ConfigurationSetEventDestination/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Parameters: EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestinationname ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-configurationsetname Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Properties: EventDestinationName: !Ref 'EventDestinationName' ConfigurationSetName: !Ref 'ConfigurationSetName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-ConfigurationSetEventDestination/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Parameters: EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestinationname ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-configurationsetname Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Properties: EventDestinationName: !Ref 'EventDestinationName' ConfigurationSetName: !Ref 'ConfigurationSetName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-ConfigurationSetEventDestination/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Parameters: EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestinationname ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-configurationsetname Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Properties: EventDestinationName: !Ref 'EventDestinationName' ConfigurationSetName: !Ref 'ConfigurationSetName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-ConfigurationSetEventDestination/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Parameters: EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestinationname ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-configurationsetname Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Properties: EventDestinationName: !Ref 'EventDestinationName' ConfigurationSetName: !Ref 'ConfigurationSetName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-ConfigurationSetEventDestination/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Parameters: EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestinationname ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-configurationsetname Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Properties: EventDestinationName: !Ref 'EventDestinationName' ConfigurationSetName: !Ref 'ConfigurationSetName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-ConfigurationSetEventDestination/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Parameters: EventDestinationName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-eventdestinationname ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html#cfn-pinpointemail-configurationseteventdestination-configurationsetname Resources: Resource: Type: AWS::PinpointEmail::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-configurationseteventdestination.html Properties: EventDestinationName: !Ref 'EventDestinationName' ConfigurationSetName: !Ref 'ConfigurationSetName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-DedicatedIpPool/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Resources: Resource: Type: AWS::PinpointEmail::DedicatedIpPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-DedicatedIpPool/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Resources: Resource: Type: AWS::PinpointEmail::DedicatedIpPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-DedicatedIpPool/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Resources: Resource: Type: AWS::PinpointEmail::DedicatedIpPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-DedicatedIpPool/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Resources: Resource: Type: AWS::PinpointEmail::DedicatedIpPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-DedicatedIpPool/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Resources: Resource: Type: AWS::PinpointEmail::DedicatedIpPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-DedicatedIpPool/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html Resources: Resource: Type: AWS::PinpointEmail::DedicatedIpPool Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-Identity/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-name Resources: Resource: Type: AWS::PinpointEmail::Identity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Properties: Name: !Ref 'Name' Outputs: IdentityDNSRecordName3: Value: GetAtt: - Resource - IdentityDNSRecordName3 IdentityDNSRecordName1: Value: GetAtt: - Resource - IdentityDNSRecordName1 IdentityDNSRecordName2: Value: GetAtt: - Resource - IdentityDNSRecordName2 IdentityDNSRecordValue3: Value: GetAtt: - Resource - IdentityDNSRecordValue3 IdentityDNSRecordValue2: Value: GetAtt: - Resource - IdentityDNSRecordValue2 IdentityDNSRecordValue1: Value: GetAtt: - Resource - IdentityDNSRecordValue1 ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-Identity/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-name Resources: Resource: Type: AWS::PinpointEmail::Identity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Properties: Name: !Ref 'Name' Outputs: IdentityDNSRecordName3: Value: GetAtt: - Resource - IdentityDNSRecordName3 IdentityDNSRecordName1: Value: GetAtt: - Resource - IdentityDNSRecordName1 IdentityDNSRecordName2: Value: GetAtt: - Resource - IdentityDNSRecordName2 IdentityDNSRecordValue3: Value: GetAtt: - Resource - IdentityDNSRecordValue3 IdentityDNSRecordValue2: Value: GetAtt: - Resource - IdentityDNSRecordValue2 IdentityDNSRecordValue1: Value: GetAtt: - Resource - IdentityDNSRecordValue1 ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-Identity/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-name Resources: Resource: Type: AWS::PinpointEmail::Identity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Properties: Name: !Ref 'Name' Outputs: IdentityDNSRecordName3: Value: GetAtt: - Resource - IdentityDNSRecordName3 IdentityDNSRecordName1: Value: GetAtt: - Resource - IdentityDNSRecordName1 IdentityDNSRecordName2: Value: GetAtt: - Resource - IdentityDNSRecordName2 IdentityDNSRecordValue3: Value: GetAtt: - Resource - IdentityDNSRecordValue3 IdentityDNSRecordValue2: Value: GetAtt: - Resource - IdentityDNSRecordValue2 IdentityDNSRecordValue1: Value: GetAtt: - Resource - IdentityDNSRecordValue1 ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-Identity/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-name Resources: Resource: Type: AWS::PinpointEmail::Identity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Properties: Name: !Ref 'Name' Outputs: IdentityDNSRecordName3: Value: GetAtt: - Resource - IdentityDNSRecordName3 IdentityDNSRecordName1: Value: GetAtt: - Resource - IdentityDNSRecordName1 IdentityDNSRecordName2: Value: GetAtt: - Resource - IdentityDNSRecordName2 IdentityDNSRecordValue3: Value: GetAtt: - Resource - IdentityDNSRecordValue3 IdentityDNSRecordValue2: Value: GetAtt: - Resource - IdentityDNSRecordValue2 IdentityDNSRecordValue1: Value: GetAtt: - Resource - IdentityDNSRecordValue1 ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-Identity/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-name Resources: Resource: Type: AWS::PinpointEmail::Identity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Properties: Name: !Ref 'Name' Outputs: IdentityDNSRecordName3: Value: GetAtt: - Resource - IdentityDNSRecordName3 IdentityDNSRecordName1: Value: GetAtt: - Resource - IdentityDNSRecordName1 IdentityDNSRecordName2: Value: GetAtt: - Resource - IdentityDNSRecordName2 IdentityDNSRecordValue3: Value: GetAtt: - Resource - IdentityDNSRecordValue3 IdentityDNSRecordValue2: Value: GetAtt: - Resource - IdentityDNSRecordValue2 IdentityDNSRecordValue1: Value: GetAtt: - Resource - IdentityDNSRecordValue1 ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-PinpointEmail-Identity/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html#cfn-pinpointemail-identity-name Resources: Resource: Type: AWS::PinpointEmail::Identity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-identity.html Properties: Name: !Ref 'Name' Outputs: IdentityDNSRecordName3: Value: GetAtt: - Resource - IdentityDNSRecordName3 IdentityDNSRecordName1: Value: GetAtt: - Resource - IdentityDNSRecordName1 IdentityDNSRecordName2: Value: GetAtt: - Resource - IdentityDNSRecordName2 IdentityDNSRecordValue3: Value: GetAtt: - Resource - IdentityDNSRecordValue3 IdentityDNSRecordValue2: Value: GetAtt: - Resource - IdentityDNSRecordValue2 IdentityDNSRecordValue1: Value: GetAtt: - Resource - IdentityDNSRecordValue1 ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Ledger/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Ledger/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Ledger/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Ledger/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Ledger/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Ledger/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Ledger/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Ledger/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Ledger/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Parameters: PermissionsMode: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html#cfn-qldb-ledger-permissionsmode Resources: Resource: Type: AWS::QLDB::Ledger Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-ledger.html Properties: PermissionsMode: !Ref 'PermissionsMode' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Stream/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' KinesisConfiguration: {} Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Stream/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' KinesisConfiguration: {} Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Stream/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' KinesisConfiguration: {} Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Stream/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' KinesisConfiguration: {} Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Stream/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' KinesisConfiguration: {} Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Stream/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' KinesisConfiguration: {} Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Stream/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' KinesisConfiguration: {} Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Stream/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' KinesisConfiguration: {} Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-QLDB-Stream/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Parameters: LedgerName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-ledgername StreamName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-streamname RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-rolearn InclusiveStartTime: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html#cfn-qldb-stream-inclusivestarttime Resources: Resource: Type: AWS::QLDB::Stream Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html Properties: LedgerName: !Ref 'LedgerName' StreamName: !Ref 'StreamName' RoleArn: !Ref 'RoleArn' InclusiveStartTime: !Ref 'InclusiveStartTime' KinesisConfiguration: {} Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RAM-ResourceShare/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html#cfn-ram-resourceshare-name Resources: Resource: Type: AWS::RAM::ResourceShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBCluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Parameters: Engine: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine Resources: Resource: Type: AWS::RDS::DBCluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html Properties: Engine: !Ref 'Engine' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ReadEndpoint.Address: Value: GetAtt: - Resource - ReadEndpoint.Address ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBClusterParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family Parameters: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters Resources: Resource: Type: AWS::RDS::DBClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' Parameters: !Ref 'Parameters' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBInstance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Parameters: DBInstanceClass: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass Resources: Resource: Type: AWS::RDS::DBInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html Properties: DBInstanceClass: !Ref 'DBInstanceClass' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description Family: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family Resources: Resource: Type: AWS::RDS::DBParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html Properties: Description: !Ref 'Description' Family: !Ref 'Family' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' EngineFamily: !Ref 'EngineFamily' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' EngineFamily: !Ref 'EngineFamily' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' EngineFamily: !Ref 'EngineFamily' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' EngineFamily: !Ref 'EngineFamily' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' EngineFamily: !Ref 'EngineFamily' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' EngineFamily: !Ref 'EngineFamily' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' EngineFamily: !Ref 'EngineFamily' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' EngineFamily: !Ref 'EngineFamily' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' EngineFamily: !Ref 'EngineFamily' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' EngineFamily: !Ref 'EngineFamily' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' EngineFamily: !Ref 'EngineFamily' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' EngineFamily: !Ref 'EngineFamily' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-dbproxyname EngineFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-rolearn Resources: Resource: Type: AWS::RDS::DBProxy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html Properties: DBProxyName: !Ref 'DBProxyName' EngineFamily: !Ref 'EngineFamily' RoleArn: !Ref 'RoleArn' Outputs: DBProxyArn: Value: GetAtt: - Resource - DBProxyArn Endpoint: Value: GetAtt: - Resource - Endpoint ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBProxyTargetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Parameters: DBProxyName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname TargetGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname Resources: Resource: Type: AWS::RDS::DBProxyTargetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html Properties: DBProxyName: !Ref 'DBProxyName' TargetGroupName: !Ref 'TargetGroupName' Outputs: TargetGroupArn: Value: GetAtt: - Resource - TargetGroupArn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Parameters: GroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription Resources: Resource: Type: AWS::RDS::DBSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html Properties: GroupDescription: !Ref 'GroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSecurityGroupIngress/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Parameters: DBSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname Resources: Resource: Type: AWS::RDS::DBSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html Properties: DBSecurityGroupName: !Ref 'DBSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-DBSubnetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Parameters: DBSubnetGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription Resources: Resource: Type: AWS::RDS::DBSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html Properties: DBSubnetGroupDescription: !Ref 'DBSubnetGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-EventSubscription/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Parameters: SnsTopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn Resources: Resource: Type: AWS::RDS::EventSubscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html Properties: SnsTopicArn: !Ref 'SnsTopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RDS-OptionGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Parameters: EngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename MajorEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion OptionGroupDescription: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription Resources: Resource: Type: AWS::RDS::OptionGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html Properties: EngineName: !Ref 'EngineName' MajorEngineVersion: !Ref 'MajorEngineVersion' OptionGroupDescription: !Ref 'OptionGroupDescription' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-Cluster/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Parameters: ClusterType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype DBName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname MasterUserPassword: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword MasterUsername: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername NodeType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype Resources: Resource: Type: AWS::Redshift::Cluster Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html Properties: ClusterType: !Ref 'ClusterType' DBName: !Ref 'DBName' MasterUserPassword: !Ref 'MasterUserPassword' MasterUsername: !Ref 'MasterUsername' NodeType: !Ref 'NodeType' Outputs: Endpoint.Address: Value: GetAtt: - Resource - Endpoint.Address Endpoint.Port: Value: GetAtt: - Resource - Endpoint.Port ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterParameterGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description ParameterGroupFamily: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily Resources: Resource: Type: AWS::Redshift::ClusterParameterGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html Properties: Description: !Ref 'Description' ParameterGroupFamily: !Ref 'ParameterGroupFamily' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSecurityGroupIngress/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Parameters: ClusterSecurityGroupName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname Resources: Resource: Type: AWS::Redshift::ClusterSecurityGroupIngress Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html Properties: ClusterSecurityGroupName: !Ref 'ClusterSecurityGroupName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Redshift-ClusterSubnetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description Resources: Resource: Type: AWS::Redshift::ClusterSubnetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html Properties: Description: !Ref 'Description' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ResourceGroups-Group/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html#cfn-resourcegroups-group-name Resources: Resource: Type: AWS::ResourceGroups::Group Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-group.html Properties: Name: !Ref 'Name' Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-Fleet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Resources: Resource: Type: AWS::RoboMaker::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-Fleet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Resources: Resource: Type: AWS::RoboMaker::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-Fleet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Resources: Resource: Type: AWS::RoboMaker::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-Fleet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Resources: Resource: Type: AWS::RoboMaker::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-Fleet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Resources: Resource: Type: AWS::RoboMaker::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-Fleet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Resources: Resource: Type: AWS::RoboMaker::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-Fleet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Resources: Resource: Type: AWS::RoboMaker::Fleet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html Outputs: Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-Robot/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Parameters: Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture GreengrassGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid Resources: Resource: Type: AWS::RoboMaker::Robot Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Properties: Architecture: !Ref 'Architecture' GreengrassGroupId: !Ref 'GreengrassGroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-Robot/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Parameters: Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture GreengrassGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid Resources: Resource: Type: AWS::RoboMaker::Robot Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Properties: Architecture: !Ref 'Architecture' GreengrassGroupId: !Ref 'GreengrassGroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-Robot/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Parameters: Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture GreengrassGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid Resources: Resource: Type: AWS::RoboMaker::Robot Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Properties: Architecture: !Ref 'Architecture' GreengrassGroupId: !Ref 'GreengrassGroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-Robot/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Parameters: Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture GreengrassGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid Resources: Resource: Type: AWS::RoboMaker::Robot Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Properties: Architecture: !Ref 'Architecture' GreengrassGroupId: !Ref 'GreengrassGroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-Robot/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Parameters: Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture GreengrassGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid Resources: Resource: Type: AWS::RoboMaker::Robot Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Properties: Architecture: !Ref 'Architecture' GreengrassGroupId: !Ref 'GreengrassGroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-Robot/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Parameters: Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture GreengrassGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid Resources: Resource: Type: AWS::RoboMaker::Robot Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Properties: Architecture: !Ref 'Architecture' GreengrassGroupId: !Ref 'GreengrassGroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-Robot/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Parameters: Architecture: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture GreengrassGroupId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid Resources: Resource: Type: AWS::RoboMaker::Robot Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html Properties: Architecture: !Ref 'Architecture' GreengrassGroupId: !Ref 'GreengrassGroupId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-RobotApplication/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Parameters: RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-name Resources: Resource: Type: AWS::RoboMaker::RobotApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Properties: RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-RobotApplication/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Parameters: RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-name Resources: Resource: Type: AWS::RoboMaker::RobotApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Properties: RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-RobotApplication/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Parameters: RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-name Resources: Resource: Type: AWS::RoboMaker::RobotApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Properties: RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-RobotApplication/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Parameters: RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-name Resources: Resource: Type: AWS::RoboMaker::RobotApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Properties: RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-RobotApplication/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Parameters: RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-name Resources: Resource: Type: AWS::RoboMaker::RobotApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Properties: RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-RobotApplication/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Parameters: RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-name Resources: Resource: Type: AWS::RoboMaker::RobotApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Properties: RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-RobotApplication/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Parameters: RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html#cfn-robomaker-robotapplication-robotsoftwaresuite-name Resources: Resource: Type: AWS::RoboMaker::RobotApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html Properties: RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-RobotApplicationVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Parameters: Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::RobotApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Properties: Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-RobotApplicationVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Parameters: Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::RobotApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Properties: Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-RobotApplicationVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Parameters: Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::RobotApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Properties: Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-RobotApplicationVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Parameters: Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::RobotApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Properties: Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-RobotApplicationVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Parameters: Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::RobotApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Properties: Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-RobotApplicationVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Parameters: Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::RobotApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Properties: Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-RobotApplicationVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Parameters: Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#cfn-robomaker-robotapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::RobotApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html Properties: Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-SimulationApplication/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Parameters: RenderingEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version RenderingEngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name SimulationSoftwareSuiteVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-version SimulationSoftwareSuiteName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-name RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-name Resources: Resource: Type: AWS::RoboMaker::SimulationApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Properties: RenderingEngine: Version: !Ref 'RenderingEngineVersion' Name: !Ref 'RenderingEngineName' SimulationSoftwareSuite: Version: !Ref 'SimulationSoftwareSuiteVersion' Name: !Ref 'SimulationSoftwareSuiteName' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-SimulationApplication/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Parameters: RenderingEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version RenderingEngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name SimulationSoftwareSuiteVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-version SimulationSoftwareSuiteName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-name RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-name Resources: Resource: Type: AWS::RoboMaker::SimulationApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Properties: RenderingEngine: Version: !Ref 'RenderingEngineVersion' Name: !Ref 'RenderingEngineName' SimulationSoftwareSuite: Version: !Ref 'SimulationSoftwareSuiteVersion' Name: !Ref 'SimulationSoftwareSuiteName' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-SimulationApplication/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Parameters: RenderingEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version RenderingEngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name SimulationSoftwareSuiteVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-version SimulationSoftwareSuiteName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-name RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-name Resources: Resource: Type: AWS::RoboMaker::SimulationApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Properties: RenderingEngine: Version: !Ref 'RenderingEngineVersion' Name: !Ref 'RenderingEngineName' SimulationSoftwareSuite: Version: !Ref 'SimulationSoftwareSuiteVersion' Name: !Ref 'SimulationSoftwareSuiteName' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-SimulationApplication/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Parameters: RenderingEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version RenderingEngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name SimulationSoftwareSuiteVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-version SimulationSoftwareSuiteName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-name RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-name Resources: Resource: Type: AWS::RoboMaker::SimulationApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Properties: RenderingEngine: Version: !Ref 'RenderingEngineVersion' Name: !Ref 'RenderingEngineName' SimulationSoftwareSuite: Version: !Ref 'SimulationSoftwareSuiteVersion' Name: !Ref 'SimulationSoftwareSuiteName' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-SimulationApplication/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Parameters: RenderingEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version RenderingEngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name SimulationSoftwareSuiteVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-version SimulationSoftwareSuiteName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-name RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-name Resources: Resource: Type: AWS::RoboMaker::SimulationApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Properties: RenderingEngine: Version: !Ref 'RenderingEngineVersion' Name: !Ref 'RenderingEngineName' SimulationSoftwareSuite: Version: !Ref 'SimulationSoftwareSuiteVersion' Name: !Ref 'SimulationSoftwareSuiteName' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-SimulationApplication/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Parameters: RenderingEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version RenderingEngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name SimulationSoftwareSuiteVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-version SimulationSoftwareSuiteName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-name RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-name Resources: Resource: Type: AWS::RoboMaker::SimulationApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Properties: RenderingEngine: Version: !Ref 'RenderingEngineVersion' Name: !Ref 'RenderingEngineName' SimulationSoftwareSuite: Version: !Ref 'SimulationSoftwareSuiteVersion' Name: !Ref 'SimulationSoftwareSuiteName' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-SimulationApplication/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Parameters: RenderingEngineVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version RenderingEngineName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name SimulationSoftwareSuiteVersion: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-version SimulationSoftwareSuiteName: Type: String Description: >- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite-name RobotSoftwareSuiteVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-version RobotSoftwareSuiteName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html#cfn-robomaker-simulationapplication-robotsoftwaresuite-name Resources: Resource: Type: AWS::RoboMaker::SimulationApplication Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html Properties: RenderingEngine: Version: !Ref 'RenderingEngineVersion' Name: !Ref 'RenderingEngineName' SimulationSoftwareSuite: Version: !Ref 'SimulationSoftwareSuiteVersion' Name: !Ref 'SimulationSoftwareSuiteName' RobotSoftwareSuite: Version: !Ref 'RobotSoftwareSuiteVersion' Name: !Ref 'RobotSoftwareSuiteName' Outputs: CurrentRevisionId: Value: GetAtt: - Resource - CurrentRevisionId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-SimulationApplicationVersion/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Parameters: Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::SimulationApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Properties: Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-SimulationApplicationVersion/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Parameters: Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::SimulationApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Properties: Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-SimulationApplicationVersion/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Parameters: Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::SimulationApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Properties: Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-SimulationApplicationVersion/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Parameters: Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::SimulationApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Properties: Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-SimulationApplicationVersion/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Parameters: Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::SimulationApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Properties: Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-SimulationApplicationVersion/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Parameters: Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::SimulationApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Properties: Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-RoboMaker-SimulationApplicationVersion/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Parameters: Application: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#cfn-robomaker-simulationapplicationversion-application Resources: Resource: Type: AWS::RoboMaker::SimulationApplicationVersion Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html Properties: Application: !Ref 'Application' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HealthCheck/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Parameters: HealthCheckConfigType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type Resources: Resource: Type: AWS::Route53::HealthCheck Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html Properties: HealthCheckConfig: Type: !Ref 'HealthCheckConfigType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-HostedZone/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name Resources: Resource: Type: AWS::Route53::HostedZone Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html Properties: Name: !Ref 'Name' Outputs: NameServers: Value: GetAtt: - Resource - NameServers ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type Resources: Resource: Type: AWS::Route53::RecordSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html Properties: Name: !Ref 'Name' Type: !Ref 'Type' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53-RecordSetGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html Resources: Resource: Type: AWS::Route53::RecordSetGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverEndpoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Parameters: Direction: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html#cfn-route53resolver-resolverendpoint-direction Resources: Resource: Type: AWS::Route53Resolver::ResolverEndpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverendpoint.html Properties: Direction: !Ref 'Direction' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId IpAddressCount: Value: GetAtt: - Resource - IpAddressCount Arn: Value: GetAtt: - Resource - Arn Direction: Value: GetAtt: - Resource - Direction HostVPCId: Value: GetAtt: - Resource - HostVPCId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Parameters: DomainName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-domainname RuleType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-ruletype Resources: Resource: Type: AWS::Route53Resolver::ResolverRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html Properties: DomainName: !Ref 'DomainName' RuleType: !Ref 'RuleType' Outputs: ResolverEndpointId: Value: GetAtt: - Resource - ResolverEndpointId DomainName: Value: GetAtt: - Resource - DomainName ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId Arn: Value: GetAtt: - Resource - Arn TargetIps: Value: GetAtt: - Resource - TargetIps Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Route53Resolver-ResolverRuleAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Parameters: VPCId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid ResolverRuleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid Resources: Resource: Type: AWS::Route53Resolver::ResolverRuleAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html Properties: VPCId: !Ref 'VPCId' ResolverRuleId: !Ref 'ResolverRuleId' Outputs: VPCId: Value: GetAtt: - Resource - VPCId ResolverRuleId: Value: GetAtt: - Resource - ResolverRuleId ResolverRuleAssociationId: Value: GetAtt: - Resource - ResolverRuleAssociationId Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-AccessPoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html#cfn-s3-accesspoint-bucket Resources: Resource: Type: AWS::S3::AccessPoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html Properties: Bucket: !Ref 'Bucket' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-Bucket/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Resources: Resource: Type: AWS::S3::Bucket Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html Outputs: Arn: Value: GetAtt: - Resource - Arn DomainName: Value: GetAtt: - Resource - DomainName DualStackDomainName: Value: GetAtt: - Resource - DualStackDomainName RegionalDomainName: Value: GetAtt: - Resource - RegionalDomainName WebsiteURL: Value: GetAtt: - Resource - WebsiteURL ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-S3-BucketPolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Parameters: Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-bucket PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html#aws-properties-s3-policy-policydocument Resources: Resource: Type: AWS::S3::BucketPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html Properties: Bucket: !Ref 'Bucket' PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SDB-Domain/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html Resources: Resource: Type: AWS::SDB::Domain Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ConfigurationSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Resources: Resource: Type: AWS::SES::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ConfigurationSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Resources: Resource: Type: AWS::SES::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ConfigurationSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Resources: Resource: Type: AWS::SES::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ConfigurationSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Resources: Resource: Type: AWS::SES::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ConfigurationSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Resources: Resource: Type: AWS::SES::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ConfigurationSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html Resources: Resource: Type: AWS::SES::ConfigurationSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ConfigurationSetEventDestination/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html Parameters: ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html#cfn-ses-configurationseteventdestination-configurationsetname Resources: Resource: Type: AWS::SES::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html Properties: ConfigurationSetName: !Ref 'ConfigurationSetName' EventDestination: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ConfigurationSetEventDestination/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html Parameters: ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html#cfn-ses-configurationseteventdestination-configurationsetname Resources: Resource: Type: AWS::SES::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html Properties: ConfigurationSetName: !Ref 'ConfigurationSetName' EventDestination: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ConfigurationSetEventDestination/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html Parameters: ConfigurationSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html#cfn-ses-configurationseteventdestination-configurationsetname Resources: Resource: Type: AWS::SES::ConfigurationSetEventDestination Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html Properties: ConfigurationSetName: !Ref 'ConfigurationSetName' EventDestination: {} ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ReceiptFilter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html Parameters: FilterIpFilterPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-ipfilter.html#cfn-ses-receiptfilter-ipfilter-policy FilterIpFilterCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-ipfilter.html#cfn-ses-receiptfilter-ipfilter-cidr Resources: Resource: Type: AWS::SES::ReceiptFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html Properties: Filter: IpFilter: Policy: !Ref 'FilterIpFilterPolicy' Cidr: !Ref 'FilterIpFilterCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ReceiptFilter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html Parameters: FilterIpFilterPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-ipfilter.html#cfn-ses-receiptfilter-ipfilter-policy FilterIpFilterCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-ipfilter.html#cfn-ses-receiptfilter-ipfilter-cidr Resources: Resource: Type: AWS::SES::ReceiptFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html Properties: Filter: IpFilter: Policy: !Ref 'FilterIpFilterPolicy' Cidr: !Ref 'FilterIpFilterCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ReceiptFilter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html Parameters: FilterIpFilterPolicy: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-ipfilter.html#cfn-ses-receiptfilter-ipfilter-policy FilterIpFilterCidr: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-ipfilter.html#cfn-ses-receiptfilter-ipfilter-cidr Resources: Resource: Type: AWS::SES::ReceiptFilter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html Properties: Filter: IpFilter: Policy: !Ref 'FilterIpFilterPolicy' Cidr: !Ref 'FilterIpFilterCidr' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ReceiptRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html Parameters: RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html#cfn-ses-receiptrule-rulesetname Resources: Resource: Type: AWS::SES::ReceiptRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html Properties: Rule: {} RuleSetName: !Ref 'RuleSetName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ReceiptRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html Parameters: RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html#cfn-ses-receiptrule-rulesetname Resources: Resource: Type: AWS::SES::ReceiptRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html Properties: Rule: {} RuleSetName: !Ref 'RuleSetName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ReceiptRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html Parameters: RuleSetName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html#cfn-ses-receiptrule-rulesetname Resources: Resource: Type: AWS::SES::ReceiptRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptrule.html Properties: Rule: {} RuleSetName: !Ref 'RuleSetName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ReceiptRuleSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html Resources: Resource: Type: AWS::SES::ReceiptRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ReceiptRuleSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html Resources: Resource: Type: AWS::SES::ReceiptRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-ReceiptRuleSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html Resources: Resource: Type: AWS::SES::ReceiptRuleSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-Template/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html Resources: Resource: Type: AWS::SES::Template Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-Template/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html Resources: Resource: Type: AWS::SES::Template Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SES-Template/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html Resources: Resource: Type: AWS::SES::Template Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Subscription/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Parameters: Protocol: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-protocol TopicArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#topicarn Resources: Resource: Type: AWS::SNS::Subscription Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html Properties: Protocol: !Ref 'Protocol' TopicArn: !Ref 'TopicArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-Topic/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Resources: Resource: Type: AWS::SNS::Topic Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html Outputs: TopicName: Value: GetAtt: - Resource - TopicName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SNS-TopicPolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html#cfn-sns-topicpolicy-policydocument Resources: Resource: Type: AWS::SNS::TopicPolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-Queue/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Resources: Resource: Type: AWS::SQS::Queue Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html Outputs: Arn: Value: GetAtt: - Resource - Arn QueueName: Value: GetAtt: - Resource - QueueName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SQS-QueuePolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Parameters: PolicyDocument: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html#cfn-sqs-queuepolicy-policydoc Resources: Resource: Type: AWS::SQS::QueuePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html Properties: PolicyDocument: !Ref 'PolicyDocument' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Association/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name Resources: Resource: Type: AWS::SSM::Association Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html Properties: Name: !Ref 'Name' Outputs: AssociationId: Value: GetAtt: - Resource - AssociationId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Document/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Parameters: Content: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content Resources: Resource: Type: AWS::SSM::Document Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html Properties: Content: !Ref 'Content' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindow/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Parameters: AllowUnassociatedTargets: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-allowunassociatedtargets AllowedValues: - 'true' - 'false' Cutoff: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-cutoff Schedule: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-schedule Duration: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-duration Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-name Resources: Resource: Type: AWS::SSM::MaintenanceWindow Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html Properties: AllowUnassociatedTargets: !Ref 'AllowUnassociatedTargets' Cutoff: !Ref 'Cutoff' Schedule: !Ref 'Schedule' Duration: !Ref 'Duration' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTarget/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Parameters: WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-windowid ResourceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#cfn-ssm-maintenancewindowtarget-resourcetype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTarget Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html Properties: WindowId: !Ref 'WindowId' ResourceType: !Ref 'ResourceType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-MaintenanceWindowTask/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Parameters: MaxErrors: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors Priority: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority MaxConcurrency: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency TaskArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn WindowId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid TaskType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype Resources: Resource: Type: AWS::SSM::MaintenanceWindowTask Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html Properties: MaxErrors: !Ref 'MaxErrors' Priority: !Ref 'Priority' MaxConcurrency: !Ref 'MaxConcurrency' TaskArn: !Ref 'TaskArn' WindowId: !Ref 'WindowId' TaskType: !Ref 'TaskType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-Parameter/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Parameters: Type: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value Resources: Resource: Type: AWS::SSM::Parameter Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html Properties: Type: !Ref 'Type' Value: !Ref 'Value' Outputs: Type: Value: GetAtt: - Resource - Type Value: Value: GetAtt: - Resource - Value ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-PatchBaseline/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-PatchBaseline/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-PatchBaseline/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-PatchBaseline/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-PatchBaseline/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-PatchBaseline/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-PatchBaseline/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-PatchBaseline/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-PatchBaseline/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-PatchBaseline/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-PatchBaseline/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-PatchBaseline/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-PatchBaseline/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-PatchBaseline/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name Resources: Resource: Type: AWS::SSM::PatchBaseline Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SSM-ResourceDataSync/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Parameters: SyncName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-syncname Resources: Resource: Type: AWS::SSM::ResourceDataSync Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html Properties: SyncName: !Ref 'SyncName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-CodeRepository/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: GitConfig: RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-CodeRepository/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: GitConfig: RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-CodeRepository/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: GitConfig: RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-CodeRepository/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: GitConfig: RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-CodeRepository/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: GitConfig: RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-CodeRepository/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: GitConfig: RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-CodeRepository/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: GitConfig: RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-CodeRepository/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: GitConfig: RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-CodeRepository/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: GitConfig: RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-CodeRepository/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: GitConfig: RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-CodeRepository/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: GitConfig: RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-CodeRepository/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: GitConfig: RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-CodeRepository/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Parameters: GitConfigRepositoryUrl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-coderepository-gitconfig.html#cfn-sagemaker-coderepository-gitconfig-repositoryurl Resources: Resource: Type: AWS::SageMaker::CodeRepository Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-coderepository.html Properties: GitConfig: RepositoryUrl: !Ref 'GitConfigRepositoryUrl' Outputs: CodeRepositoryName: Value: GetAtt: - Resource - CodeRepositoryName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Endpoint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Parameters: EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointconfigname Resources: Resource: Type: AWS::SageMaker::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Properties: EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointName: Value: GetAtt: - Resource - EndpointName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Endpoint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Parameters: EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointconfigname Resources: Resource: Type: AWS::SageMaker::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Properties: EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointName: Value: GetAtt: - Resource - EndpointName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Endpoint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Parameters: EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointconfigname Resources: Resource: Type: AWS::SageMaker::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Properties: EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointName: Value: GetAtt: - Resource - EndpointName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Endpoint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Parameters: EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointconfigname Resources: Resource: Type: AWS::SageMaker::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Properties: EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointName: Value: GetAtt: - Resource - EndpointName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Endpoint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Parameters: EndpointConfigName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointconfigname Resources: Resource: Type: AWS::SageMaker::Endpoint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html Properties: EndpointConfigName: !Ref 'EndpointConfigName' Outputs: EndpointName: Value: GetAtt: - Resource - EndpointName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-EndpointConfig/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Resources: Resource: Type: AWS::SageMaker::EndpointConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Outputs: EndpointConfigName: Value: GetAtt: - Resource - EndpointConfigName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-EndpointConfig/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Resources: Resource: Type: AWS::SageMaker::EndpointConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Outputs: EndpointConfigName: Value: GetAtt: - Resource - EndpointConfigName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-EndpointConfig/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Resources: Resource: Type: AWS::SageMaker::EndpointConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Outputs: EndpointConfigName: Value: GetAtt: - Resource - EndpointConfigName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-EndpointConfig/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Resources: Resource: Type: AWS::SageMaker::EndpointConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Outputs: EndpointConfigName: Value: GetAtt: - Resource - EndpointConfigName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-EndpointConfig/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Resources: Resource: Type: AWS::SageMaker::EndpointConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html Outputs: EndpointConfigName: Value: GetAtt: - Resource - EndpointConfigName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Model/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Model/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Model/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Model/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Model/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Model/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Model/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Model/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Model/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Model/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Model/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Model/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Parameters: ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn Resources: Resource: Type: AWS::SageMaker::Model Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html Properties: ExecutionRoleArn: !Ref 'ExecutionRoleArn' Outputs: ModelName: Value: GetAtt: - Resource - ModelName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstance/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: RoleArn: !Ref 'RoleArn' InstanceType: !Ref 'InstanceType' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstance/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: RoleArn: !Ref 'RoleArn' InstanceType: !Ref 'InstanceType' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstance/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: RoleArn: !Ref 'RoleArn' InstanceType: !Ref 'InstanceType' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstance/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: RoleArn: !Ref 'RoleArn' InstanceType: !Ref 'InstanceType' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstance/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: RoleArn: !Ref 'RoleArn' InstanceType: !Ref 'InstanceType' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstance/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: RoleArn: !Ref 'RoleArn' InstanceType: !Ref 'InstanceType' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: RoleArn: !Ref 'RoleArn' InstanceType: !Ref 'InstanceType' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: RoleArn: !Ref 'RoleArn' InstanceType: !Ref 'InstanceType' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: RoleArn: !Ref 'RoleArn' InstanceType: !Ref 'InstanceType' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: RoleArn: !Ref 'RoleArn' InstanceType: !Ref 'InstanceType' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: RoleArn: !Ref 'RoleArn' InstanceType: !Ref 'InstanceType' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstance/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: RoleArn: !Ref 'RoleArn' InstanceType: !Ref 'InstanceType' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn InstanceType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype Resources: Resource: Type: AWS::SageMaker::NotebookInstance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html Properties: RoleArn: !Ref 'RoleArn' InstanceType: !Ref 'InstanceType' Outputs: NotebookInstanceName: Value: GetAtt: - Resource - NotebookInstanceName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstanceLifecycleConfig/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Resources: Resource: Type: AWS::SageMaker::NotebookInstanceLifecycleConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Outputs: NotebookInstanceLifecycleConfigName: Value: GetAtt: - Resource - NotebookInstanceLifecycleConfigName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstanceLifecycleConfig/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Resources: Resource: Type: AWS::SageMaker::NotebookInstanceLifecycleConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Outputs: NotebookInstanceLifecycleConfigName: Value: GetAtt: - Resource - NotebookInstanceLifecycleConfigName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstanceLifecycleConfig/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Resources: Resource: Type: AWS::SageMaker::NotebookInstanceLifecycleConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Outputs: NotebookInstanceLifecycleConfigName: Value: GetAtt: - Resource - NotebookInstanceLifecycleConfigName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstanceLifecycleConfig/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Resources: Resource: Type: AWS::SageMaker::NotebookInstanceLifecycleConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Outputs: NotebookInstanceLifecycleConfigName: Value: GetAtt: - Resource - NotebookInstanceLifecycleConfigName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-NotebookInstanceLifecycleConfig/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Resources: Resource: Type: AWS::SageMaker::NotebookInstanceLifecycleConfig Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html Outputs: NotebookInstanceLifecycleConfigName: Value: GetAtt: - Resource - NotebookInstanceLifecycleConfigName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Workteam/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Resources: Resource: Type: AWS::SageMaker::Workteam Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Outputs: WorkteamName: Value: GetAtt: - Resource - WorkteamName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Workteam/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Resources: Resource: Type: AWS::SageMaker::Workteam Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Outputs: WorkteamName: Value: GetAtt: - Resource - WorkteamName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Workteam/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Resources: Resource: Type: AWS::SageMaker::Workteam Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Outputs: WorkteamName: Value: GetAtt: - Resource - WorkteamName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Workteam/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Resources: Resource: Type: AWS::SageMaker::Workteam Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Outputs: WorkteamName: Value: GetAtt: - Resource - WorkteamName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Workteam/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Resources: Resource: Type: AWS::SageMaker::Workteam Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Outputs: WorkteamName: Value: GetAtt: - Resource - WorkteamName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SageMaker-Workteam/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Resources: Resource: Type: AWS::SageMaker::Workteam Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-workteam.html Outputs: WorkteamName: Value: GetAtt: - Resource - WorkteamName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-ResourcePolicy/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-secretid ResourcePolicy: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html#cfn-secretsmanager-resourcepolicy-resourcepolicy Resources: Resource: Type: AWS::SecretsManager::ResourcePolicy Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-resourcepolicy.html Properties: SecretId: !Ref 'SecretId' ResourcePolicy: !Ref 'ResourcePolicy' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-RotationSchedule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#cfn-secretsmanager-rotationschedule-secretid Resources: Resource: Type: AWS::SecretsManager::RotationSchedule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html Properties: SecretId: !Ref 'SecretId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-Secret/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html Resources: Resource: Type: AWS::SecretsManager::Secret Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecretsManager-SecretTargetAttachment/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Parameters: SecretId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-secretid TargetType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targettype TargetId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html#cfn-secretsmanager-secrettargetattachment-targetid Resources: Resource: Type: AWS::SecretsManager::SecretTargetAttachment Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secrettargetattachment.html Properties: SecretId: !Ref 'SecretId' TargetType: !Ref 'TargetType' TargetId: !Ref 'TargetId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-SecurityHub-Hub/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html Resources: Resource: Type: AWS::SecurityHub::Hub Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-AcceptedPortfolioShare/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::AcceptedPortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html Properties: PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProduct/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Parameters: Owner: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-owner Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-name Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html Properties: Owner: !Ref 'Owner' Name: !Ref 'Name' Outputs: ProductName: Value: GetAtt: - Resource - ProductName ProvisioningArtifactIds: Value: GetAtt: - Resource - ProvisioningArtifactIds ProvisioningArtifactNames: Value: GetAtt: - Resource - ProvisioningArtifactNames ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn RecordId: Value: GetAtt: - Resource - RecordId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn RecordId: Value: GetAtt: - Resource - RecordId ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-CloudFormationProvisionedProduct/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Resources: Resource: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html Outputs: ProvisionedProductId: Value: GetAtt: - Resource - ProvisionedProductId RecordId: Value: GetAtt: - Resource - RecordId CloudformationStackArn: Value: GetAtt: - Resource - CloudformationStackArn Outputs: Value: GetAtt: - Resource - Outputs ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchNotificationConstraint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchNotificationConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchRoleConstraint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html#cfn-servicecatalog-launchroleconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::LaunchRoleConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchroleconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-LaunchTemplateConstraint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid Rules: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules Resources: Resource: Type: AWS::ServiceCatalog::LaunchTemplateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' Rules: !Ref 'Rules' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-Portfolio/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Parameters: ProviderName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername DisplayName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname Resources: Resource: Type: AWS::ServiceCatalog::Portfolio Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html Properties: ProviderName: !Ref 'ProviderName' DisplayName: !Ref 'DisplayName' Outputs: PortfolioName: Value: GetAtt: - Resource - PortfolioName ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioPrincipalAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Parameters: PrincipalARN: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid PrincipalType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype Resources: Resource: Type: AWS::ServiceCatalog::PortfolioPrincipalAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html Properties: PrincipalARN: !Ref 'PrincipalARN' PortfolioId: !Ref 'PortfolioId' PrincipalType: !Ref 'PrincipalType' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioProductAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Parameters: PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioProductAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html Properties: PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-PortfolioShare/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Parameters: AccountId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-accountid PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#cfn-servicecatalog-portfolioshare-portfolioid Resources: Resource: Type: AWS::ServiceCatalog::PortfolioShare Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html Properties: AccountId: !Ref 'AccountId' PortfolioId: !Ref 'PortfolioId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-ResourceUpdateConstraint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Parameters: TagUpdateOnProvisionedProduct: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-tagupdateonprovisionedproduct PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#cfn-servicecatalog-resourceupdateconstraint-productid Resources: Resource: Type: AWS::ServiceCatalog::ResourceUpdateConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html Properties: TagUpdateOnProvisionedProduct: !Ref 'TagUpdateOnProvisionedProduct' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-StackSetConstraint/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Parameters: Description: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-description StackInstanceControl: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-stackinstancecontrol PortfolioId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-portfolioid ProductId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-productid AdminRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-adminrole ExecutionRole: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html#cfn-servicecatalog-stacksetconstraint-executionrole Resources: Resource: Type: AWS::ServiceCatalog::StackSetConstraint Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-stacksetconstraint.html Properties: Description: !Ref 'Description' StackInstanceControl: !Ref 'StackInstanceControl' PortfolioId: !Ref 'PortfolioId' ProductId: !Ref 'ProductId' AdminRole: !Ref 'AdminRole' ExecutionRole: !Ref 'ExecutionRole' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOption/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Parameters: Value: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key Resources: Resource: Type: AWS::ServiceCatalog::TagOption Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html Properties: Value: !Ref 'Value' Key: !Ref 'Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceCatalog-TagOptionAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Parameters: TagOptionId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-tagoptionid ResourceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html#cfn-servicecatalog-tagoptionassociation-resourceid Resources: Resource: Type: AWS::ServiceCatalog::TagOptionAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html Properties: TagOptionId: !Ref 'TagOptionId' ResourceId: !Ref 'ResourceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-HttpNamespace/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html#cfn-servicediscovery-httpnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::HttpNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-httpnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Instance/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Parameters: InstanceAttributes: Type: Json Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes ServiceId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid Resources: Resource: Type: AWS::ServiceDiscovery::Instance Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html Properties: InstanceAttributes: !Ref 'InstanceAttributes' ServiceId: !Ref 'ServiceId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PrivateDnsNamespace/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Parameters: Vpc: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PrivateDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html Properties: Vpc: !Ref 'Vpc' Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-PublicDnsNamespace/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name Resources: Resource: Type: AWS::ServiceDiscovery::PublicDnsNamespace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html Properties: Name: !Ref 'Name' Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-ServiceDiscovery-Service/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Resources: Resource: Type: AWS::ServiceDiscovery::Service Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html Outputs: Id: Value: GetAtt: - Resource - Id Arn: Value: GetAtt: - Resource - Arn Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-StepFunctions-Activity/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html#cfn-stepfunctions-activity-name Resources: Resource: Type: AWS::StepFunctions::Activity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Properties: Name: !Ref 'Name' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-StepFunctions-Activity/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html#cfn-stepfunctions-activity-name Resources: Resource: Type: AWS::StepFunctions::Activity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Properties: Name: !Ref 'Name' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-StepFunctions-Activity/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html#cfn-stepfunctions-activity-name Resources: Resource: Type: AWS::StepFunctions::Activity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Properties: Name: !Ref 'Name' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-StepFunctions-Activity/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html#cfn-stepfunctions-activity-name Resources: Resource: Type: AWS::StepFunctions::Activity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Properties: Name: !Ref 'Name' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-StepFunctions-Activity/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html#cfn-stepfunctions-activity-name Resources: Resource: Type: AWS::StepFunctions::Activity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Properties: Name: !Ref 'Name' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-StepFunctions-Activity/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html#cfn-stepfunctions-activity-name Resources: Resource: Type: AWS::StepFunctions::Activity Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html Properties: Name: !Ref 'Name' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-StepFunctions-StateMachine/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-rolearn Resources: Resource: Type: AWS::StepFunctions::StateMachine Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-StepFunctions-StateMachine/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-rolearn Resources: Resource: Type: AWS::StepFunctions::StateMachine Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-StepFunctions-StateMachine/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-rolearn Resources: Resource: Type: AWS::StepFunctions::StateMachine Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-StepFunctions-StateMachine/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-rolearn Resources: Resource: Type: AWS::StepFunctions::StateMachine Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-StepFunctions-StateMachine/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-rolearn Resources: Resource: Type: AWS::StepFunctions::StateMachine Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-StepFunctions-StateMachine/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Parameters: RoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-rolearn Resources: Resource: Type: AWS::StepFunctions::StateMachine Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html Properties: RoleArn: !Ref 'RoleArn' Outputs: Name: Value: GetAtt: - Resource - Name ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Synthetics-Canary/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-name ArtifactS3Location: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-artifacts3location ScheduleExpression: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-expression ExecutionRoleArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-executionrolearn RuntimeVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-runtimeversion StartCanaryAfterCreation: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-startcanaryaftercreation AllowedValues: - 'true' - 'false' Resources: Resource: Type: AWS::Synthetics::Canary Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html Properties: Name: !Ref 'Name' Code: {} ArtifactS3Location: !Ref 'ArtifactS3Location' Schedule: Expression: !Ref 'ScheduleExpression' ExecutionRoleArn: !Ref 'ExecutionRoleArn' RuntimeVersion: !Ref 'RuntimeVersion' StartCanaryAfterCreation: !Ref 'StartCanaryAfterCreation' Outputs: Id: Value: GetAtt: - Resource - Id State: Value: GetAtt: - Resource - State ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-Server/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Resources: Resource: Type: AWS::Transfer::Server Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-server.html Outputs: ServerId: Value: GetAtt: - Resource - ServerId Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-Transfer-User/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Parameters: Role: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-role ServerId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-serverid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html#cfn-transfer-user-username Resources: Resource: Type: AWS::Transfer::User Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-user.html Properties: Role: !Ref 'Role' ServerId: !Ref 'ServerId' UserName: !Ref 'UserName' Outputs: ServerId: Value: GetAtt: - Resource - ServerId UserName: Value: GetAtt: - Resource - UserName Arn: Value: GetAtt: - Resource - Arn ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-ByteMatchSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name Resources: Resource: Type: AWS::WAF::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-IPSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name Resources: Resource: Type: AWS::WAF::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-Rule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name Resources: Resource: Type: AWS::WAF::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SizeConstraintSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name Resources: Resource: Type: AWS::WAF::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-SqlInjectionMatchSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAF::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-WebACL/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Parameters: WafActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name Resources: Resource: Type: AWS::WAF::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html Properties: DefaultAction: Type: !Ref 'WafActionType' MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAF-XssMatchSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name Resources: Resource: Type: AWS::WAF::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-ByteMatchSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name Resources: Resource: Type: AWS::WAFRegional::ByteMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-GeoMatchSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name Resources: Resource: Type: AWS::WAFRegional::GeoMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-IPSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-IPSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-IPSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-IPSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-IPSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-IPSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-IPSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-IPSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-IPSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-IPSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-IPSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-IPSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name Resources: Resource: Type: AWS::WAFRegional::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RateBasedRule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-metricname RateLimit: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratelimit RateKey: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-ratekey Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html#cfn-wafregional-ratebasedrule-name Resources: Resource: Type: AWS::WAFRegional::RateBasedRule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ratebasedrule.html Properties: MetricName: !Ref 'MetricName' RateLimit: !Ref 'RateLimit' RateKey: !Ref 'RateKey' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-RegexPatternSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html#cfn-wafregional-regexpatternset-name Resources: Resource: Type: AWS::WAFRegional::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-regexpatternset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-Rule/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-Rule/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-Rule/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-Rule/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-Rule/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-Rule/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-Rule/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-Rule/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-Rule/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-Rule/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-Rule/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-Rule/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name Resources: Resource: Type: AWS::WAFRegional::Rule Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html Properties: MetricName: !Ref 'MetricName' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SizeConstraintSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name Resources: Resource: Type: AWS::WAFRegional::SizeConstraintSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-SqlInjectionMatchSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name Resources: Resource: Type: AWS::WAFRegional::SqlInjectionMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACL/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACL/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACL/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACL/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACL/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACL/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACL/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACL/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACL/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACL/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACL/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACL/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Parameters: MetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname ActionType: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name Resources: Resource: Type: AWS::WAFRegional::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Properties: MetricName: !Ref 'MetricName' DefaultAction: Type: !Ref 'ActionType' Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-WebACLAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn WebACLId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid Resources: Resource: Type: AWS::WAFRegional::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLId: !Ref 'WebACLId' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFRegional-XssMatchSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Parameters: Name: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name Resources: Resource: Type: AWS::WAFRegional::XssMatchSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html Properties: Name: !Ref 'Name' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-IPSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-scope IPAddressVersion: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html#cfn-wafv2-ipset-ipaddressversion Resources: Resource: Type: AWS::WAFv2::IPSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html Properties: Scope: !Ref 'Scope' IPAddressVersion: !Ref 'IPAddressVersion' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RegexPatternSet/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html#cfn-wafv2-regexpatternset-scope Resources: Resource: Type: AWS::WAFv2::RegexPatternSet Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html Properties: Scope: !Ref 'Scope' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-RuleGroup/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Parameters: Capacity: Type: Number Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-capacity Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html#cfn-wafv2-rulegroup-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::RuleGroup Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-rulegroup.html Properties: Capacity: !Ref 'Capacity' Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACL/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Parameters: Scope: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-scope VisibilityConfigSampledRequestsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled AllowedValues: - 'true' - 'false' VisibilityConfigCloudWatchMetricsEnabled: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-cloudwatchmetricsenabled AllowedValues: - 'true' - 'false' VisibilityConfigMetricName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-metricname Resources: Resource: Type: AWS::WAFv2::WebACL Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html Properties: DefaultAction: {} Scope: !Ref 'Scope' VisibilityConfig: SampledRequestsEnabled: !Ref 'VisibilityConfigSampledRequestsEnabled' CloudWatchMetricsEnabled: !Ref 'VisibilityConfigCloudWatchMetricsEnabled' MetricName: !Ref 'VisibilityConfigMetricName' Outputs: Arn: Value: GetAtt: - Resource - Arn Capacity: Value: GetAtt: - Resource - Capacity Id: Value: GetAtt: - Resource - Id ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WAFv2-WebACLAssociation/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Parameters: ResourceArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-resourcearn WebACLArn: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html#cfn-wafv2-webaclassociation-webaclarn Resources: Resource: Type: AWS::WAFv2::WebACLAssociation Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html Properties: ResourceArn: !Ref 'ResourceArn' WebACLArn: !Ref 'WebACLArn' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-af-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-ap-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-ap-northeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-ap-northeast-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-eu-north-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-eu-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-me-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/AWS-WorkSpaces-Workspace/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Parameters: BundleId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid DirectoryId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid UserName: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username Resources: Resource: Type: AWS::WorkSpaces::Workspace Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html Properties: BundleId: !Ref 'BundleId' DirectoryId: !Ref 'DirectoryId' UserName: !Ref 'UserName' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/Alexa-ASK-Skill/16.1.0/product.template-ap-northeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/Alexa-ASK-Skill/16.1.0/product.template-ap-south-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/Alexa-ASK-Skill/16.1.0/product.template-ap-southeast-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/Alexa-ASK-Skill/16.1.0/product.template-ap-southeast-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/Alexa-ASK-Skill/16.1.0/product.template-ca-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/Alexa-ASK-Skill/16.1.0/product.template-eu-central-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/Alexa-ASK-Skill/16.1.0/product.template-eu-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/Alexa-ASK-Skill/16.1.0/product.template-eu-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/Alexa-ASK-Skill/16.1.0/product.template-eu-west-3.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/Alexa-ASK-Skill/16.1.0/product.template-sa-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/Alexa-ASK-Skill/16.1.0/product.template-us-east-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/Alexa-ASK-Skill/16.1.0/product.template-us-east-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/Alexa-ASK-Skill/16.1.0/product.template-us-west-1.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/Alexa-ASK-Skill/16.1.0/product.template-us-west-2.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Parameters: AuthenticationConfigurationRefreshToken: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken AuthenticationConfigurationClientSecret: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret AuthenticationConfigurationClientId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid VendorId: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid SkillPackageS3Bucket: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket SkillPackageS3Key: Type: String Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key Resources: Resource: Type: Alexa::ASK::Skill Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html Properties: AuthenticationConfiguration: RefreshToken: !Ref 'AuthenticationConfigurationRefreshToken' ClientSecret: !Ref 'AuthenticationConfigurationClientSecret' ClientId: !Ref 'AuthenticationConfigurationClientId' VendorId: !Ref 'VendorId' SkillPackage: S3Bucket: !Ref 'SkillPackageS3Bucket' S3Key: !Ref 'SkillPackageS3Key' ================================================ FILE: reference/aws-cloudformation-resources-required-fields-only/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: AWS-ACMPCA-Certificate Owner: central-it@customer.com Description: AWS-ACMPCA-Certificate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ACMPCA-Certificate Tags: - Key: product-type Value: AWS-ACMPCA-Certificate Versions: - Name: 16.1.0 Description: AWS-ACMPCA-Certificate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ACMPCA-Certificate BranchName: 16.1.0 - Name: AWS-ACMPCA-CertificateAuthority Owner: central-it@customer.com Description: AWS-ACMPCA-CertificateAuthority Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ACMPCA-CertificateAuthority Tags: - Key: product-type Value: AWS-ACMPCA-CertificateAuthority Versions: - Name: 16.1.0 Description: AWS-ACMPCA-CertificateAuthority-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ACMPCA-CertificateAuthority BranchName: 16.1.0 - Name: AWS-ACMPCA-CertificateAuthorityActivation Owner: central-it@customer.com Description: AWS-ACMPCA-CertificateAuthorityActivation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ACMPCA-CertificateAuthorityActivation Tags: - Key: product-type Value: AWS-ACMPCA-CertificateAuthorityActivation Versions: - Name: 16.1.0 Description: AWS-ACMPCA-CertificateAuthorityActivation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ACMPCA-CertificateAuthorityActivation BranchName: 16.1.0 - Name: AWS-AccessAnalyzer-Analyzer Owner: central-it@customer.com Description: AWS-AccessAnalyzer-Analyzer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AccessAnalyzer-Analyzer Tags: - Key: product-type Value: AWS-AccessAnalyzer-Analyzer Versions: - Name: 16.1.0 Description: AWS-AccessAnalyzer-Analyzer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AccessAnalyzer-Analyzer BranchName: 16.1.0 - Name: AWS-AmazonMQ-Broker Owner: central-it@customer.com Description: AWS-AmazonMQ-Broker Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AmazonMQ-Broker Tags: - Key: product-type Value: AWS-AmazonMQ-Broker Versions: - Name: 16.1.0 Description: AWS-AmazonMQ-Broker-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AmazonMQ-Broker BranchName: 16.1.0 - Name: AWS-AmazonMQ-Configuration Owner: central-it@customer.com Description: AWS-AmazonMQ-Configuration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AmazonMQ-Configuration Tags: - Key: product-type Value: AWS-AmazonMQ-Configuration Versions: - Name: 16.1.0 Description: AWS-AmazonMQ-Configuration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AmazonMQ-Configuration BranchName: 16.1.0 - Name: AWS-AmazonMQ-ConfigurationAssociation Owner: central-it@customer.com Description: AWS-AmazonMQ-ConfigurationAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AmazonMQ-ConfigurationAssociation Tags: - Key: product-type Value: AWS-AmazonMQ-ConfigurationAssociation Versions: - Name: 16.1.0 Description: AWS-AmazonMQ-ConfigurationAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AmazonMQ-ConfigurationAssociation BranchName: 16.1.0 - Name: AWS-Amplify-App Owner: central-it@customer.com Description: AWS-Amplify-App Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Amplify-App Tags: - Key: product-type Value: AWS-Amplify-App Versions: - Name: 16.1.0 Description: AWS-Amplify-App-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Amplify-App BranchName: 16.1.0 - Name: AWS-Amplify-Branch Owner: central-it@customer.com Description: AWS-Amplify-Branch Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Amplify-Branch Tags: - Key: product-type Value: AWS-Amplify-Branch Versions: - Name: 16.1.0 Description: AWS-Amplify-Branch-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Amplify-Branch BranchName: 16.1.0 - Name: AWS-Amplify-Domain Owner: central-it@customer.com Description: AWS-Amplify-Domain Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Amplify-Domain Tags: - Key: product-type Value: AWS-Amplify-Domain Versions: - Name: 16.1.0 Description: AWS-Amplify-Domain-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Amplify-Domain BranchName: 16.1.0 - Name: AWS-ApiGateway-Account Owner: central-it@customer.com Description: AWS-ApiGateway-Account Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-Account Tags: - Key: product-type Value: AWS-ApiGateway-Account Versions: - Name: 16.1.0 Description: AWS-ApiGateway-Account-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-Account BranchName: 16.1.0 - Name: AWS-ApiGateway-ApiKey Owner: central-it@customer.com Description: AWS-ApiGateway-ApiKey Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-ApiKey Tags: - Key: product-type Value: AWS-ApiGateway-ApiKey Versions: - Name: 16.1.0 Description: AWS-ApiGateway-ApiKey-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-ApiKey BranchName: 16.1.0 - Name: AWS-ApiGateway-Authorizer Owner: central-it@customer.com Description: AWS-ApiGateway-Authorizer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-Authorizer Tags: - Key: product-type Value: AWS-ApiGateway-Authorizer Versions: - Name: 16.1.0 Description: AWS-ApiGateway-Authorizer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-Authorizer BranchName: 16.1.0 - Name: AWS-ApiGateway-BasePathMapping Owner: central-it@customer.com Description: AWS-ApiGateway-BasePathMapping Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-BasePathMapping Tags: - Key: product-type Value: AWS-ApiGateway-BasePathMapping Versions: - Name: 16.1.0 Description: AWS-ApiGateway-BasePathMapping-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-BasePathMapping BranchName: 16.1.0 - Name: AWS-ApiGateway-ClientCertificate Owner: central-it@customer.com Description: AWS-ApiGateway-ClientCertificate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-ClientCertificate Tags: - Key: product-type Value: AWS-ApiGateway-ClientCertificate Versions: - Name: 16.1.0 Description: AWS-ApiGateway-ClientCertificate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-ClientCertificate BranchName: 16.1.0 - Name: AWS-ApiGateway-Deployment Owner: central-it@customer.com Description: AWS-ApiGateway-Deployment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-Deployment Tags: - Key: product-type Value: AWS-ApiGateway-Deployment Versions: - Name: 16.1.0 Description: AWS-ApiGateway-Deployment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-Deployment BranchName: 16.1.0 - Name: AWS-ApiGateway-DocumentationPart Owner: central-it@customer.com Description: AWS-ApiGateway-DocumentationPart Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-DocumentationPart Tags: - Key: product-type Value: AWS-ApiGateway-DocumentationPart Versions: - Name: 16.1.0 Description: AWS-ApiGateway-DocumentationPart-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-DocumentationPart BranchName: 16.1.0 - Name: AWS-ApiGateway-DocumentationVersion Owner: central-it@customer.com Description: AWS-ApiGateway-DocumentationVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-DocumentationVersion Tags: - Key: product-type Value: AWS-ApiGateway-DocumentationVersion Versions: - Name: 16.1.0 Description: AWS-ApiGateway-DocumentationVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-DocumentationVersion BranchName: 16.1.0 - Name: AWS-ApiGateway-DomainName Owner: central-it@customer.com Description: AWS-ApiGateway-DomainName Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-DomainName Tags: - Key: product-type Value: AWS-ApiGateway-DomainName Versions: - Name: 16.1.0 Description: AWS-ApiGateway-DomainName-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-DomainName BranchName: 16.1.0 - Name: AWS-ApiGateway-GatewayResponse Owner: central-it@customer.com Description: AWS-ApiGateway-GatewayResponse Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-GatewayResponse Tags: - Key: product-type Value: AWS-ApiGateway-GatewayResponse Versions: - Name: 16.1.0 Description: AWS-ApiGateway-GatewayResponse-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-GatewayResponse BranchName: 16.1.0 - Name: AWS-ApiGateway-Method Owner: central-it@customer.com Description: AWS-ApiGateway-Method Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-Method Tags: - Key: product-type Value: AWS-ApiGateway-Method Versions: - Name: 16.1.0 Description: AWS-ApiGateway-Method-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-Method BranchName: 16.1.0 - Name: AWS-ApiGateway-Model Owner: central-it@customer.com Description: AWS-ApiGateway-Model Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-Model Tags: - Key: product-type Value: AWS-ApiGateway-Model Versions: - Name: 16.1.0 Description: AWS-ApiGateway-Model-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-Model BranchName: 16.1.0 - Name: AWS-ApiGateway-RequestValidator Owner: central-it@customer.com Description: AWS-ApiGateway-RequestValidator Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-RequestValidator Tags: - Key: product-type Value: AWS-ApiGateway-RequestValidator Versions: - Name: 16.1.0 Description: AWS-ApiGateway-RequestValidator-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-RequestValidator BranchName: 16.1.0 - Name: AWS-ApiGateway-Resource Owner: central-it@customer.com Description: AWS-ApiGateway-Resource Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-Resource Tags: - Key: product-type Value: AWS-ApiGateway-Resource Versions: - Name: 16.1.0 Description: AWS-ApiGateway-Resource-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-Resource BranchName: 16.1.0 - Name: AWS-ApiGateway-RestApi Owner: central-it@customer.com Description: AWS-ApiGateway-RestApi Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-RestApi Tags: - Key: product-type Value: AWS-ApiGateway-RestApi Versions: - Name: 16.1.0 Description: AWS-ApiGateway-RestApi-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-RestApi BranchName: 16.1.0 - Name: AWS-ApiGateway-Stage Owner: central-it@customer.com Description: AWS-ApiGateway-Stage Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-Stage Tags: - Key: product-type Value: AWS-ApiGateway-Stage Versions: - Name: 16.1.0 Description: AWS-ApiGateway-Stage-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-Stage BranchName: 16.1.0 - Name: AWS-ApiGateway-UsagePlan Owner: central-it@customer.com Description: AWS-ApiGateway-UsagePlan Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-UsagePlan Tags: - Key: product-type Value: AWS-ApiGateway-UsagePlan Versions: - Name: 16.1.0 Description: AWS-ApiGateway-UsagePlan-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-UsagePlan BranchName: 16.1.0 - Name: AWS-ApiGateway-UsagePlanKey Owner: central-it@customer.com Description: AWS-ApiGateway-UsagePlanKey Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-UsagePlanKey Tags: - Key: product-type Value: AWS-ApiGateway-UsagePlanKey Versions: - Name: 16.1.0 Description: AWS-ApiGateway-UsagePlanKey-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-UsagePlanKey BranchName: 16.1.0 - Name: AWS-ApiGateway-VpcLink Owner: central-it@customer.com Description: AWS-ApiGateway-VpcLink Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGateway-VpcLink Tags: - Key: product-type Value: AWS-ApiGateway-VpcLink Versions: - Name: 16.1.0 Description: AWS-ApiGateway-VpcLink-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGateway-VpcLink BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-Api Owner: central-it@customer.com Description: AWS-ApiGatewayV2-Api Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-Api Tags: - Key: product-type Value: AWS-ApiGatewayV2-Api Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-Api-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-Api BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-ApiMapping Owner: central-it@customer.com Description: AWS-ApiGatewayV2-ApiMapping Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-ApiMapping Tags: - Key: product-type Value: AWS-ApiGatewayV2-ApiMapping Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-ApiMapping-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-ApiMapping BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-Authorizer Owner: central-it@customer.com Description: AWS-ApiGatewayV2-Authorizer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-Authorizer Tags: - Key: product-type Value: AWS-ApiGatewayV2-Authorizer Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-Authorizer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-Authorizer BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-Deployment Owner: central-it@customer.com Description: AWS-ApiGatewayV2-Deployment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-Deployment Tags: - Key: product-type Value: AWS-ApiGatewayV2-Deployment Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-Deployment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-Deployment BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-DomainName Owner: central-it@customer.com Description: AWS-ApiGatewayV2-DomainName Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-DomainName Tags: - Key: product-type Value: AWS-ApiGatewayV2-DomainName Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-DomainName-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-DomainName BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-Integration Owner: central-it@customer.com Description: AWS-ApiGatewayV2-Integration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-Integration Tags: - Key: product-type Value: AWS-ApiGatewayV2-Integration Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-Integration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-Integration BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-IntegrationResponse Owner: central-it@customer.com Description: AWS-ApiGatewayV2-IntegrationResponse Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-IntegrationResponse Tags: - Key: product-type Value: AWS-ApiGatewayV2-IntegrationResponse Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-IntegrationResponse-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-IntegrationResponse BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-Model Owner: central-it@customer.com Description: AWS-ApiGatewayV2-Model Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-Model Tags: - Key: product-type Value: AWS-ApiGatewayV2-Model Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-Model-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-Model BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-Route Owner: central-it@customer.com Description: AWS-ApiGatewayV2-Route Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-Route Tags: - Key: product-type Value: AWS-ApiGatewayV2-Route Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-Route-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-Route BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-RouteResponse Owner: central-it@customer.com Description: AWS-ApiGatewayV2-RouteResponse Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-RouteResponse Tags: - Key: product-type Value: AWS-ApiGatewayV2-RouteResponse Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-RouteResponse-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-RouteResponse BranchName: 16.1.0 - Name: AWS-ApiGatewayV2-Stage Owner: central-it@customer.com Description: AWS-ApiGatewayV2-Stage Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApiGatewayV2-Stage Tags: - Key: product-type Value: AWS-ApiGatewayV2-Stage Versions: - Name: 16.1.0 Description: AWS-ApiGatewayV2-Stage-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApiGatewayV2-Stage BranchName: 16.1.0 - Name: AWS-AppConfig-Application Owner: central-it@customer.com Description: AWS-AppConfig-Application Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppConfig-Application Tags: - Key: product-type Value: AWS-AppConfig-Application Versions: - Name: 16.1.0 Description: AWS-AppConfig-Application-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppConfig-Application BranchName: 16.1.0 - Name: AWS-AppConfig-ConfigurationProfile Owner: central-it@customer.com Description: AWS-AppConfig-ConfigurationProfile Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppConfig-ConfigurationProfile Tags: - Key: product-type Value: AWS-AppConfig-ConfigurationProfile Versions: - Name: 16.1.0 Description: AWS-AppConfig-ConfigurationProfile-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppConfig-ConfigurationProfile BranchName: 16.1.0 - Name: AWS-AppConfig-Deployment Owner: central-it@customer.com Description: AWS-AppConfig-Deployment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppConfig-Deployment Tags: - Key: product-type Value: AWS-AppConfig-Deployment Versions: - Name: 16.1.0 Description: AWS-AppConfig-Deployment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppConfig-Deployment BranchName: 16.1.0 - Name: AWS-AppConfig-DeploymentStrategy Owner: central-it@customer.com Description: AWS-AppConfig-DeploymentStrategy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppConfig-DeploymentStrategy Tags: - Key: product-type Value: AWS-AppConfig-DeploymentStrategy Versions: - Name: 16.1.0 Description: AWS-AppConfig-DeploymentStrategy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppConfig-DeploymentStrategy BranchName: 16.1.0 - Name: AWS-AppConfig-Environment Owner: central-it@customer.com Description: AWS-AppConfig-Environment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppConfig-Environment Tags: - Key: product-type Value: AWS-AppConfig-Environment Versions: - Name: 16.1.0 Description: AWS-AppConfig-Environment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppConfig-Environment BranchName: 16.1.0 - Name: AWS-AppConfig-HostedConfigurationVersion Owner: central-it@customer.com Description: AWS-AppConfig-HostedConfigurationVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppConfig-HostedConfigurationVersion Tags: - Key: product-type Value: AWS-AppConfig-HostedConfigurationVersion Versions: - Name: 16.1.0 Description: AWS-AppConfig-HostedConfigurationVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppConfig-HostedConfigurationVersion BranchName: 16.1.0 - Name: AWS-AppMesh-Mesh Owner: central-it@customer.com Description: AWS-AppMesh-Mesh Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppMesh-Mesh Tags: - Key: product-type Value: AWS-AppMesh-Mesh Versions: - Name: 16.1.0 Description: AWS-AppMesh-Mesh-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppMesh-Mesh BranchName: 16.1.0 - Name: AWS-AppMesh-Route Owner: central-it@customer.com Description: AWS-AppMesh-Route Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppMesh-Route Tags: - Key: product-type Value: AWS-AppMesh-Route Versions: - Name: 16.1.0 Description: AWS-AppMesh-Route-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppMesh-Route BranchName: 16.1.0 - Name: AWS-AppMesh-VirtualNode Owner: central-it@customer.com Description: AWS-AppMesh-VirtualNode Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppMesh-VirtualNode Tags: - Key: product-type Value: AWS-AppMesh-VirtualNode Versions: - Name: 16.1.0 Description: AWS-AppMesh-VirtualNode-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppMesh-VirtualNode BranchName: 16.1.0 - Name: AWS-AppMesh-VirtualRouter Owner: central-it@customer.com Description: AWS-AppMesh-VirtualRouter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppMesh-VirtualRouter Tags: - Key: product-type Value: AWS-AppMesh-VirtualRouter Versions: - Name: 16.1.0 Description: AWS-AppMesh-VirtualRouter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppMesh-VirtualRouter BranchName: 16.1.0 - Name: AWS-AppMesh-VirtualService Owner: central-it@customer.com Description: AWS-AppMesh-VirtualService Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppMesh-VirtualService Tags: - Key: product-type Value: AWS-AppMesh-VirtualService Versions: - Name: 16.1.0 Description: AWS-AppMesh-VirtualService-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppMesh-VirtualService BranchName: 16.1.0 - Name: AWS-AppStream-DirectoryConfig Owner: central-it@customer.com Description: AWS-AppStream-DirectoryConfig Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppStream-DirectoryConfig Tags: - Key: product-type Value: AWS-AppStream-DirectoryConfig Versions: - Name: 16.1.0 Description: AWS-AppStream-DirectoryConfig-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppStream-DirectoryConfig BranchName: 16.1.0 - Name: AWS-AppStream-Fleet Owner: central-it@customer.com Description: AWS-AppStream-Fleet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppStream-Fleet Tags: - Key: product-type Value: AWS-AppStream-Fleet Versions: - Name: 16.1.0 Description: AWS-AppStream-Fleet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppStream-Fleet BranchName: 16.1.0 - Name: AWS-AppStream-ImageBuilder Owner: central-it@customer.com Description: AWS-AppStream-ImageBuilder Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppStream-ImageBuilder Tags: - Key: product-type Value: AWS-AppStream-ImageBuilder Versions: - Name: 16.1.0 Description: AWS-AppStream-ImageBuilder-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppStream-ImageBuilder BranchName: 16.1.0 - Name: AWS-AppStream-Stack Owner: central-it@customer.com Description: AWS-AppStream-Stack Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppStream-Stack Tags: - Key: product-type Value: AWS-AppStream-Stack Versions: - Name: 16.1.0 Description: AWS-AppStream-Stack-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppStream-Stack BranchName: 16.1.0 - Name: AWS-AppStream-StackFleetAssociation Owner: central-it@customer.com Description: AWS-AppStream-StackFleetAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppStream-StackFleetAssociation Tags: - Key: product-type Value: AWS-AppStream-StackFleetAssociation Versions: - Name: 16.1.0 Description: AWS-AppStream-StackFleetAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppStream-StackFleetAssociation BranchName: 16.1.0 - Name: AWS-AppStream-StackUserAssociation Owner: central-it@customer.com Description: AWS-AppStream-StackUserAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppStream-StackUserAssociation Tags: - Key: product-type Value: AWS-AppStream-StackUserAssociation Versions: - Name: 16.1.0 Description: AWS-AppStream-StackUserAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppStream-StackUserAssociation BranchName: 16.1.0 - Name: AWS-AppStream-User Owner: central-it@customer.com Description: AWS-AppStream-User Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppStream-User Tags: - Key: product-type Value: AWS-AppStream-User Versions: - Name: 16.1.0 Description: AWS-AppStream-User-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppStream-User BranchName: 16.1.0 - Name: AWS-AppSync-ApiCache Owner: central-it@customer.com Description: AWS-AppSync-ApiCache Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppSync-ApiCache Tags: - Key: product-type Value: AWS-AppSync-ApiCache Versions: - Name: 16.1.0 Description: AWS-AppSync-ApiCache-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppSync-ApiCache BranchName: 16.1.0 - Name: AWS-AppSync-ApiKey Owner: central-it@customer.com Description: AWS-AppSync-ApiKey Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppSync-ApiKey Tags: - Key: product-type Value: AWS-AppSync-ApiKey Versions: - Name: 16.1.0 Description: AWS-AppSync-ApiKey-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppSync-ApiKey BranchName: 16.1.0 - Name: AWS-AppSync-DataSource Owner: central-it@customer.com Description: AWS-AppSync-DataSource Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppSync-DataSource Tags: - Key: product-type Value: AWS-AppSync-DataSource Versions: - Name: 16.1.0 Description: AWS-AppSync-DataSource-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppSync-DataSource BranchName: 16.1.0 - Name: AWS-AppSync-FunctionConfiguration Owner: central-it@customer.com Description: AWS-AppSync-FunctionConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppSync-FunctionConfiguration Tags: - Key: product-type Value: AWS-AppSync-FunctionConfiguration Versions: - Name: 16.1.0 Description: AWS-AppSync-FunctionConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppSync-FunctionConfiguration BranchName: 16.1.0 - Name: AWS-AppSync-GraphQLApi Owner: central-it@customer.com Description: AWS-AppSync-GraphQLApi Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppSync-GraphQLApi Tags: - Key: product-type Value: AWS-AppSync-GraphQLApi Versions: - Name: 16.1.0 Description: AWS-AppSync-GraphQLApi-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppSync-GraphQLApi BranchName: 16.1.0 - Name: AWS-AppSync-GraphQLSchema Owner: central-it@customer.com Description: AWS-AppSync-GraphQLSchema Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppSync-GraphQLSchema Tags: - Key: product-type Value: AWS-AppSync-GraphQLSchema Versions: - Name: 16.1.0 Description: AWS-AppSync-GraphQLSchema-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppSync-GraphQLSchema BranchName: 16.1.0 - Name: AWS-AppSync-Resolver Owner: central-it@customer.com Description: AWS-AppSync-Resolver Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AppSync-Resolver Tags: - Key: product-type Value: AWS-AppSync-Resolver Versions: - Name: 16.1.0 Description: AWS-AppSync-Resolver-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AppSync-Resolver BranchName: 16.1.0 - Name: AWS-ApplicationAutoScaling-ScalableTarget Owner: central-it@customer.com Description: AWS-ApplicationAutoScaling-ScalableTarget Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApplicationAutoScaling-ScalableTarget Tags: - Key: product-type Value: AWS-ApplicationAutoScaling-ScalableTarget Versions: - Name: 16.1.0 Description: AWS-ApplicationAutoScaling-ScalableTarget-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApplicationAutoScaling-ScalableTarget BranchName: 16.1.0 - Name: AWS-ApplicationAutoScaling-ScalingPolicy Owner: central-it@customer.com Description: AWS-ApplicationAutoScaling-ScalingPolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ApplicationAutoScaling-ScalingPolicy Tags: - Key: product-type Value: AWS-ApplicationAutoScaling-ScalingPolicy Versions: - Name: 16.1.0 Description: AWS-ApplicationAutoScaling-ScalingPolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ApplicationAutoScaling-ScalingPolicy BranchName: 16.1.0 - Name: AWS-Athena-DataCatalog Owner: central-it@customer.com Description: AWS-Athena-DataCatalog Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Athena-DataCatalog Tags: - Key: product-type Value: AWS-Athena-DataCatalog Versions: - Name: 16.1.0 Description: AWS-Athena-DataCatalog-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Athena-DataCatalog BranchName: 16.1.0 - Name: AWS-Athena-NamedQuery Owner: central-it@customer.com Description: AWS-Athena-NamedQuery Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Athena-NamedQuery Tags: - Key: product-type Value: AWS-Athena-NamedQuery Versions: - Name: 16.1.0 Description: AWS-Athena-NamedQuery-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Athena-NamedQuery BranchName: 16.1.0 - Name: AWS-Athena-WorkGroup Owner: central-it@customer.com Description: AWS-Athena-WorkGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Athena-WorkGroup Tags: - Key: product-type Value: AWS-Athena-WorkGroup Versions: - Name: 16.1.0 Description: AWS-Athena-WorkGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Athena-WorkGroup BranchName: 16.1.0 - Name: AWS-AutoScaling-AutoScalingGroup Owner: central-it@customer.com Description: AWS-AutoScaling-AutoScalingGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AutoScaling-AutoScalingGroup Tags: - Key: product-type Value: AWS-AutoScaling-AutoScalingGroup Versions: - Name: 16.1.0 Description: AWS-AutoScaling-AutoScalingGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AutoScaling-AutoScalingGroup BranchName: 16.1.0 - Name: AWS-AutoScaling-LaunchConfiguration Owner: central-it@customer.com Description: AWS-AutoScaling-LaunchConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AutoScaling-LaunchConfiguration Tags: - Key: product-type Value: AWS-AutoScaling-LaunchConfiguration Versions: - Name: 16.1.0 Description: AWS-AutoScaling-LaunchConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AutoScaling-LaunchConfiguration BranchName: 16.1.0 - Name: AWS-AutoScaling-LifecycleHook Owner: central-it@customer.com Description: AWS-AutoScaling-LifecycleHook Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AutoScaling-LifecycleHook Tags: - Key: product-type Value: AWS-AutoScaling-LifecycleHook Versions: - Name: 16.1.0 Description: AWS-AutoScaling-LifecycleHook-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AutoScaling-LifecycleHook BranchName: 16.1.0 - Name: AWS-AutoScaling-ScalingPolicy Owner: central-it@customer.com Description: AWS-AutoScaling-ScalingPolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AutoScaling-ScalingPolicy Tags: - Key: product-type Value: AWS-AutoScaling-ScalingPolicy Versions: - Name: 16.1.0 Description: AWS-AutoScaling-ScalingPolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AutoScaling-ScalingPolicy BranchName: 16.1.0 - Name: AWS-AutoScaling-ScheduledAction Owner: central-it@customer.com Description: AWS-AutoScaling-ScheduledAction Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AutoScaling-ScheduledAction Tags: - Key: product-type Value: AWS-AutoScaling-ScheduledAction Versions: - Name: 16.1.0 Description: AWS-AutoScaling-ScheduledAction-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AutoScaling-ScheduledAction BranchName: 16.1.0 - Name: AWS-AutoScalingPlans-ScalingPlan Owner: central-it@customer.com Description: AWS-AutoScalingPlans-ScalingPlan Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-AutoScalingPlans-ScalingPlan Tags: - Key: product-type Value: AWS-AutoScalingPlans-ScalingPlan Versions: - Name: 16.1.0 Description: AWS-AutoScalingPlans-ScalingPlan-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-AutoScalingPlans-ScalingPlan BranchName: 16.1.0 - Name: AWS-Backup-BackupPlan Owner: central-it@customer.com Description: AWS-Backup-BackupPlan Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Backup-BackupPlan Tags: - Key: product-type Value: AWS-Backup-BackupPlan Versions: - Name: 16.1.0 Description: AWS-Backup-BackupPlan-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Backup-BackupPlan BranchName: 16.1.0 - Name: AWS-Backup-BackupSelection Owner: central-it@customer.com Description: AWS-Backup-BackupSelection Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Backup-BackupSelection Tags: - Key: product-type Value: AWS-Backup-BackupSelection Versions: - Name: 16.1.0 Description: AWS-Backup-BackupSelection-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Backup-BackupSelection BranchName: 16.1.0 - Name: AWS-Backup-BackupVault Owner: central-it@customer.com Description: AWS-Backup-BackupVault Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Backup-BackupVault Tags: - Key: product-type Value: AWS-Backup-BackupVault Versions: - Name: 16.1.0 Description: AWS-Backup-BackupVault-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Backup-BackupVault BranchName: 16.1.0 - Name: AWS-Batch-ComputeEnvironment Owner: central-it@customer.com Description: AWS-Batch-ComputeEnvironment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Batch-ComputeEnvironment Tags: - Key: product-type Value: AWS-Batch-ComputeEnvironment Versions: - Name: 16.1.0 Description: AWS-Batch-ComputeEnvironment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Batch-ComputeEnvironment BranchName: 16.1.0 - Name: AWS-Batch-JobDefinition Owner: central-it@customer.com Description: AWS-Batch-JobDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Batch-JobDefinition Tags: - Key: product-type Value: AWS-Batch-JobDefinition Versions: - Name: 16.1.0 Description: AWS-Batch-JobDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Batch-JobDefinition BranchName: 16.1.0 - Name: AWS-Batch-JobQueue Owner: central-it@customer.com Description: AWS-Batch-JobQueue Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Batch-JobQueue Tags: - Key: product-type Value: AWS-Batch-JobQueue Versions: - Name: 16.1.0 Description: AWS-Batch-JobQueue-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Batch-JobQueue BranchName: 16.1.0 - Name: AWS-Budgets-Budget Owner: central-it@customer.com Description: AWS-Budgets-Budget Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Budgets-Budget Tags: - Key: product-type Value: AWS-Budgets-Budget Versions: - Name: 16.1.0 Description: AWS-Budgets-Budget-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Budgets-Budget BranchName: 16.1.0 - Name: AWS-CE-CostCategory Owner: central-it@customer.com Description: AWS-CE-CostCategory Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CE-CostCategory Tags: - Key: product-type Value: AWS-CE-CostCategory Versions: - Name: 16.1.0 Description: AWS-CE-CostCategory-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CE-CostCategory BranchName: 16.1.0 - Name: AWS-Cassandra-Keyspace Owner: central-it@customer.com Description: AWS-Cassandra-Keyspace Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cassandra-Keyspace Tags: - Key: product-type Value: AWS-Cassandra-Keyspace Versions: - Name: 16.1.0 Description: AWS-Cassandra-Keyspace-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cassandra-Keyspace BranchName: 16.1.0 - Name: AWS-Cassandra-Table Owner: central-it@customer.com Description: AWS-Cassandra-Table Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cassandra-Table Tags: - Key: product-type Value: AWS-Cassandra-Table Versions: - Name: 16.1.0 Description: AWS-Cassandra-Table-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cassandra-Table BranchName: 16.1.0 - Name: AWS-CertificateManager-Certificate Owner: central-it@customer.com Description: AWS-CertificateManager-Certificate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CertificateManager-Certificate Tags: - Key: product-type Value: AWS-CertificateManager-Certificate Versions: - Name: 16.1.0 Description: AWS-CertificateManager-Certificate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CertificateManager-Certificate BranchName: 16.1.0 - Name: AWS-Chatbot-SlackChannelConfiguration Owner: central-it@customer.com Description: AWS-Chatbot-SlackChannelConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Chatbot-SlackChannelConfiguration Tags: - Key: product-type Value: AWS-Chatbot-SlackChannelConfiguration Versions: - Name: 16.1.0 Description: AWS-Chatbot-SlackChannelConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Chatbot-SlackChannelConfiguration BranchName: 16.1.0 - Name: AWS-Cloud9-EnvironmentEC2 Owner: central-it@customer.com Description: AWS-Cloud9-EnvironmentEC2 Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cloud9-EnvironmentEC2 Tags: - Key: product-type Value: AWS-Cloud9-EnvironmentEC2 Versions: - Name: 16.1.0 Description: AWS-Cloud9-EnvironmentEC2-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cloud9-EnvironmentEC2 BranchName: 16.1.0 - Name: AWS-CloudFormation-CustomResource Owner: central-it@customer.com Description: AWS-CloudFormation-CustomResource Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFormation-CustomResource Tags: - Key: product-type Value: AWS-CloudFormation-CustomResource Versions: - Name: 16.1.0 Description: AWS-CloudFormation-CustomResource-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFormation-CustomResource BranchName: 16.1.0 - Name: AWS-CloudFormation-Macro Owner: central-it@customer.com Description: AWS-CloudFormation-Macro Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFormation-Macro Tags: - Key: product-type Value: AWS-CloudFormation-Macro Versions: - Name: 16.1.0 Description: AWS-CloudFormation-Macro-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFormation-Macro BranchName: 16.1.0 - Name: AWS-CloudFormation-Stack Owner: central-it@customer.com Description: AWS-CloudFormation-Stack Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFormation-Stack Tags: - Key: product-type Value: AWS-CloudFormation-Stack Versions: - Name: 16.1.0 Description: AWS-CloudFormation-Stack-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFormation-Stack BranchName: 16.1.0 - Name: AWS-CloudFormation-WaitCondition Owner: central-it@customer.com Description: AWS-CloudFormation-WaitCondition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFormation-WaitCondition Tags: - Key: product-type Value: AWS-CloudFormation-WaitCondition Versions: - Name: 16.1.0 Description: AWS-CloudFormation-WaitCondition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFormation-WaitCondition BranchName: 16.1.0 - Name: AWS-CloudFormation-WaitConditionHandle Owner: central-it@customer.com Description: AWS-CloudFormation-WaitConditionHandle Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFormation-WaitConditionHandle Tags: - Key: product-type Value: AWS-CloudFormation-WaitConditionHandle Versions: - Name: 16.1.0 Description: AWS-CloudFormation-WaitConditionHandle-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFormation-WaitConditionHandle BranchName: 16.1.0 - Name: AWS-CloudFront-CloudFrontOriginAccessIdentity Owner: central-it@customer.com Description: AWS-CloudFront-CloudFrontOriginAccessIdentity Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFront-CloudFrontOriginAccessIdentity Tags: - Key: product-type Value: AWS-CloudFront-CloudFrontOriginAccessIdentity Versions: - Name: 16.1.0 Description: AWS-CloudFront-CloudFrontOriginAccessIdentity-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFront-CloudFrontOriginAccessIdentity BranchName: 16.1.0 - Name: AWS-CloudFront-Distribution Owner: central-it@customer.com Description: AWS-CloudFront-Distribution Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFront-Distribution Tags: - Key: product-type Value: AWS-CloudFront-Distribution Versions: - Name: 16.1.0 Description: AWS-CloudFront-Distribution-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFront-Distribution BranchName: 16.1.0 - Name: AWS-CloudFront-StreamingDistribution Owner: central-it@customer.com Description: AWS-CloudFront-StreamingDistribution Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudFront-StreamingDistribution Tags: - Key: product-type Value: AWS-CloudFront-StreamingDistribution Versions: - Name: 16.1.0 Description: AWS-CloudFront-StreamingDistribution-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudFront-StreamingDistribution BranchName: 16.1.0 - Name: AWS-CloudTrail-Trail Owner: central-it@customer.com Description: AWS-CloudTrail-Trail Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudTrail-Trail Tags: - Key: product-type Value: AWS-CloudTrail-Trail Versions: - Name: 16.1.0 Description: AWS-CloudTrail-Trail-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudTrail-Trail BranchName: 16.1.0 - Name: AWS-CloudWatch-Alarm Owner: central-it@customer.com Description: AWS-CloudWatch-Alarm Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudWatch-Alarm Tags: - Key: product-type Value: AWS-CloudWatch-Alarm Versions: - Name: 16.1.0 Description: AWS-CloudWatch-Alarm-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudWatch-Alarm BranchName: 16.1.0 - Name: AWS-CloudWatch-AnomalyDetector Owner: central-it@customer.com Description: AWS-CloudWatch-AnomalyDetector Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudWatch-AnomalyDetector Tags: - Key: product-type Value: AWS-CloudWatch-AnomalyDetector Versions: - Name: 16.1.0 Description: AWS-CloudWatch-AnomalyDetector-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudWatch-AnomalyDetector BranchName: 16.1.0 - Name: AWS-CloudWatch-CompositeAlarm Owner: central-it@customer.com Description: AWS-CloudWatch-CompositeAlarm Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudWatch-CompositeAlarm Tags: - Key: product-type Value: AWS-CloudWatch-CompositeAlarm Versions: - Name: 16.1.0 Description: AWS-CloudWatch-CompositeAlarm-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudWatch-CompositeAlarm BranchName: 16.1.0 - Name: AWS-CloudWatch-Dashboard Owner: central-it@customer.com Description: AWS-CloudWatch-Dashboard Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudWatch-Dashboard Tags: - Key: product-type Value: AWS-CloudWatch-Dashboard Versions: - Name: 16.1.0 Description: AWS-CloudWatch-Dashboard-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudWatch-Dashboard BranchName: 16.1.0 - Name: AWS-CloudWatch-InsightRule Owner: central-it@customer.com Description: AWS-CloudWatch-InsightRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CloudWatch-InsightRule Tags: - Key: product-type Value: AWS-CloudWatch-InsightRule Versions: - Name: 16.1.0 Description: AWS-CloudWatch-InsightRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CloudWatch-InsightRule BranchName: 16.1.0 - Name: AWS-CodeBuild-Project Owner: central-it@customer.com Description: AWS-CodeBuild-Project Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeBuild-Project Tags: - Key: product-type Value: AWS-CodeBuild-Project Versions: - Name: 16.1.0 Description: AWS-CodeBuild-Project-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeBuild-Project BranchName: 16.1.0 - Name: AWS-CodeBuild-ReportGroup Owner: central-it@customer.com Description: AWS-CodeBuild-ReportGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeBuild-ReportGroup Tags: - Key: product-type Value: AWS-CodeBuild-ReportGroup Versions: - Name: 16.1.0 Description: AWS-CodeBuild-ReportGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeBuild-ReportGroup BranchName: 16.1.0 - Name: AWS-CodeBuild-SourceCredential Owner: central-it@customer.com Description: AWS-CodeBuild-SourceCredential Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeBuild-SourceCredential Tags: - Key: product-type Value: AWS-CodeBuild-SourceCredential Versions: - Name: 16.1.0 Description: AWS-CodeBuild-SourceCredential-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeBuild-SourceCredential BranchName: 16.1.0 - Name: AWS-CodeCommit-Repository Owner: central-it@customer.com Description: AWS-CodeCommit-Repository Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeCommit-Repository Tags: - Key: product-type Value: AWS-CodeCommit-Repository Versions: - Name: 16.1.0 Description: AWS-CodeCommit-Repository-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeCommit-Repository BranchName: 16.1.0 - Name: AWS-CodeDeploy-Application Owner: central-it@customer.com Description: AWS-CodeDeploy-Application Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeDeploy-Application Tags: - Key: product-type Value: AWS-CodeDeploy-Application Versions: - Name: 16.1.0 Description: AWS-CodeDeploy-Application-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeDeploy-Application BranchName: 16.1.0 - Name: AWS-CodeDeploy-DeploymentConfig Owner: central-it@customer.com Description: AWS-CodeDeploy-DeploymentConfig Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeDeploy-DeploymentConfig Tags: - Key: product-type Value: AWS-CodeDeploy-DeploymentConfig Versions: - Name: 16.1.0 Description: AWS-CodeDeploy-DeploymentConfig-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeDeploy-DeploymentConfig BranchName: 16.1.0 - Name: AWS-CodeDeploy-DeploymentGroup Owner: central-it@customer.com Description: AWS-CodeDeploy-DeploymentGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeDeploy-DeploymentGroup Tags: - Key: product-type Value: AWS-CodeDeploy-DeploymentGroup Versions: - Name: 16.1.0 Description: AWS-CodeDeploy-DeploymentGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeDeploy-DeploymentGroup BranchName: 16.1.0 - Name: AWS-CodeGuruProfiler-ProfilingGroup Owner: central-it@customer.com Description: AWS-CodeGuruProfiler-ProfilingGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeGuruProfiler-ProfilingGroup Tags: - Key: product-type Value: AWS-CodeGuruProfiler-ProfilingGroup Versions: - Name: 16.1.0 Description: AWS-CodeGuruProfiler-ProfilingGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeGuruProfiler-ProfilingGroup BranchName: 16.1.0 - Name: AWS-CodePipeline-CustomActionType Owner: central-it@customer.com Description: AWS-CodePipeline-CustomActionType Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodePipeline-CustomActionType Tags: - Key: product-type Value: AWS-CodePipeline-CustomActionType Versions: - Name: 16.1.0 Description: AWS-CodePipeline-CustomActionType-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodePipeline-CustomActionType BranchName: 16.1.0 - Name: AWS-CodePipeline-Pipeline Owner: central-it@customer.com Description: AWS-CodePipeline-Pipeline Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodePipeline-Pipeline Tags: - Key: product-type Value: AWS-CodePipeline-Pipeline Versions: - Name: 16.1.0 Description: AWS-CodePipeline-Pipeline-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodePipeline-Pipeline BranchName: 16.1.0 - Name: AWS-CodePipeline-Webhook Owner: central-it@customer.com Description: AWS-CodePipeline-Webhook Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodePipeline-Webhook Tags: - Key: product-type Value: AWS-CodePipeline-Webhook Versions: - Name: 16.1.0 Description: AWS-CodePipeline-Webhook-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodePipeline-Webhook BranchName: 16.1.0 - Name: AWS-CodeStar-GitHubRepository Owner: central-it@customer.com Description: AWS-CodeStar-GitHubRepository Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeStar-GitHubRepository Tags: - Key: product-type Value: AWS-CodeStar-GitHubRepository Versions: - Name: 16.1.0 Description: AWS-CodeStar-GitHubRepository-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeStar-GitHubRepository BranchName: 16.1.0 - Name: AWS-CodeStarConnections-Connection Owner: central-it@customer.com Description: AWS-CodeStarConnections-Connection Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeStarConnections-Connection Tags: - Key: product-type Value: AWS-CodeStarConnections-Connection Versions: - Name: 16.1.0 Description: AWS-CodeStarConnections-Connection-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeStarConnections-Connection BranchName: 16.1.0 - Name: AWS-CodeStarNotifications-NotificationRule Owner: central-it@customer.com Description: AWS-CodeStarNotifications-NotificationRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-CodeStarNotifications-NotificationRule Tags: - Key: product-type Value: AWS-CodeStarNotifications-NotificationRule Versions: - Name: 16.1.0 Description: AWS-CodeStarNotifications-NotificationRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-CodeStarNotifications-NotificationRule BranchName: 16.1.0 - Name: AWS-Cognito-IdentityPool Owner: central-it@customer.com Description: AWS-Cognito-IdentityPool Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-IdentityPool Tags: - Key: product-type Value: AWS-Cognito-IdentityPool Versions: - Name: 16.1.0 Description: AWS-Cognito-IdentityPool-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-IdentityPool BranchName: 16.1.0 - Name: AWS-Cognito-IdentityPoolRoleAttachment Owner: central-it@customer.com Description: AWS-Cognito-IdentityPoolRoleAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-IdentityPoolRoleAttachment Tags: - Key: product-type Value: AWS-Cognito-IdentityPoolRoleAttachment Versions: - Name: 16.1.0 Description: AWS-Cognito-IdentityPoolRoleAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-IdentityPoolRoleAttachment BranchName: 16.1.0 - Name: AWS-Cognito-UserPool Owner: central-it@customer.com Description: AWS-Cognito-UserPool Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPool Tags: - Key: product-type Value: AWS-Cognito-UserPool Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPool-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPool BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolClient Owner: central-it@customer.com Description: AWS-Cognito-UserPoolClient Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolClient Tags: - Key: product-type Value: AWS-Cognito-UserPoolClient Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolClient-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolClient BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolDomain Owner: central-it@customer.com Description: AWS-Cognito-UserPoolDomain Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolDomain Tags: - Key: product-type Value: AWS-Cognito-UserPoolDomain Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolDomain-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolDomain BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolGroup Owner: central-it@customer.com Description: AWS-Cognito-UserPoolGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolGroup Tags: - Key: product-type Value: AWS-Cognito-UserPoolGroup Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolGroup BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolIdentityProvider Owner: central-it@customer.com Description: AWS-Cognito-UserPoolIdentityProvider Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolIdentityProvider Tags: - Key: product-type Value: AWS-Cognito-UserPoolIdentityProvider Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolIdentityProvider-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolIdentityProvider BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolResourceServer Owner: central-it@customer.com Description: AWS-Cognito-UserPoolResourceServer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolResourceServer Tags: - Key: product-type Value: AWS-Cognito-UserPoolResourceServer Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolResourceServer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolResourceServer BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolRiskConfigurationAttachment Owner: central-it@customer.com Description: AWS-Cognito-UserPoolRiskConfigurationAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolRiskConfigurationAttachment Tags: - Key: product-type Value: AWS-Cognito-UserPoolRiskConfigurationAttachment Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolRiskConfigurationAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolRiskConfigurationAttachment BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolUICustomizationAttachment Owner: central-it@customer.com Description: AWS-Cognito-UserPoolUICustomizationAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolUICustomizationAttachment Tags: - Key: product-type Value: AWS-Cognito-UserPoolUICustomizationAttachment Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolUICustomizationAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolUICustomizationAttachment BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolUser Owner: central-it@customer.com Description: AWS-Cognito-UserPoolUser Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolUser Tags: - Key: product-type Value: AWS-Cognito-UserPoolUser Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolUser-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolUser BranchName: 16.1.0 - Name: AWS-Cognito-UserPoolUserToGroupAttachment Owner: central-it@customer.com Description: AWS-Cognito-UserPoolUserToGroupAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Cognito-UserPoolUserToGroupAttachment Tags: - Key: product-type Value: AWS-Cognito-UserPoolUserToGroupAttachment Versions: - Name: 16.1.0 Description: AWS-Cognito-UserPoolUserToGroupAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Cognito-UserPoolUserToGroupAttachment BranchName: 16.1.0 - Name: AWS-Config-AggregationAuthorization Owner: central-it@customer.com Description: AWS-Config-AggregationAuthorization Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-AggregationAuthorization Tags: - Key: product-type Value: AWS-Config-AggregationAuthorization Versions: - Name: 16.1.0 Description: AWS-Config-AggregationAuthorization-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-AggregationAuthorization BranchName: 16.1.0 - Name: AWS-Config-ConfigRule Owner: central-it@customer.com Description: AWS-Config-ConfigRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-ConfigRule Tags: - Key: product-type Value: AWS-Config-ConfigRule Versions: - Name: 16.1.0 Description: AWS-Config-ConfigRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-ConfigRule BranchName: 16.1.0 - Name: AWS-Config-ConfigurationAggregator Owner: central-it@customer.com Description: AWS-Config-ConfigurationAggregator Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-ConfigurationAggregator Tags: - Key: product-type Value: AWS-Config-ConfigurationAggregator Versions: - Name: 16.1.0 Description: AWS-Config-ConfigurationAggregator-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-ConfigurationAggregator BranchName: 16.1.0 - Name: AWS-Config-ConfigurationRecorder Owner: central-it@customer.com Description: AWS-Config-ConfigurationRecorder Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-ConfigurationRecorder Tags: - Key: product-type Value: AWS-Config-ConfigurationRecorder Versions: - Name: 16.1.0 Description: AWS-Config-ConfigurationRecorder-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-ConfigurationRecorder BranchName: 16.1.0 - Name: AWS-Config-ConformancePack Owner: central-it@customer.com Description: AWS-Config-ConformancePack Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-ConformancePack Tags: - Key: product-type Value: AWS-Config-ConformancePack Versions: - Name: 16.1.0 Description: AWS-Config-ConformancePack-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-ConformancePack BranchName: 16.1.0 - Name: AWS-Config-DeliveryChannel Owner: central-it@customer.com Description: AWS-Config-DeliveryChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-DeliveryChannel Tags: - Key: product-type Value: AWS-Config-DeliveryChannel Versions: - Name: 16.1.0 Description: AWS-Config-DeliveryChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-DeliveryChannel BranchName: 16.1.0 - Name: AWS-Config-OrganizationConfigRule Owner: central-it@customer.com Description: AWS-Config-OrganizationConfigRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-OrganizationConfigRule Tags: - Key: product-type Value: AWS-Config-OrganizationConfigRule Versions: - Name: 16.1.0 Description: AWS-Config-OrganizationConfigRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-OrganizationConfigRule BranchName: 16.1.0 - Name: AWS-Config-OrganizationConformancePack Owner: central-it@customer.com Description: AWS-Config-OrganizationConformancePack Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-OrganizationConformancePack Tags: - Key: product-type Value: AWS-Config-OrganizationConformancePack Versions: - Name: 16.1.0 Description: AWS-Config-OrganizationConformancePack-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-OrganizationConformancePack BranchName: 16.1.0 - Name: AWS-Config-RemediationConfiguration Owner: central-it@customer.com Description: AWS-Config-RemediationConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Config-RemediationConfiguration Tags: - Key: product-type Value: AWS-Config-RemediationConfiguration Versions: - Name: 16.1.0 Description: AWS-Config-RemediationConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Config-RemediationConfiguration BranchName: 16.1.0 - Name: AWS-DAX-Cluster Owner: central-it@customer.com Description: AWS-DAX-Cluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DAX-Cluster Tags: - Key: product-type Value: AWS-DAX-Cluster Versions: - Name: 16.1.0 Description: AWS-DAX-Cluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DAX-Cluster BranchName: 16.1.0 - Name: AWS-DAX-ParameterGroup Owner: central-it@customer.com Description: AWS-DAX-ParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DAX-ParameterGroup Tags: - Key: product-type Value: AWS-DAX-ParameterGroup Versions: - Name: 16.1.0 Description: AWS-DAX-ParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DAX-ParameterGroup BranchName: 16.1.0 - Name: AWS-DAX-SubnetGroup Owner: central-it@customer.com Description: AWS-DAX-SubnetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DAX-SubnetGroup Tags: - Key: product-type Value: AWS-DAX-SubnetGroup Versions: - Name: 16.1.0 Description: AWS-DAX-SubnetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DAX-SubnetGroup BranchName: 16.1.0 - Name: AWS-DLM-LifecyclePolicy Owner: central-it@customer.com Description: AWS-DLM-LifecyclePolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DLM-LifecyclePolicy Tags: - Key: product-type Value: AWS-DLM-LifecyclePolicy Versions: - Name: 16.1.0 Description: AWS-DLM-LifecyclePolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DLM-LifecyclePolicy BranchName: 16.1.0 - Name: AWS-DMS-Certificate Owner: central-it@customer.com Description: AWS-DMS-Certificate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DMS-Certificate Tags: - Key: product-type Value: AWS-DMS-Certificate Versions: - Name: 16.1.0 Description: AWS-DMS-Certificate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DMS-Certificate BranchName: 16.1.0 - Name: AWS-DMS-Endpoint Owner: central-it@customer.com Description: AWS-DMS-Endpoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DMS-Endpoint Tags: - Key: product-type Value: AWS-DMS-Endpoint Versions: - Name: 16.1.0 Description: AWS-DMS-Endpoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DMS-Endpoint BranchName: 16.1.0 - Name: AWS-DMS-EventSubscription Owner: central-it@customer.com Description: AWS-DMS-EventSubscription Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DMS-EventSubscription Tags: - Key: product-type Value: AWS-DMS-EventSubscription Versions: - Name: 16.1.0 Description: AWS-DMS-EventSubscription-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DMS-EventSubscription BranchName: 16.1.0 - Name: AWS-DMS-ReplicationInstance Owner: central-it@customer.com Description: AWS-DMS-ReplicationInstance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DMS-ReplicationInstance Tags: - Key: product-type Value: AWS-DMS-ReplicationInstance Versions: - Name: 16.1.0 Description: AWS-DMS-ReplicationInstance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DMS-ReplicationInstance BranchName: 16.1.0 - Name: AWS-DMS-ReplicationSubnetGroup Owner: central-it@customer.com Description: AWS-DMS-ReplicationSubnetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DMS-ReplicationSubnetGroup Tags: - Key: product-type Value: AWS-DMS-ReplicationSubnetGroup Versions: - Name: 16.1.0 Description: AWS-DMS-ReplicationSubnetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DMS-ReplicationSubnetGroup BranchName: 16.1.0 - Name: AWS-DMS-ReplicationTask Owner: central-it@customer.com Description: AWS-DMS-ReplicationTask Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DMS-ReplicationTask Tags: - Key: product-type Value: AWS-DMS-ReplicationTask Versions: - Name: 16.1.0 Description: AWS-DMS-ReplicationTask-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DMS-ReplicationTask BranchName: 16.1.0 - Name: AWS-DataPipeline-Pipeline Owner: central-it@customer.com Description: AWS-DataPipeline-Pipeline Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DataPipeline-Pipeline Tags: - Key: product-type Value: AWS-DataPipeline-Pipeline Versions: - Name: 16.1.0 Description: AWS-DataPipeline-Pipeline-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DataPipeline-Pipeline BranchName: 16.1.0 - Name: AWS-Detective-Graph Owner: central-it@customer.com Description: AWS-Detective-Graph Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Detective-Graph Tags: - Key: product-type Value: AWS-Detective-Graph Versions: - Name: 16.1.0 Description: AWS-Detective-Graph-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Detective-Graph BranchName: 16.1.0 - Name: AWS-Detective-MemberInvitation Owner: central-it@customer.com Description: AWS-Detective-MemberInvitation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Detective-MemberInvitation Tags: - Key: product-type Value: AWS-Detective-MemberInvitation Versions: - Name: 16.1.0 Description: AWS-Detective-MemberInvitation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Detective-MemberInvitation BranchName: 16.1.0 - Name: AWS-DirectoryService-MicrosoftAD Owner: central-it@customer.com Description: AWS-DirectoryService-MicrosoftAD Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DirectoryService-MicrosoftAD Tags: - Key: product-type Value: AWS-DirectoryService-MicrosoftAD Versions: - Name: 16.1.0 Description: AWS-DirectoryService-MicrosoftAD-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DirectoryService-MicrosoftAD BranchName: 16.1.0 - Name: AWS-DirectoryService-SimpleAD Owner: central-it@customer.com Description: AWS-DirectoryService-SimpleAD Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DirectoryService-SimpleAD Tags: - Key: product-type Value: AWS-DirectoryService-SimpleAD Versions: - Name: 16.1.0 Description: AWS-DirectoryService-SimpleAD-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DirectoryService-SimpleAD BranchName: 16.1.0 - Name: AWS-DocDB-DBCluster Owner: central-it@customer.com Description: AWS-DocDB-DBCluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DocDB-DBCluster Tags: - Key: product-type Value: AWS-DocDB-DBCluster Versions: - Name: 16.1.0 Description: AWS-DocDB-DBCluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DocDB-DBCluster BranchName: 16.1.0 - Name: AWS-DocDB-DBClusterParameterGroup Owner: central-it@customer.com Description: AWS-DocDB-DBClusterParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DocDB-DBClusterParameterGroup Tags: - Key: product-type Value: AWS-DocDB-DBClusterParameterGroup Versions: - Name: 16.1.0 Description: AWS-DocDB-DBClusterParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DocDB-DBClusterParameterGroup BranchName: 16.1.0 - Name: AWS-DocDB-DBInstance Owner: central-it@customer.com Description: AWS-DocDB-DBInstance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DocDB-DBInstance Tags: - Key: product-type Value: AWS-DocDB-DBInstance Versions: - Name: 16.1.0 Description: AWS-DocDB-DBInstance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DocDB-DBInstance BranchName: 16.1.0 - Name: AWS-DocDB-DBSubnetGroup Owner: central-it@customer.com Description: AWS-DocDB-DBSubnetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DocDB-DBSubnetGroup Tags: - Key: product-type Value: AWS-DocDB-DBSubnetGroup Versions: - Name: 16.1.0 Description: AWS-DocDB-DBSubnetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DocDB-DBSubnetGroup BranchName: 16.1.0 - Name: AWS-DynamoDB-Table Owner: central-it@customer.com Description: AWS-DynamoDB-Table Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-DynamoDB-Table Tags: - Key: product-type Value: AWS-DynamoDB-Table Versions: - Name: 16.1.0 Description: AWS-DynamoDB-Table-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-DynamoDB-Table BranchName: 16.1.0 - Name: AWS-EC2-CapacityReservation Owner: central-it@customer.com Description: AWS-EC2-CapacityReservation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-CapacityReservation Tags: - Key: product-type Value: AWS-EC2-CapacityReservation Versions: - Name: 16.1.0 Description: AWS-EC2-CapacityReservation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-CapacityReservation BranchName: 16.1.0 - Name: AWS-EC2-ClientVpnAuthorizationRule Owner: central-it@customer.com Description: AWS-EC2-ClientVpnAuthorizationRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-ClientVpnAuthorizationRule Tags: - Key: product-type Value: AWS-EC2-ClientVpnAuthorizationRule Versions: - Name: 16.1.0 Description: AWS-EC2-ClientVpnAuthorizationRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-ClientVpnAuthorizationRule BranchName: 16.1.0 - Name: AWS-EC2-ClientVpnEndpoint Owner: central-it@customer.com Description: AWS-EC2-ClientVpnEndpoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-ClientVpnEndpoint Tags: - Key: product-type Value: AWS-EC2-ClientVpnEndpoint Versions: - Name: 16.1.0 Description: AWS-EC2-ClientVpnEndpoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-ClientVpnEndpoint BranchName: 16.1.0 - Name: AWS-EC2-ClientVpnRoute Owner: central-it@customer.com Description: AWS-EC2-ClientVpnRoute Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-ClientVpnRoute Tags: - Key: product-type Value: AWS-EC2-ClientVpnRoute Versions: - Name: 16.1.0 Description: AWS-EC2-ClientVpnRoute-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-ClientVpnRoute BranchName: 16.1.0 - Name: AWS-EC2-ClientVpnTargetNetworkAssociation Owner: central-it@customer.com Description: AWS-EC2-ClientVpnTargetNetworkAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-ClientVpnTargetNetworkAssociation Tags: - Key: product-type Value: AWS-EC2-ClientVpnTargetNetworkAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-ClientVpnTargetNetworkAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-ClientVpnTargetNetworkAssociation BranchName: 16.1.0 - Name: AWS-EC2-CustomerGateway Owner: central-it@customer.com Description: AWS-EC2-CustomerGateway Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-CustomerGateway Tags: - Key: product-type Value: AWS-EC2-CustomerGateway Versions: - Name: 16.1.0 Description: AWS-EC2-CustomerGateway-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-CustomerGateway BranchName: 16.1.0 - Name: AWS-EC2-DHCPOptions Owner: central-it@customer.com Description: AWS-EC2-DHCPOptions Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-DHCPOptions Tags: - Key: product-type Value: AWS-EC2-DHCPOptions Versions: - Name: 16.1.0 Description: AWS-EC2-DHCPOptions-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-DHCPOptions BranchName: 16.1.0 - Name: AWS-EC2-EC2Fleet Owner: central-it@customer.com Description: AWS-EC2-EC2Fleet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-EC2Fleet Tags: - Key: product-type Value: AWS-EC2-EC2Fleet Versions: - Name: 16.1.0 Description: AWS-EC2-EC2Fleet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-EC2Fleet BranchName: 16.1.0 - Name: AWS-EC2-EIP Owner: central-it@customer.com Description: AWS-EC2-EIP Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-EIP Tags: - Key: product-type Value: AWS-EC2-EIP Versions: - Name: 16.1.0 Description: AWS-EC2-EIP-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-EIP BranchName: 16.1.0 - Name: AWS-EC2-EIPAssociation Owner: central-it@customer.com Description: AWS-EC2-EIPAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-EIPAssociation Tags: - Key: product-type Value: AWS-EC2-EIPAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-EIPAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-EIPAssociation BranchName: 16.1.0 - Name: AWS-EC2-EgressOnlyInternetGateway Owner: central-it@customer.com Description: AWS-EC2-EgressOnlyInternetGateway Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-EgressOnlyInternetGateway Tags: - Key: product-type Value: AWS-EC2-EgressOnlyInternetGateway Versions: - Name: 16.1.0 Description: AWS-EC2-EgressOnlyInternetGateway-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-EgressOnlyInternetGateway BranchName: 16.1.0 - Name: AWS-EC2-FlowLog Owner: central-it@customer.com Description: AWS-EC2-FlowLog Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-FlowLog Tags: - Key: product-type Value: AWS-EC2-FlowLog Versions: - Name: 16.1.0 Description: AWS-EC2-FlowLog-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-FlowLog BranchName: 16.1.0 - Name: AWS-EC2-GatewayRouteTableAssociation Owner: central-it@customer.com Description: AWS-EC2-GatewayRouteTableAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-GatewayRouteTableAssociation Tags: - Key: product-type Value: AWS-EC2-GatewayRouteTableAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-GatewayRouteTableAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-GatewayRouteTableAssociation BranchName: 16.1.0 - Name: AWS-EC2-Host Owner: central-it@customer.com Description: AWS-EC2-Host Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-Host Tags: - Key: product-type Value: AWS-EC2-Host Versions: - Name: 16.1.0 Description: AWS-EC2-Host-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-Host BranchName: 16.1.0 - Name: AWS-EC2-Instance Owner: central-it@customer.com Description: AWS-EC2-Instance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-Instance Tags: - Key: product-type Value: AWS-EC2-Instance Versions: - Name: 16.1.0 Description: AWS-EC2-Instance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-Instance BranchName: 16.1.0 - Name: AWS-EC2-InternetGateway Owner: central-it@customer.com Description: AWS-EC2-InternetGateway Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-InternetGateway Tags: - Key: product-type Value: AWS-EC2-InternetGateway Versions: - Name: 16.1.0 Description: AWS-EC2-InternetGateway-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-InternetGateway BranchName: 16.1.0 - Name: AWS-EC2-LaunchTemplate Owner: central-it@customer.com Description: AWS-EC2-LaunchTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-LaunchTemplate Tags: - Key: product-type Value: AWS-EC2-LaunchTemplate Versions: - Name: 16.1.0 Description: AWS-EC2-LaunchTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-LaunchTemplate BranchName: 16.1.0 - Name: AWS-EC2-LocalGatewayRoute Owner: central-it@customer.com Description: AWS-EC2-LocalGatewayRoute Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-LocalGatewayRoute Tags: - Key: product-type Value: AWS-EC2-LocalGatewayRoute Versions: - Name: 16.1.0 Description: AWS-EC2-LocalGatewayRoute-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-LocalGatewayRoute BranchName: 16.1.0 - Name: AWS-EC2-LocalGatewayRouteTableVPCAssociation Owner: central-it@customer.com Description: AWS-EC2-LocalGatewayRouteTableVPCAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-LocalGatewayRouteTableVPCAssociation Tags: - Key: product-type Value: AWS-EC2-LocalGatewayRouteTableVPCAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-LocalGatewayRouteTableVPCAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-LocalGatewayRouteTableVPCAssociation BranchName: 16.1.0 - Name: AWS-EC2-NatGateway Owner: central-it@customer.com Description: AWS-EC2-NatGateway Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-NatGateway Tags: - Key: product-type Value: AWS-EC2-NatGateway Versions: - Name: 16.1.0 Description: AWS-EC2-NatGateway-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-NatGateway BranchName: 16.1.0 - Name: AWS-EC2-NetworkAcl Owner: central-it@customer.com Description: AWS-EC2-NetworkAcl Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-NetworkAcl Tags: - Key: product-type Value: AWS-EC2-NetworkAcl Versions: - Name: 16.1.0 Description: AWS-EC2-NetworkAcl-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-NetworkAcl BranchName: 16.1.0 - Name: AWS-EC2-NetworkAclEntry Owner: central-it@customer.com Description: AWS-EC2-NetworkAclEntry Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-NetworkAclEntry Tags: - Key: product-type Value: AWS-EC2-NetworkAclEntry Versions: - Name: 16.1.0 Description: AWS-EC2-NetworkAclEntry-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-NetworkAclEntry BranchName: 16.1.0 - Name: AWS-EC2-NetworkInterface Owner: central-it@customer.com Description: AWS-EC2-NetworkInterface Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-NetworkInterface Tags: - Key: product-type Value: AWS-EC2-NetworkInterface Versions: - Name: 16.1.0 Description: AWS-EC2-NetworkInterface-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-NetworkInterface BranchName: 16.1.0 - Name: AWS-EC2-NetworkInterfaceAttachment Owner: central-it@customer.com Description: AWS-EC2-NetworkInterfaceAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-NetworkInterfaceAttachment Tags: - Key: product-type Value: AWS-EC2-NetworkInterfaceAttachment Versions: - Name: 16.1.0 Description: AWS-EC2-NetworkInterfaceAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-NetworkInterfaceAttachment BranchName: 16.1.0 - Name: AWS-EC2-NetworkInterfacePermission Owner: central-it@customer.com Description: AWS-EC2-NetworkInterfacePermission Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-NetworkInterfacePermission Tags: - Key: product-type Value: AWS-EC2-NetworkInterfacePermission Versions: - Name: 16.1.0 Description: AWS-EC2-NetworkInterfacePermission-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-NetworkInterfacePermission BranchName: 16.1.0 - Name: AWS-EC2-PlacementGroup Owner: central-it@customer.com Description: AWS-EC2-PlacementGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-PlacementGroup Tags: - Key: product-type Value: AWS-EC2-PlacementGroup Versions: - Name: 16.1.0 Description: AWS-EC2-PlacementGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-PlacementGroup BranchName: 16.1.0 - Name: AWS-EC2-PrefixList Owner: central-it@customer.com Description: AWS-EC2-PrefixList Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-PrefixList Tags: - Key: product-type Value: AWS-EC2-PrefixList Versions: - Name: 16.1.0 Description: AWS-EC2-PrefixList-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-PrefixList BranchName: 16.1.0 - Name: AWS-EC2-Route Owner: central-it@customer.com Description: AWS-EC2-Route Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-Route Tags: - Key: product-type Value: AWS-EC2-Route Versions: - Name: 16.1.0 Description: AWS-EC2-Route-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-Route BranchName: 16.1.0 - Name: AWS-EC2-RouteTable Owner: central-it@customer.com Description: AWS-EC2-RouteTable Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-RouteTable Tags: - Key: product-type Value: AWS-EC2-RouteTable Versions: - Name: 16.1.0 Description: AWS-EC2-RouteTable-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-RouteTable BranchName: 16.1.0 - Name: AWS-EC2-SecurityGroup Owner: central-it@customer.com Description: AWS-EC2-SecurityGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-SecurityGroup Tags: - Key: product-type Value: AWS-EC2-SecurityGroup Versions: - Name: 16.1.0 Description: AWS-EC2-SecurityGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-SecurityGroup BranchName: 16.1.0 - Name: AWS-EC2-SecurityGroupEgress Owner: central-it@customer.com Description: AWS-EC2-SecurityGroupEgress Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-SecurityGroupEgress Tags: - Key: product-type Value: AWS-EC2-SecurityGroupEgress Versions: - Name: 16.1.0 Description: AWS-EC2-SecurityGroupEgress-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-SecurityGroupEgress BranchName: 16.1.0 - Name: AWS-EC2-SecurityGroupIngress Owner: central-it@customer.com Description: AWS-EC2-SecurityGroupIngress Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-SecurityGroupIngress Tags: - Key: product-type Value: AWS-EC2-SecurityGroupIngress Versions: - Name: 16.1.0 Description: AWS-EC2-SecurityGroupIngress-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-SecurityGroupIngress BranchName: 16.1.0 - Name: AWS-EC2-SpotFleet Owner: central-it@customer.com Description: AWS-EC2-SpotFleet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-SpotFleet Tags: - Key: product-type Value: AWS-EC2-SpotFleet Versions: - Name: 16.1.0 Description: AWS-EC2-SpotFleet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-SpotFleet BranchName: 16.1.0 - Name: AWS-EC2-Subnet Owner: central-it@customer.com Description: AWS-EC2-Subnet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-Subnet Tags: - Key: product-type Value: AWS-EC2-Subnet Versions: - Name: 16.1.0 Description: AWS-EC2-Subnet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-Subnet BranchName: 16.1.0 - Name: AWS-EC2-SubnetCidrBlock Owner: central-it@customer.com Description: AWS-EC2-SubnetCidrBlock Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-SubnetCidrBlock Tags: - Key: product-type Value: AWS-EC2-SubnetCidrBlock Versions: - Name: 16.1.0 Description: AWS-EC2-SubnetCidrBlock-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-SubnetCidrBlock BranchName: 16.1.0 - Name: AWS-EC2-SubnetNetworkAclAssociation Owner: central-it@customer.com Description: AWS-EC2-SubnetNetworkAclAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-SubnetNetworkAclAssociation Tags: - Key: product-type Value: AWS-EC2-SubnetNetworkAclAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-SubnetNetworkAclAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-SubnetNetworkAclAssociation BranchName: 16.1.0 - Name: AWS-EC2-SubnetRouteTableAssociation Owner: central-it@customer.com Description: AWS-EC2-SubnetRouteTableAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-SubnetRouteTableAssociation Tags: - Key: product-type Value: AWS-EC2-SubnetRouteTableAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-SubnetRouteTableAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-SubnetRouteTableAssociation BranchName: 16.1.0 - Name: AWS-EC2-TrafficMirrorFilter Owner: central-it@customer.com Description: AWS-EC2-TrafficMirrorFilter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TrafficMirrorFilter Tags: - Key: product-type Value: AWS-EC2-TrafficMirrorFilter Versions: - Name: 16.1.0 Description: AWS-EC2-TrafficMirrorFilter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TrafficMirrorFilter BranchName: 16.1.0 - Name: AWS-EC2-TrafficMirrorFilterRule Owner: central-it@customer.com Description: AWS-EC2-TrafficMirrorFilterRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TrafficMirrorFilterRule Tags: - Key: product-type Value: AWS-EC2-TrafficMirrorFilterRule Versions: - Name: 16.1.0 Description: AWS-EC2-TrafficMirrorFilterRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TrafficMirrorFilterRule BranchName: 16.1.0 - Name: AWS-EC2-TrafficMirrorSession Owner: central-it@customer.com Description: AWS-EC2-TrafficMirrorSession Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TrafficMirrorSession Tags: - Key: product-type Value: AWS-EC2-TrafficMirrorSession Versions: - Name: 16.1.0 Description: AWS-EC2-TrafficMirrorSession-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TrafficMirrorSession BranchName: 16.1.0 - Name: AWS-EC2-TrafficMirrorTarget Owner: central-it@customer.com Description: AWS-EC2-TrafficMirrorTarget Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TrafficMirrorTarget Tags: - Key: product-type Value: AWS-EC2-TrafficMirrorTarget Versions: - Name: 16.1.0 Description: AWS-EC2-TrafficMirrorTarget-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TrafficMirrorTarget BranchName: 16.1.0 - Name: AWS-EC2-TransitGateway Owner: central-it@customer.com Description: AWS-EC2-TransitGateway Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TransitGateway Tags: - Key: product-type Value: AWS-EC2-TransitGateway Versions: - Name: 16.1.0 Description: AWS-EC2-TransitGateway-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TransitGateway BranchName: 16.1.0 - Name: AWS-EC2-TransitGatewayAttachment Owner: central-it@customer.com Description: AWS-EC2-TransitGatewayAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TransitGatewayAttachment Tags: - Key: product-type Value: AWS-EC2-TransitGatewayAttachment Versions: - Name: 16.1.0 Description: AWS-EC2-TransitGatewayAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TransitGatewayAttachment BranchName: 16.1.0 - Name: AWS-EC2-TransitGatewayRoute Owner: central-it@customer.com Description: AWS-EC2-TransitGatewayRoute Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TransitGatewayRoute Tags: - Key: product-type Value: AWS-EC2-TransitGatewayRoute Versions: - Name: 16.1.0 Description: AWS-EC2-TransitGatewayRoute-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TransitGatewayRoute BranchName: 16.1.0 - Name: AWS-EC2-TransitGatewayRouteTable Owner: central-it@customer.com Description: AWS-EC2-TransitGatewayRouteTable Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TransitGatewayRouteTable Tags: - Key: product-type Value: AWS-EC2-TransitGatewayRouteTable Versions: - Name: 16.1.0 Description: AWS-EC2-TransitGatewayRouteTable-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TransitGatewayRouteTable BranchName: 16.1.0 - Name: AWS-EC2-TransitGatewayRouteTableAssociation Owner: central-it@customer.com Description: AWS-EC2-TransitGatewayRouteTableAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TransitGatewayRouteTableAssociation Tags: - Key: product-type Value: AWS-EC2-TransitGatewayRouteTableAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-TransitGatewayRouteTableAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TransitGatewayRouteTableAssociation BranchName: 16.1.0 - Name: AWS-EC2-TransitGatewayRouteTablePropagation Owner: central-it@customer.com Description: AWS-EC2-TransitGatewayRouteTablePropagation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-TransitGatewayRouteTablePropagation Tags: - Key: product-type Value: AWS-EC2-TransitGatewayRouteTablePropagation Versions: - Name: 16.1.0 Description: AWS-EC2-TransitGatewayRouteTablePropagation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-TransitGatewayRouteTablePropagation BranchName: 16.1.0 - Name: AWS-EC2-VPC Owner: central-it@customer.com Description: AWS-EC2-VPC Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPC Tags: - Key: product-type Value: AWS-EC2-VPC Versions: - Name: 16.1.0 Description: AWS-EC2-VPC-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPC BranchName: 16.1.0 - Name: AWS-EC2-VPCCidrBlock Owner: central-it@customer.com Description: AWS-EC2-VPCCidrBlock Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCCidrBlock Tags: - Key: product-type Value: AWS-EC2-VPCCidrBlock Versions: - Name: 16.1.0 Description: AWS-EC2-VPCCidrBlock-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCCidrBlock BranchName: 16.1.0 - Name: AWS-EC2-VPCDHCPOptionsAssociation Owner: central-it@customer.com Description: AWS-EC2-VPCDHCPOptionsAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCDHCPOptionsAssociation Tags: - Key: product-type Value: AWS-EC2-VPCDHCPOptionsAssociation Versions: - Name: 16.1.0 Description: AWS-EC2-VPCDHCPOptionsAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCDHCPOptionsAssociation BranchName: 16.1.0 - Name: AWS-EC2-VPCEndpoint Owner: central-it@customer.com Description: AWS-EC2-VPCEndpoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCEndpoint Tags: - Key: product-type Value: AWS-EC2-VPCEndpoint Versions: - Name: 16.1.0 Description: AWS-EC2-VPCEndpoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCEndpoint BranchName: 16.1.0 - Name: AWS-EC2-VPCEndpointConnectionNotification Owner: central-it@customer.com Description: AWS-EC2-VPCEndpointConnectionNotification Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCEndpointConnectionNotification Tags: - Key: product-type Value: AWS-EC2-VPCEndpointConnectionNotification Versions: - Name: 16.1.0 Description: AWS-EC2-VPCEndpointConnectionNotification-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCEndpointConnectionNotification BranchName: 16.1.0 - Name: AWS-EC2-VPCEndpointService Owner: central-it@customer.com Description: AWS-EC2-VPCEndpointService Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCEndpointService Tags: - Key: product-type Value: AWS-EC2-VPCEndpointService Versions: - Name: 16.1.0 Description: AWS-EC2-VPCEndpointService-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCEndpointService BranchName: 16.1.0 - Name: AWS-EC2-VPCEndpointServicePermissions Owner: central-it@customer.com Description: AWS-EC2-VPCEndpointServicePermissions Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCEndpointServicePermissions Tags: - Key: product-type Value: AWS-EC2-VPCEndpointServicePermissions Versions: - Name: 16.1.0 Description: AWS-EC2-VPCEndpointServicePermissions-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCEndpointServicePermissions BranchName: 16.1.0 - Name: AWS-EC2-VPCGatewayAttachment Owner: central-it@customer.com Description: AWS-EC2-VPCGatewayAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCGatewayAttachment Tags: - Key: product-type Value: AWS-EC2-VPCGatewayAttachment Versions: - Name: 16.1.0 Description: AWS-EC2-VPCGatewayAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCGatewayAttachment BranchName: 16.1.0 - Name: AWS-EC2-VPCPeeringConnection Owner: central-it@customer.com Description: AWS-EC2-VPCPeeringConnection Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPCPeeringConnection Tags: - Key: product-type Value: AWS-EC2-VPCPeeringConnection Versions: - Name: 16.1.0 Description: AWS-EC2-VPCPeeringConnection-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPCPeeringConnection BranchName: 16.1.0 - Name: AWS-EC2-VPNConnection Owner: central-it@customer.com Description: AWS-EC2-VPNConnection Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPNConnection Tags: - Key: product-type Value: AWS-EC2-VPNConnection Versions: - Name: 16.1.0 Description: AWS-EC2-VPNConnection-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPNConnection BranchName: 16.1.0 - Name: AWS-EC2-VPNConnectionRoute Owner: central-it@customer.com Description: AWS-EC2-VPNConnectionRoute Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPNConnectionRoute Tags: - Key: product-type Value: AWS-EC2-VPNConnectionRoute Versions: - Name: 16.1.0 Description: AWS-EC2-VPNConnectionRoute-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPNConnectionRoute BranchName: 16.1.0 - Name: AWS-EC2-VPNGateway Owner: central-it@customer.com Description: AWS-EC2-VPNGateway Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPNGateway Tags: - Key: product-type Value: AWS-EC2-VPNGateway Versions: - Name: 16.1.0 Description: AWS-EC2-VPNGateway-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPNGateway BranchName: 16.1.0 - Name: AWS-EC2-VPNGatewayRoutePropagation Owner: central-it@customer.com Description: AWS-EC2-VPNGatewayRoutePropagation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VPNGatewayRoutePropagation Tags: - Key: product-type Value: AWS-EC2-VPNGatewayRoutePropagation Versions: - Name: 16.1.0 Description: AWS-EC2-VPNGatewayRoutePropagation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VPNGatewayRoutePropagation BranchName: 16.1.0 - Name: AWS-EC2-Volume Owner: central-it@customer.com Description: AWS-EC2-Volume Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-Volume Tags: - Key: product-type Value: AWS-EC2-Volume Versions: - Name: 16.1.0 Description: AWS-EC2-Volume-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-Volume BranchName: 16.1.0 - Name: AWS-EC2-VolumeAttachment Owner: central-it@customer.com Description: AWS-EC2-VolumeAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EC2-VolumeAttachment Tags: - Key: product-type Value: AWS-EC2-VolumeAttachment Versions: - Name: 16.1.0 Description: AWS-EC2-VolumeAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EC2-VolumeAttachment BranchName: 16.1.0 - Name: AWS-ECR-Repository Owner: central-it@customer.com Description: AWS-ECR-Repository Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ECR-Repository Tags: - Key: product-type Value: AWS-ECR-Repository Versions: - Name: 16.1.0 Description: AWS-ECR-Repository-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ECR-Repository BranchName: 16.1.0 - Name: AWS-ECS-CapacityProvider Owner: central-it@customer.com Description: AWS-ECS-CapacityProvider Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ECS-CapacityProvider Tags: - Key: product-type Value: AWS-ECS-CapacityProvider Versions: - Name: 16.1.0 Description: AWS-ECS-CapacityProvider-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ECS-CapacityProvider BranchName: 16.1.0 - Name: AWS-ECS-Cluster Owner: central-it@customer.com Description: AWS-ECS-Cluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ECS-Cluster Tags: - Key: product-type Value: AWS-ECS-Cluster Versions: - Name: 16.1.0 Description: AWS-ECS-Cluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ECS-Cluster BranchName: 16.1.0 - Name: AWS-ECS-PrimaryTaskSet Owner: central-it@customer.com Description: AWS-ECS-PrimaryTaskSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ECS-PrimaryTaskSet Tags: - Key: product-type Value: AWS-ECS-PrimaryTaskSet Versions: - Name: 16.1.0 Description: AWS-ECS-PrimaryTaskSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ECS-PrimaryTaskSet BranchName: 16.1.0 - Name: AWS-ECS-Service Owner: central-it@customer.com Description: AWS-ECS-Service Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ECS-Service Tags: - Key: product-type Value: AWS-ECS-Service Versions: - Name: 16.1.0 Description: AWS-ECS-Service-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ECS-Service BranchName: 16.1.0 - Name: AWS-ECS-TaskDefinition Owner: central-it@customer.com Description: AWS-ECS-TaskDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ECS-TaskDefinition Tags: - Key: product-type Value: AWS-ECS-TaskDefinition Versions: - Name: 16.1.0 Description: AWS-ECS-TaskDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ECS-TaskDefinition BranchName: 16.1.0 - Name: AWS-ECS-TaskSet Owner: central-it@customer.com Description: AWS-ECS-TaskSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ECS-TaskSet Tags: - Key: product-type Value: AWS-ECS-TaskSet Versions: - Name: 16.1.0 Description: AWS-ECS-TaskSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ECS-TaskSet BranchName: 16.1.0 - Name: AWS-EFS-AccessPoint Owner: central-it@customer.com Description: AWS-EFS-AccessPoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EFS-AccessPoint Tags: - Key: product-type Value: AWS-EFS-AccessPoint Versions: - Name: 16.1.0 Description: AWS-EFS-AccessPoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EFS-AccessPoint BranchName: 16.1.0 - Name: AWS-EFS-FileSystem Owner: central-it@customer.com Description: AWS-EFS-FileSystem Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EFS-FileSystem Tags: - Key: product-type Value: AWS-EFS-FileSystem Versions: - Name: 16.1.0 Description: AWS-EFS-FileSystem-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EFS-FileSystem BranchName: 16.1.0 - Name: AWS-EFS-MountTarget Owner: central-it@customer.com Description: AWS-EFS-MountTarget Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EFS-MountTarget Tags: - Key: product-type Value: AWS-EFS-MountTarget Versions: - Name: 16.1.0 Description: AWS-EFS-MountTarget-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EFS-MountTarget BranchName: 16.1.0 - Name: AWS-EKS-Cluster Owner: central-it@customer.com Description: AWS-EKS-Cluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EKS-Cluster Tags: - Key: product-type Value: AWS-EKS-Cluster Versions: - Name: 16.1.0 Description: AWS-EKS-Cluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EKS-Cluster BranchName: 16.1.0 - Name: AWS-EKS-Nodegroup Owner: central-it@customer.com Description: AWS-EKS-Nodegroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EKS-Nodegroup Tags: - Key: product-type Value: AWS-EKS-Nodegroup Versions: - Name: 16.1.0 Description: AWS-EKS-Nodegroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EKS-Nodegroup BranchName: 16.1.0 - Name: AWS-EMR-Cluster Owner: central-it@customer.com Description: AWS-EMR-Cluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EMR-Cluster Tags: - Key: product-type Value: AWS-EMR-Cluster Versions: - Name: 16.1.0 Description: AWS-EMR-Cluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EMR-Cluster BranchName: 16.1.0 - Name: AWS-EMR-InstanceFleetConfig Owner: central-it@customer.com Description: AWS-EMR-InstanceFleetConfig Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EMR-InstanceFleetConfig Tags: - Key: product-type Value: AWS-EMR-InstanceFleetConfig Versions: - Name: 16.1.0 Description: AWS-EMR-InstanceFleetConfig-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EMR-InstanceFleetConfig BranchName: 16.1.0 - Name: AWS-EMR-InstanceGroupConfig Owner: central-it@customer.com Description: AWS-EMR-InstanceGroupConfig Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EMR-InstanceGroupConfig Tags: - Key: product-type Value: AWS-EMR-InstanceGroupConfig Versions: - Name: 16.1.0 Description: AWS-EMR-InstanceGroupConfig-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EMR-InstanceGroupConfig BranchName: 16.1.0 - Name: AWS-EMR-SecurityConfiguration Owner: central-it@customer.com Description: AWS-EMR-SecurityConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EMR-SecurityConfiguration Tags: - Key: product-type Value: AWS-EMR-SecurityConfiguration Versions: - Name: 16.1.0 Description: AWS-EMR-SecurityConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EMR-SecurityConfiguration BranchName: 16.1.0 - Name: AWS-EMR-Step Owner: central-it@customer.com Description: AWS-EMR-Step Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EMR-Step Tags: - Key: product-type Value: AWS-EMR-Step Versions: - Name: 16.1.0 Description: AWS-EMR-Step-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EMR-Step BranchName: 16.1.0 - Name: AWS-ElastiCache-CacheCluster Owner: central-it@customer.com Description: AWS-ElastiCache-CacheCluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElastiCache-CacheCluster Tags: - Key: product-type Value: AWS-ElastiCache-CacheCluster Versions: - Name: 16.1.0 Description: AWS-ElastiCache-CacheCluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElastiCache-CacheCluster BranchName: 16.1.0 - Name: AWS-ElastiCache-ParameterGroup Owner: central-it@customer.com Description: AWS-ElastiCache-ParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElastiCache-ParameterGroup Tags: - Key: product-type Value: AWS-ElastiCache-ParameterGroup Versions: - Name: 16.1.0 Description: AWS-ElastiCache-ParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElastiCache-ParameterGroup BranchName: 16.1.0 - Name: AWS-ElastiCache-ReplicationGroup Owner: central-it@customer.com Description: AWS-ElastiCache-ReplicationGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElastiCache-ReplicationGroup Tags: - Key: product-type Value: AWS-ElastiCache-ReplicationGroup Versions: - Name: 16.1.0 Description: AWS-ElastiCache-ReplicationGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElastiCache-ReplicationGroup BranchName: 16.1.0 - Name: AWS-ElastiCache-SecurityGroup Owner: central-it@customer.com Description: AWS-ElastiCache-SecurityGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElastiCache-SecurityGroup Tags: - Key: product-type Value: AWS-ElastiCache-SecurityGroup Versions: - Name: 16.1.0 Description: AWS-ElastiCache-SecurityGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElastiCache-SecurityGroup BranchName: 16.1.0 - Name: AWS-ElastiCache-SecurityGroupIngress Owner: central-it@customer.com Description: AWS-ElastiCache-SecurityGroupIngress Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElastiCache-SecurityGroupIngress Tags: - Key: product-type Value: AWS-ElastiCache-SecurityGroupIngress Versions: - Name: 16.1.0 Description: AWS-ElastiCache-SecurityGroupIngress-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElastiCache-SecurityGroupIngress BranchName: 16.1.0 - Name: AWS-ElastiCache-SubnetGroup Owner: central-it@customer.com Description: AWS-ElastiCache-SubnetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElastiCache-SubnetGroup Tags: - Key: product-type Value: AWS-ElastiCache-SubnetGroup Versions: - Name: 16.1.0 Description: AWS-ElastiCache-SubnetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElastiCache-SubnetGroup BranchName: 16.1.0 - Name: AWS-ElasticBeanstalk-Application Owner: central-it@customer.com Description: AWS-ElasticBeanstalk-Application Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticBeanstalk-Application Tags: - Key: product-type Value: AWS-ElasticBeanstalk-Application Versions: - Name: 16.1.0 Description: AWS-ElasticBeanstalk-Application-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticBeanstalk-Application BranchName: 16.1.0 - Name: AWS-ElasticBeanstalk-ApplicationVersion Owner: central-it@customer.com Description: AWS-ElasticBeanstalk-ApplicationVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticBeanstalk-ApplicationVersion Tags: - Key: product-type Value: AWS-ElasticBeanstalk-ApplicationVersion Versions: - Name: 16.1.0 Description: AWS-ElasticBeanstalk-ApplicationVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticBeanstalk-ApplicationVersion BranchName: 16.1.0 - Name: AWS-ElasticBeanstalk-ConfigurationTemplate Owner: central-it@customer.com Description: AWS-ElasticBeanstalk-ConfigurationTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticBeanstalk-ConfigurationTemplate Tags: - Key: product-type Value: AWS-ElasticBeanstalk-ConfigurationTemplate Versions: - Name: 16.1.0 Description: AWS-ElasticBeanstalk-ConfigurationTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticBeanstalk-ConfigurationTemplate BranchName: 16.1.0 - Name: AWS-ElasticBeanstalk-Environment Owner: central-it@customer.com Description: AWS-ElasticBeanstalk-Environment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticBeanstalk-Environment Tags: - Key: product-type Value: AWS-ElasticBeanstalk-Environment Versions: - Name: 16.1.0 Description: AWS-ElasticBeanstalk-Environment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticBeanstalk-Environment BranchName: 16.1.0 - Name: AWS-ElasticLoadBalancing-LoadBalancer Owner: central-it@customer.com Description: AWS-ElasticLoadBalancing-LoadBalancer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticLoadBalancing-LoadBalancer Tags: - Key: product-type Value: AWS-ElasticLoadBalancing-LoadBalancer Versions: - Name: 16.1.0 Description: AWS-ElasticLoadBalancing-LoadBalancer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticLoadBalancing-LoadBalancer BranchName: 16.1.0 - Name: AWS-ElasticLoadBalancingV2-Listener Owner: central-it@customer.com Description: AWS-ElasticLoadBalancingV2-Listener Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticLoadBalancingV2-Listener Tags: - Key: product-type Value: AWS-ElasticLoadBalancingV2-Listener Versions: - Name: 16.1.0 Description: AWS-ElasticLoadBalancingV2-Listener-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticLoadBalancingV2-Listener BranchName: 16.1.0 - Name: AWS-ElasticLoadBalancingV2-ListenerCertificate Owner: central-it@customer.com Description: AWS-ElasticLoadBalancingV2-ListenerCertificate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticLoadBalancingV2-ListenerCertificate Tags: - Key: product-type Value: AWS-ElasticLoadBalancingV2-ListenerCertificate Versions: - Name: 16.1.0 Description: AWS-ElasticLoadBalancingV2-ListenerCertificate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticLoadBalancingV2-ListenerCertificate BranchName: 16.1.0 - Name: AWS-ElasticLoadBalancingV2-ListenerRule Owner: central-it@customer.com Description: AWS-ElasticLoadBalancingV2-ListenerRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticLoadBalancingV2-ListenerRule Tags: - Key: product-type Value: AWS-ElasticLoadBalancingV2-ListenerRule Versions: - Name: 16.1.0 Description: AWS-ElasticLoadBalancingV2-ListenerRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticLoadBalancingV2-ListenerRule BranchName: 16.1.0 - Name: AWS-ElasticLoadBalancingV2-LoadBalancer Owner: central-it@customer.com Description: AWS-ElasticLoadBalancingV2-LoadBalancer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticLoadBalancingV2-LoadBalancer Tags: - Key: product-type Value: AWS-ElasticLoadBalancingV2-LoadBalancer Versions: - Name: 16.1.0 Description: AWS-ElasticLoadBalancingV2-LoadBalancer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticLoadBalancingV2-LoadBalancer BranchName: 16.1.0 - Name: AWS-ElasticLoadBalancingV2-TargetGroup Owner: central-it@customer.com Description: AWS-ElasticLoadBalancingV2-TargetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ElasticLoadBalancingV2-TargetGroup Tags: - Key: product-type Value: AWS-ElasticLoadBalancingV2-TargetGroup Versions: - Name: 16.1.0 Description: AWS-ElasticLoadBalancingV2-TargetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ElasticLoadBalancingV2-TargetGroup BranchName: 16.1.0 - Name: AWS-Elasticsearch-Domain Owner: central-it@customer.com Description: AWS-Elasticsearch-Domain Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Elasticsearch-Domain Tags: - Key: product-type Value: AWS-Elasticsearch-Domain Versions: - Name: 16.1.0 Description: AWS-Elasticsearch-Domain-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Elasticsearch-Domain BranchName: 16.1.0 - Name: AWS-EventSchemas-Discoverer Owner: central-it@customer.com Description: AWS-EventSchemas-Discoverer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EventSchemas-Discoverer Tags: - Key: product-type Value: AWS-EventSchemas-Discoverer Versions: - Name: 16.1.0 Description: AWS-EventSchemas-Discoverer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EventSchemas-Discoverer BranchName: 16.1.0 - Name: AWS-EventSchemas-Registry Owner: central-it@customer.com Description: AWS-EventSchemas-Registry Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EventSchemas-Registry Tags: - Key: product-type Value: AWS-EventSchemas-Registry Versions: - Name: 16.1.0 Description: AWS-EventSchemas-Registry-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EventSchemas-Registry BranchName: 16.1.0 - Name: AWS-EventSchemas-RegistryPolicy Owner: central-it@customer.com Description: AWS-EventSchemas-RegistryPolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EventSchemas-RegistryPolicy Tags: - Key: product-type Value: AWS-EventSchemas-RegistryPolicy Versions: - Name: 16.1.0 Description: AWS-EventSchemas-RegistryPolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EventSchemas-RegistryPolicy BranchName: 16.1.0 - Name: AWS-EventSchemas-Schema Owner: central-it@customer.com Description: AWS-EventSchemas-Schema Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-EventSchemas-Schema Tags: - Key: product-type Value: AWS-EventSchemas-Schema Versions: - Name: 16.1.0 Description: AWS-EventSchemas-Schema-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-EventSchemas-Schema BranchName: 16.1.0 - Name: AWS-Events-EventBus Owner: central-it@customer.com Description: AWS-Events-EventBus Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Events-EventBus Tags: - Key: product-type Value: AWS-Events-EventBus Versions: - Name: 16.1.0 Description: AWS-Events-EventBus-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Events-EventBus BranchName: 16.1.0 - Name: AWS-Events-EventBusPolicy Owner: central-it@customer.com Description: AWS-Events-EventBusPolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Events-EventBusPolicy Tags: - Key: product-type Value: AWS-Events-EventBusPolicy Versions: - Name: 16.1.0 Description: AWS-Events-EventBusPolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Events-EventBusPolicy BranchName: 16.1.0 - Name: AWS-Events-Rule Owner: central-it@customer.com Description: AWS-Events-Rule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Events-Rule Tags: - Key: product-type Value: AWS-Events-Rule Versions: - Name: 16.1.0 Description: AWS-Events-Rule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Events-Rule BranchName: 16.1.0 - Name: AWS-FMS-NotificationChannel Owner: central-it@customer.com Description: AWS-FMS-NotificationChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-FMS-NotificationChannel Tags: - Key: product-type Value: AWS-FMS-NotificationChannel Versions: - Name: 16.1.0 Description: AWS-FMS-NotificationChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-FMS-NotificationChannel BranchName: 16.1.0 - Name: AWS-FMS-Policy Owner: central-it@customer.com Description: AWS-FMS-Policy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-FMS-Policy Tags: - Key: product-type Value: AWS-FMS-Policy Versions: - Name: 16.1.0 Description: AWS-FMS-Policy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-FMS-Policy BranchName: 16.1.0 - Name: AWS-FSx-FileSystem Owner: central-it@customer.com Description: AWS-FSx-FileSystem Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-FSx-FileSystem Tags: - Key: product-type Value: AWS-FSx-FileSystem Versions: - Name: 16.1.0 Description: AWS-FSx-FileSystem-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-FSx-FileSystem BranchName: 16.1.0 - Name: AWS-GameLift-Alias Owner: central-it@customer.com Description: AWS-GameLift-Alias Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GameLift-Alias Tags: - Key: product-type Value: AWS-GameLift-Alias Versions: - Name: 16.1.0 Description: AWS-GameLift-Alias-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GameLift-Alias BranchName: 16.1.0 - Name: AWS-GameLift-Build Owner: central-it@customer.com Description: AWS-GameLift-Build Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GameLift-Build Tags: - Key: product-type Value: AWS-GameLift-Build Versions: - Name: 16.1.0 Description: AWS-GameLift-Build-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GameLift-Build BranchName: 16.1.0 - Name: AWS-GameLift-Fleet Owner: central-it@customer.com Description: AWS-GameLift-Fleet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GameLift-Fleet Tags: - Key: product-type Value: AWS-GameLift-Fleet Versions: - Name: 16.1.0 Description: AWS-GameLift-Fleet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GameLift-Fleet BranchName: 16.1.0 - Name: AWS-GameLift-GameSessionQueue Owner: central-it@customer.com Description: AWS-GameLift-GameSessionQueue Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GameLift-GameSessionQueue Tags: - Key: product-type Value: AWS-GameLift-GameSessionQueue Versions: - Name: 16.1.0 Description: AWS-GameLift-GameSessionQueue-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GameLift-GameSessionQueue BranchName: 16.1.0 - Name: AWS-GameLift-MatchmakingConfiguration Owner: central-it@customer.com Description: AWS-GameLift-MatchmakingConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GameLift-MatchmakingConfiguration Tags: - Key: product-type Value: AWS-GameLift-MatchmakingConfiguration Versions: - Name: 16.1.0 Description: AWS-GameLift-MatchmakingConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GameLift-MatchmakingConfiguration BranchName: 16.1.0 - Name: AWS-GameLift-MatchmakingRuleSet Owner: central-it@customer.com Description: AWS-GameLift-MatchmakingRuleSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GameLift-MatchmakingRuleSet Tags: - Key: product-type Value: AWS-GameLift-MatchmakingRuleSet Versions: - Name: 16.1.0 Description: AWS-GameLift-MatchmakingRuleSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GameLift-MatchmakingRuleSet BranchName: 16.1.0 - Name: AWS-GameLift-Script Owner: central-it@customer.com Description: AWS-GameLift-Script Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GameLift-Script Tags: - Key: product-type Value: AWS-GameLift-Script Versions: - Name: 16.1.0 Description: AWS-GameLift-Script-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GameLift-Script BranchName: 16.1.0 - Name: AWS-GlobalAccelerator-Accelerator Owner: central-it@customer.com Description: AWS-GlobalAccelerator-Accelerator Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GlobalAccelerator-Accelerator Tags: - Key: product-type Value: AWS-GlobalAccelerator-Accelerator Versions: - Name: 16.1.0 Description: AWS-GlobalAccelerator-Accelerator-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GlobalAccelerator-Accelerator BranchName: 16.1.0 - Name: AWS-GlobalAccelerator-EndpointGroup Owner: central-it@customer.com Description: AWS-GlobalAccelerator-EndpointGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GlobalAccelerator-EndpointGroup Tags: - Key: product-type Value: AWS-GlobalAccelerator-EndpointGroup Versions: - Name: 16.1.0 Description: AWS-GlobalAccelerator-EndpointGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GlobalAccelerator-EndpointGroup BranchName: 16.1.0 - Name: AWS-GlobalAccelerator-Listener Owner: central-it@customer.com Description: AWS-GlobalAccelerator-Listener Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GlobalAccelerator-Listener Tags: - Key: product-type Value: AWS-GlobalAccelerator-Listener Versions: - Name: 16.1.0 Description: AWS-GlobalAccelerator-Listener-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GlobalAccelerator-Listener BranchName: 16.1.0 - Name: AWS-Glue-Classifier Owner: central-it@customer.com Description: AWS-Glue-Classifier Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Classifier Tags: - Key: product-type Value: AWS-Glue-Classifier Versions: - Name: 16.1.0 Description: AWS-Glue-Classifier-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Classifier BranchName: 16.1.0 - Name: AWS-Glue-Connection Owner: central-it@customer.com Description: AWS-Glue-Connection Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Connection Tags: - Key: product-type Value: AWS-Glue-Connection Versions: - Name: 16.1.0 Description: AWS-Glue-Connection-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Connection BranchName: 16.1.0 - Name: AWS-Glue-Crawler Owner: central-it@customer.com Description: AWS-Glue-Crawler Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Crawler Tags: - Key: product-type Value: AWS-Glue-Crawler Versions: - Name: 16.1.0 Description: AWS-Glue-Crawler-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Crawler BranchName: 16.1.0 - Name: AWS-Glue-DataCatalogEncryptionSettings Owner: central-it@customer.com Description: AWS-Glue-DataCatalogEncryptionSettings Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-DataCatalogEncryptionSettings Tags: - Key: product-type Value: AWS-Glue-DataCatalogEncryptionSettings Versions: - Name: 16.1.0 Description: AWS-Glue-DataCatalogEncryptionSettings-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-DataCatalogEncryptionSettings BranchName: 16.1.0 - Name: AWS-Glue-Database Owner: central-it@customer.com Description: AWS-Glue-Database Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Database Tags: - Key: product-type Value: AWS-Glue-Database Versions: - Name: 16.1.0 Description: AWS-Glue-Database-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Database BranchName: 16.1.0 - Name: AWS-Glue-DevEndpoint Owner: central-it@customer.com Description: AWS-Glue-DevEndpoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-DevEndpoint Tags: - Key: product-type Value: AWS-Glue-DevEndpoint Versions: - Name: 16.1.0 Description: AWS-Glue-DevEndpoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-DevEndpoint BranchName: 16.1.0 - Name: AWS-Glue-Job Owner: central-it@customer.com Description: AWS-Glue-Job Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Job Tags: - Key: product-type Value: AWS-Glue-Job Versions: - Name: 16.1.0 Description: AWS-Glue-Job-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Job BranchName: 16.1.0 - Name: AWS-Glue-MLTransform Owner: central-it@customer.com Description: AWS-Glue-MLTransform Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-MLTransform Tags: - Key: product-type Value: AWS-Glue-MLTransform Versions: - Name: 16.1.0 Description: AWS-Glue-MLTransform-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-MLTransform BranchName: 16.1.0 - Name: AWS-Glue-Partition Owner: central-it@customer.com Description: AWS-Glue-Partition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Partition Tags: - Key: product-type Value: AWS-Glue-Partition Versions: - Name: 16.1.0 Description: AWS-Glue-Partition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Partition BranchName: 16.1.0 - Name: AWS-Glue-SecurityConfiguration Owner: central-it@customer.com Description: AWS-Glue-SecurityConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-SecurityConfiguration Tags: - Key: product-type Value: AWS-Glue-SecurityConfiguration Versions: - Name: 16.1.0 Description: AWS-Glue-SecurityConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-SecurityConfiguration BranchName: 16.1.0 - Name: AWS-Glue-Table Owner: central-it@customer.com Description: AWS-Glue-Table Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Table Tags: - Key: product-type Value: AWS-Glue-Table Versions: - Name: 16.1.0 Description: AWS-Glue-Table-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Table BranchName: 16.1.0 - Name: AWS-Glue-Trigger Owner: central-it@customer.com Description: AWS-Glue-Trigger Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Trigger Tags: - Key: product-type Value: AWS-Glue-Trigger Versions: - Name: 16.1.0 Description: AWS-Glue-Trigger-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Trigger BranchName: 16.1.0 - Name: AWS-Glue-Workflow Owner: central-it@customer.com Description: AWS-Glue-Workflow Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Glue-Workflow Tags: - Key: product-type Value: AWS-Glue-Workflow Versions: - Name: 16.1.0 Description: AWS-Glue-Workflow-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Glue-Workflow BranchName: 16.1.0 - Name: AWS-Greengrass-ConnectorDefinition Owner: central-it@customer.com Description: AWS-Greengrass-ConnectorDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-ConnectorDefinition Tags: - Key: product-type Value: AWS-Greengrass-ConnectorDefinition Versions: - Name: 16.1.0 Description: AWS-Greengrass-ConnectorDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-ConnectorDefinition BranchName: 16.1.0 - Name: AWS-Greengrass-ConnectorDefinitionVersion Owner: central-it@customer.com Description: AWS-Greengrass-ConnectorDefinitionVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-ConnectorDefinitionVersion Tags: - Key: product-type Value: AWS-Greengrass-ConnectorDefinitionVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-ConnectorDefinitionVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-ConnectorDefinitionVersion BranchName: 16.1.0 - Name: AWS-Greengrass-CoreDefinition Owner: central-it@customer.com Description: AWS-Greengrass-CoreDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-CoreDefinition Tags: - Key: product-type Value: AWS-Greengrass-CoreDefinition Versions: - Name: 16.1.0 Description: AWS-Greengrass-CoreDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-CoreDefinition BranchName: 16.1.0 - Name: AWS-Greengrass-CoreDefinitionVersion Owner: central-it@customer.com Description: AWS-Greengrass-CoreDefinitionVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-CoreDefinitionVersion Tags: - Key: product-type Value: AWS-Greengrass-CoreDefinitionVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-CoreDefinitionVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-CoreDefinitionVersion BranchName: 16.1.0 - Name: AWS-Greengrass-DeviceDefinition Owner: central-it@customer.com Description: AWS-Greengrass-DeviceDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-DeviceDefinition Tags: - Key: product-type Value: AWS-Greengrass-DeviceDefinition Versions: - Name: 16.1.0 Description: AWS-Greengrass-DeviceDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-DeviceDefinition BranchName: 16.1.0 - Name: AWS-Greengrass-DeviceDefinitionVersion Owner: central-it@customer.com Description: AWS-Greengrass-DeviceDefinitionVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-DeviceDefinitionVersion Tags: - Key: product-type Value: AWS-Greengrass-DeviceDefinitionVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-DeviceDefinitionVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-DeviceDefinitionVersion BranchName: 16.1.0 - Name: AWS-Greengrass-FunctionDefinition Owner: central-it@customer.com Description: AWS-Greengrass-FunctionDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-FunctionDefinition Tags: - Key: product-type Value: AWS-Greengrass-FunctionDefinition Versions: - Name: 16.1.0 Description: AWS-Greengrass-FunctionDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-FunctionDefinition BranchName: 16.1.0 - Name: AWS-Greengrass-FunctionDefinitionVersion Owner: central-it@customer.com Description: AWS-Greengrass-FunctionDefinitionVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-FunctionDefinitionVersion Tags: - Key: product-type Value: AWS-Greengrass-FunctionDefinitionVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-FunctionDefinitionVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-FunctionDefinitionVersion BranchName: 16.1.0 - Name: AWS-Greengrass-Group Owner: central-it@customer.com Description: AWS-Greengrass-Group Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-Group Tags: - Key: product-type Value: AWS-Greengrass-Group Versions: - Name: 16.1.0 Description: AWS-Greengrass-Group-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-Group BranchName: 16.1.0 - Name: AWS-Greengrass-GroupVersion Owner: central-it@customer.com Description: AWS-Greengrass-GroupVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-GroupVersion Tags: - Key: product-type Value: AWS-Greengrass-GroupVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-GroupVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-GroupVersion BranchName: 16.1.0 - Name: AWS-Greengrass-LoggerDefinition Owner: central-it@customer.com Description: AWS-Greengrass-LoggerDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-LoggerDefinition Tags: - Key: product-type Value: AWS-Greengrass-LoggerDefinition Versions: - Name: 16.1.0 Description: AWS-Greengrass-LoggerDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-LoggerDefinition BranchName: 16.1.0 - Name: AWS-Greengrass-LoggerDefinitionVersion Owner: central-it@customer.com Description: AWS-Greengrass-LoggerDefinitionVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-LoggerDefinitionVersion Tags: - Key: product-type Value: AWS-Greengrass-LoggerDefinitionVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-LoggerDefinitionVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-LoggerDefinitionVersion BranchName: 16.1.0 - Name: AWS-Greengrass-ResourceDefinition Owner: central-it@customer.com Description: AWS-Greengrass-ResourceDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-ResourceDefinition Tags: - Key: product-type Value: AWS-Greengrass-ResourceDefinition Versions: - Name: 16.1.0 Description: AWS-Greengrass-ResourceDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-ResourceDefinition BranchName: 16.1.0 - Name: AWS-Greengrass-ResourceDefinitionVersion Owner: central-it@customer.com Description: AWS-Greengrass-ResourceDefinitionVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-ResourceDefinitionVersion Tags: - Key: product-type Value: AWS-Greengrass-ResourceDefinitionVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-ResourceDefinitionVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-ResourceDefinitionVersion BranchName: 16.1.0 - Name: AWS-Greengrass-SubscriptionDefinition Owner: central-it@customer.com Description: AWS-Greengrass-SubscriptionDefinition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-SubscriptionDefinition Tags: - Key: product-type Value: AWS-Greengrass-SubscriptionDefinition Versions: - Name: 16.1.0 Description: AWS-Greengrass-SubscriptionDefinition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-SubscriptionDefinition BranchName: 16.1.0 - Name: AWS-Greengrass-SubscriptionDefinitionVersion Owner: central-it@customer.com Description: AWS-Greengrass-SubscriptionDefinitionVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Greengrass-SubscriptionDefinitionVersion Tags: - Key: product-type Value: AWS-Greengrass-SubscriptionDefinitionVersion Versions: - Name: 16.1.0 Description: AWS-Greengrass-SubscriptionDefinitionVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Greengrass-SubscriptionDefinitionVersion BranchName: 16.1.0 - Name: AWS-GroundStation-Config Owner: central-it@customer.com Description: AWS-GroundStation-Config Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GroundStation-Config Tags: - Key: product-type Value: AWS-GroundStation-Config Versions: - Name: 16.1.0 Description: AWS-GroundStation-Config-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GroundStation-Config BranchName: 16.1.0 - Name: AWS-GroundStation-DataflowEndpointGroup Owner: central-it@customer.com Description: AWS-GroundStation-DataflowEndpointGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GroundStation-DataflowEndpointGroup Tags: - Key: product-type Value: AWS-GroundStation-DataflowEndpointGroup Versions: - Name: 16.1.0 Description: AWS-GroundStation-DataflowEndpointGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GroundStation-DataflowEndpointGroup BranchName: 16.1.0 - Name: AWS-GroundStation-MissionProfile Owner: central-it@customer.com Description: AWS-GroundStation-MissionProfile Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GroundStation-MissionProfile Tags: - Key: product-type Value: AWS-GroundStation-MissionProfile Versions: - Name: 16.1.0 Description: AWS-GroundStation-MissionProfile-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GroundStation-MissionProfile BranchName: 16.1.0 - Name: AWS-GuardDuty-Detector Owner: central-it@customer.com Description: AWS-GuardDuty-Detector Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GuardDuty-Detector Tags: - Key: product-type Value: AWS-GuardDuty-Detector Versions: - Name: 16.1.0 Description: AWS-GuardDuty-Detector-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GuardDuty-Detector BranchName: 16.1.0 - Name: AWS-GuardDuty-Filter Owner: central-it@customer.com Description: AWS-GuardDuty-Filter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GuardDuty-Filter Tags: - Key: product-type Value: AWS-GuardDuty-Filter Versions: - Name: 16.1.0 Description: AWS-GuardDuty-Filter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GuardDuty-Filter BranchName: 16.1.0 - Name: AWS-GuardDuty-IPSet Owner: central-it@customer.com Description: AWS-GuardDuty-IPSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GuardDuty-IPSet Tags: - Key: product-type Value: AWS-GuardDuty-IPSet Versions: - Name: 16.1.0 Description: AWS-GuardDuty-IPSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GuardDuty-IPSet BranchName: 16.1.0 - Name: AWS-GuardDuty-Master Owner: central-it@customer.com Description: AWS-GuardDuty-Master Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GuardDuty-Master Tags: - Key: product-type Value: AWS-GuardDuty-Master Versions: - Name: 16.1.0 Description: AWS-GuardDuty-Master-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GuardDuty-Master BranchName: 16.1.0 - Name: AWS-GuardDuty-Member Owner: central-it@customer.com Description: AWS-GuardDuty-Member Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GuardDuty-Member Tags: - Key: product-type Value: AWS-GuardDuty-Member Versions: - Name: 16.1.0 Description: AWS-GuardDuty-Member-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GuardDuty-Member BranchName: 16.1.0 - Name: AWS-GuardDuty-ThreatIntelSet Owner: central-it@customer.com Description: AWS-GuardDuty-ThreatIntelSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-GuardDuty-ThreatIntelSet Tags: - Key: product-type Value: AWS-GuardDuty-ThreatIntelSet Versions: - Name: 16.1.0 Description: AWS-GuardDuty-ThreatIntelSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-GuardDuty-ThreatIntelSet BranchName: 16.1.0 - Name: AWS-IAM-AccessKey Owner: central-it@customer.com Description: AWS-IAM-AccessKey Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-AccessKey Tags: - Key: product-type Value: AWS-IAM-AccessKey Versions: - Name: 16.1.0 Description: AWS-IAM-AccessKey-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-AccessKey BranchName: 16.1.0 - Name: AWS-IAM-Group Owner: central-it@customer.com Description: AWS-IAM-Group Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-Group Tags: - Key: product-type Value: AWS-IAM-Group Versions: - Name: 16.1.0 Description: AWS-IAM-Group-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-Group BranchName: 16.1.0 - Name: AWS-IAM-InstanceProfile Owner: central-it@customer.com Description: AWS-IAM-InstanceProfile Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-InstanceProfile Tags: - Key: product-type Value: AWS-IAM-InstanceProfile Versions: - Name: 16.1.0 Description: AWS-IAM-InstanceProfile-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-InstanceProfile BranchName: 16.1.0 - Name: AWS-IAM-ManagedPolicy Owner: central-it@customer.com Description: AWS-IAM-ManagedPolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-ManagedPolicy Tags: - Key: product-type Value: AWS-IAM-ManagedPolicy Versions: - Name: 16.1.0 Description: AWS-IAM-ManagedPolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-ManagedPolicy BranchName: 16.1.0 - Name: AWS-IAM-Policy Owner: central-it@customer.com Description: AWS-IAM-Policy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-Policy Tags: - Key: product-type Value: AWS-IAM-Policy Versions: - Name: 16.1.0 Description: AWS-IAM-Policy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-Policy BranchName: 16.1.0 - Name: AWS-IAM-Role Owner: central-it@customer.com Description: AWS-IAM-Role Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-Role Tags: - Key: product-type Value: AWS-IAM-Role Versions: - Name: 16.1.0 Description: AWS-IAM-Role-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-Role BranchName: 16.1.0 - Name: AWS-IAM-ServiceLinkedRole Owner: central-it@customer.com Description: AWS-IAM-ServiceLinkedRole Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-ServiceLinkedRole Tags: - Key: product-type Value: AWS-IAM-ServiceLinkedRole Versions: - Name: 16.1.0 Description: AWS-IAM-ServiceLinkedRole-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-ServiceLinkedRole BranchName: 16.1.0 - Name: AWS-IAM-User Owner: central-it@customer.com Description: AWS-IAM-User Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-User Tags: - Key: product-type Value: AWS-IAM-User Versions: - Name: 16.1.0 Description: AWS-IAM-User-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-User BranchName: 16.1.0 - Name: AWS-IAM-UserToGroupAddition Owner: central-it@customer.com Description: AWS-IAM-UserToGroupAddition Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IAM-UserToGroupAddition Tags: - Key: product-type Value: AWS-IAM-UserToGroupAddition Versions: - Name: 16.1.0 Description: AWS-IAM-UserToGroupAddition-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IAM-UserToGroupAddition BranchName: 16.1.0 - Name: AWS-ImageBuilder-Component Owner: central-it@customer.com Description: AWS-ImageBuilder-Component Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ImageBuilder-Component Tags: - Key: product-type Value: AWS-ImageBuilder-Component Versions: - Name: 16.1.0 Description: AWS-ImageBuilder-Component-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ImageBuilder-Component BranchName: 16.1.0 - Name: AWS-ImageBuilder-DistributionConfiguration Owner: central-it@customer.com Description: AWS-ImageBuilder-DistributionConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ImageBuilder-DistributionConfiguration Tags: - Key: product-type Value: AWS-ImageBuilder-DistributionConfiguration Versions: - Name: 16.1.0 Description: AWS-ImageBuilder-DistributionConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ImageBuilder-DistributionConfiguration BranchName: 16.1.0 - Name: AWS-ImageBuilder-Image Owner: central-it@customer.com Description: AWS-ImageBuilder-Image Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ImageBuilder-Image Tags: - Key: product-type Value: AWS-ImageBuilder-Image Versions: - Name: 16.1.0 Description: AWS-ImageBuilder-Image-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ImageBuilder-Image BranchName: 16.1.0 - Name: AWS-ImageBuilder-ImagePipeline Owner: central-it@customer.com Description: AWS-ImageBuilder-ImagePipeline Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ImageBuilder-ImagePipeline Tags: - Key: product-type Value: AWS-ImageBuilder-ImagePipeline Versions: - Name: 16.1.0 Description: AWS-ImageBuilder-ImagePipeline-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ImageBuilder-ImagePipeline BranchName: 16.1.0 - Name: AWS-ImageBuilder-ImageRecipe Owner: central-it@customer.com Description: AWS-ImageBuilder-ImageRecipe Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ImageBuilder-ImageRecipe Tags: - Key: product-type Value: AWS-ImageBuilder-ImageRecipe Versions: - Name: 16.1.0 Description: AWS-ImageBuilder-ImageRecipe-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ImageBuilder-ImageRecipe BranchName: 16.1.0 - Name: AWS-ImageBuilder-InfrastructureConfiguration Owner: central-it@customer.com Description: AWS-ImageBuilder-InfrastructureConfiguration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ImageBuilder-InfrastructureConfiguration Tags: - Key: product-type Value: AWS-ImageBuilder-InfrastructureConfiguration Versions: - Name: 16.1.0 Description: AWS-ImageBuilder-InfrastructureConfiguration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ImageBuilder-InfrastructureConfiguration BranchName: 16.1.0 - Name: AWS-Inspector-AssessmentTarget Owner: central-it@customer.com Description: AWS-Inspector-AssessmentTarget Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Inspector-AssessmentTarget Tags: - Key: product-type Value: AWS-Inspector-AssessmentTarget Versions: - Name: 16.1.0 Description: AWS-Inspector-AssessmentTarget-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Inspector-AssessmentTarget BranchName: 16.1.0 - Name: AWS-Inspector-AssessmentTemplate Owner: central-it@customer.com Description: AWS-Inspector-AssessmentTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Inspector-AssessmentTemplate Tags: - Key: product-type Value: AWS-Inspector-AssessmentTemplate Versions: - Name: 16.1.0 Description: AWS-Inspector-AssessmentTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Inspector-AssessmentTemplate BranchName: 16.1.0 - Name: AWS-Inspector-ResourceGroup Owner: central-it@customer.com Description: AWS-Inspector-ResourceGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Inspector-ResourceGroup Tags: - Key: product-type Value: AWS-Inspector-ResourceGroup Versions: - Name: 16.1.0 Description: AWS-Inspector-ResourceGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Inspector-ResourceGroup BranchName: 16.1.0 - Name: AWS-IoT-Certificate Owner: central-it@customer.com Description: AWS-IoT-Certificate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT-Certificate Tags: - Key: product-type Value: AWS-IoT-Certificate Versions: - Name: 16.1.0 Description: AWS-IoT-Certificate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT-Certificate BranchName: 16.1.0 - Name: AWS-IoT-Policy Owner: central-it@customer.com Description: AWS-IoT-Policy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT-Policy Tags: - Key: product-type Value: AWS-IoT-Policy Versions: - Name: 16.1.0 Description: AWS-IoT-Policy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT-Policy BranchName: 16.1.0 - Name: AWS-IoT-PolicyPrincipalAttachment Owner: central-it@customer.com Description: AWS-IoT-PolicyPrincipalAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT-PolicyPrincipalAttachment Tags: - Key: product-type Value: AWS-IoT-PolicyPrincipalAttachment Versions: - Name: 16.1.0 Description: AWS-IoT-PolicyPrincipalAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT-PolicyPrincipalAttachment BranchName: 16.1.0 - Name: AWS-IoT-ProvisioningTemplate Owner: central-it@customer.com Description: AWS-IoT-ProvisioningTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT-ProvisioningTemplate Tags: - Key: product-type Value: AWS-IoT-ProvisioningTemplate Versions: - Name: 16.1.0 Description: AWS-IoT-ProvisioningTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT-ProvisioningTemplate BranchName: 16.1.0 - Name: AWS-IoT-Thing Owner: central-it@customer.com Description: AWS-IoT-Thing Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT-Thing Tags: - Key: product-type Value: AWS-IoT-Thing Versions: - Name: 16.1.0 Description: AWS-IoT-Thing-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT-Thing BranchName: 16.1.0 - Name: AWS-IoT-ThingPrincipalAttachment Owner: central-it@customer.com Description: AWS-IoT-ThingPrincipalAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT-ThingPrincipalAttachment Tags: - Key: product-type Value: AWS-IoT-ThingPrincipalAttachment Versions: - Name: 16.1.0 Description: AWS-IoT-ThingPrincipalAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT-ThingPrincipalAttachment BranchName: 16.1.0 - Name: AWS-IoT-TopicRule Owner: central-it@customer.com Description: AWS-IoT-TopicRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT-TopicRule Tags: - Key: product-type Value: AWS-IoT-TopicRule Versions: - Name: 16.1.0 Description: AWS-IoT-TopicRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT-TopicRule BranchName: 16.1.0 - Name: AWS-IoT1Click-Device Owner: central-it@customer.com Description: AWS-IoT1Click-Device Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT1Click-Device Tags: - Key: product-type Value: AWS-IoT1Click-Device Versions: - Name: 16.1.0 Description: AWS-IoT1Click-Device-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT1Click-Device BranchName: 16.1.0 - Name: AWS-IoT1Click-Placement Owner: central-it@customer.com Description: AWS-IoT1Click-Placement Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT1Click-Placement Tags: - Key: product-type Value: AWS-IoT1Click-Placement Versions: - Name: 16.1.0 Description: AWS-IoT1Click-Placement-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT1Click-Placement BranchName: 16.1.0 - Name: AWS-IoT1Click-Project Owner: central-it@customer.com Description: AWS-IoT1Click-Project Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoT1Click-Project Tags: - Key: product-type Value: AWS-IoT1Click-Project Versions: - Name: 16.1.0 Description: AWS-IoT1Click-Project-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoT1Click-Project BranchName: 16.1.0 - Name: AWS-IoTAnalytics-Channel Owner: central-it@customer.com Description: AWS-IoTAnalytics-Channel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoTAnalytics-Channel Tags: - Key: product-type Value: AWS-IoTAnalytics-Channel Versions: - Name: 16.1.0 Description: AWS-IoTAnalytics-Channel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoTAnalytics-Channel BranchName: 16.1.0 - Name: AWS-IoTAnalytics-Dataset Owner: central-it@customer.com Description: AWS-IoTAnalytics-Dataset Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoTAnalytics-Dataset Tags: - Key: product-type Value: AWS-IoTAnalytics-Dataset Versions: - Name: 16.1.0 Description: AWS-IoTAnalytics-Dataset-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoTAnalytics-Dataset BranchName: 16.1.0 - Name: AWS-IoTAnalytics-Datastore Owner: central-it@customer.com Description: AWS-IoTAnalytics-Datastore Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoTAnalytics-Datastore Tags: - Key: product-type Value: AWS-IoTAnalytics-Datastore Versions: - Name: 16.1.0 Description: AWS-IoTAnalytics-Datastore-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoTAnalytics-Datastore BranchName: 16.1.0 - Name: AWS-IoTAnalytics-Pipeline Owner: central-it@customer.com Description: AWS-IoTAnalytics-Pipeline Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoTAnalytics-Pipeline Tags: - Key: product-type Value: AWS-IoTAnalytics-Pipeline Versions: - Name: 16.1.0 Description: AWS-IoTAnalytics-Pipeline-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoTAnalytics-Pipeline BranchName: 16.1.0 - Name: AWS-IoTEvents-DetectorModel Owner: central-it@customer.com Description: AWS-IoTEvents-DetectorModel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoTEvents-DetectorModel Tags: - Key: product-type Value: AWS-IoTEvents-DetectorModel Versions: - Name: 16.1.0 Description: AWS-IoTEvents-DetectorModel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoTEvents-DetectorModel BranchName: 16.1.0 - Name: AWS-IoTEvents-Input Owner: central-it@customer.com Description: AWS-IoTEvents-Input Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoTEvents-Input Tags: - Key: product-type Value: AWS-IoTEvents-Input Versions: - Name: 16.1.0 Description: AWS-IoTEvents-Input-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoTEvents-Input BranchName: 16.1.0 - Name: AWS-IoTThingsGraph-FlowTemplate Owner: central-it@customer.com Description: AWS-IoTThingsGraph-FlowTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-IoTThingsGraph-FlowTemplate Tags: - Key: product-type Value: AWS-IoTThingsGraph-FlowTemplate Versions: - Name: 16.1.0 Description: AWS-IoTThingsGraph-FlowTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-IoTThingsGraph-FlowTemplate BranchName: 16.1.0 - Name: AWS-KMS-Alias Owner: central-it@customer.com Description: AWS-KMS-Alias Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KMS-Alias Tags: - Key: product-type Value: AWS-KMS-Alias Versions: - Name: 16.1.0 Description: AWS-KMS-Alias-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KMS-Alias BranchName: 16.1.0 - Name: AWS-KMS-Key Owner: central-it@customer.com Description: AWS-KMS-Key Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KMS-Key Tags: - Key: product-type Value: AWS-KMS-Key Versions: - Name: 16.1.0 Description: AWS-KMS-Key-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KMS-Key BranchName: 16.1.0 - Name: AWS-Kinesis-Stream Owner: central-it@customer.com Description: AWS-Kinesis-Stream Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Kinesis-Stream Tags: - Key: product-type Value: AWS-Kinesis-Stream Versions: - Name: 16.1.0 Description: AWS-Kinesis-Stream-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Kinesis-Stream BranchName: 16.1.0 - Name: AWS-Kinesis-StreamConsumer Owner: central-it@customer.com Description: AWS-Kinesis-StreamConsumer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Kinesis-StreamConsumer Tags: - Key: product-type Value: AWS-Kinesis-StreamConsumer Versions: - Name: 16.1.0 Description: AWS-Kinesis-StreamConsumer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Kinesis-StreamConsumer BranchName: 16.1.0 - Name: AWS-KinesisAnalytics-Application Owner: central-it@customer.com Description: AWS-KinesisAnalytics-Application Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisAnalytics-Application Tags: - Key: product-type Value: AWS-KinesisAnalytics-Application Versions: - Name: 16.1.0 Description: AWS-KinesisAnalytics-Application-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisAnalytics-Application BranchName: 16.1.0 - Name: AWS-KinesisAnalytics-ApplicationOutput Owner: central-it@customer.com Description: AWS-KinesisAnalytics-ApplicationOutput Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisAnalytics-ApplicationOutput Tags: - Key: product-type Value: AWS-KinesisAnalytics-ApplicationOutput Versions: - Name: 16.1.0 Description: AWS-KinesisAnalytics-ApplicationOutput-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisAnalytics-ApplicationOutput BranchName: 16.1.0 - Name: AWS-KinesisAnalytics-ApplicationReferenceDataSource Owner: central-it@customer.com Description: AWS-KinesisAnalytics-ApplicationReferenceDataSource Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisAnalytics-ApplicationReferenceDataSource Tags: - Key: product-type Value: AWS-KinesisAnalytics-ApplicationReferenceDataSource Versions: - Name: 16.1.0 Description: AWS-KinesisAnalytics-ApplicationReferenceDataSource-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisAnalytics-ApplicationReferenceDataSource BranchName: 16.1.0 - Name: AWS-KinesisAnalyticsV2-Application Owner: central-it@customer.com Description: AWS-KinesisAnalyticsV2-Application Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisAnalyticsV2-Application Tags: - Key: product-type Value: AWS-KinesisAnalyticsV2-Application Versions: - Name: 16.1.0 Description: AWS-KinesisAnalyticsV2-Application-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisAnalyticsV2-Application BranchName: 16.1.0 - Name: AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption Owner: central-it@customer.com Description: AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption Tags: - Key: product-type Value: AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption Versions: - Name: 16.1.0 Description: AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption BranchName: 16.1.0 - Name: AWS-KinesisAnalyticsV2-ApplicationOutput Owner: central-it@customer.com Description: AWS-KinesisAnalyticsV2-ApplicationOutput Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisAnalyticsV2-ApplicationOutput Tags: - Key: product-type Value: AWS-KinesisAnalyticsV2-ApplicationOutput Versions: - Name: 16.1.0 Description: AWS-KinesisAnalyticsV2-ApplicationOutput-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisAnalyticsV2-ApplicationOutput BranchName: 16.1.0 - Name: AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource Owner: central-it@customer.com Description: AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource Tags: - Key: product-type Value: AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource Versions: - Name: 16.1.0 Description: AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource BranchName: 16.1.0 - Name: AWS-KinesisFirehose-DeliveryStream Owner: central-it@customer.com Description: AWS-KinesisFirehose-DeliveryStream Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-KinesisFirehose-DeliveryStream Tags: - Key: product-type Value: AWS-KinesisFirehose-DeliveryStream Versions: - Name: 16.1.0 Description: AWS-KinesisFirehose-DeliveryStream-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-KinesisFirehose-DeliveryStream BranchName: 16.1.0 - Name: AWS-LakeFormation-DataLakeSettings Owner: central-it@customer.com Description: AWS-LakeFormation-DataLakeSettings Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-LakeFormation-DataLakeSettings Tags: - Key: product-type Value: AWS-LakeFormation-DataLakeSettings Versions: - Name: 16.1.0 Description: AWS-LakeFormation-DataLakeSettings-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-LakeFormation-DataLakeSettings BranchName: 16.1.0 - Name: AWS-LakeFormation-Permissions Owner: central-it@customer.com Description: AWS-LakeFormation-Permissions Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-LakeFormation-Permissions Tags: - Key: product-type Value: AWS-LakeFormation-Permissions Versions: - Name: 16.1.0 Description: AWS-LakeFormation-Permissions-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-LakeFormation-Permissions BranchName: 16.1.0 - Name: AWS-LakeFormation-Resource Owner: central-it@customer.com Description: AWS-LakeFormation-Resource Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-LakeFormation-Resource Tags: - Key: product-type Value: AWS-LakeFormation-Resource Versions: - Name: 16.1.0 Description: AWS-LakeFormation-Resource-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-LakeFormation-Resource BranchName: 16.1.0 - Name: AWS-Lambda-Alias Owner: central-it@customer.com Description: AWS-Lambda-Alias Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-Alias Tags: - Key: product-type Value: AWS-Lambda-Alias Versions: - Name: 16.1.0 Description: AWS-Lambda-Alias-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-Alias BranchName: 16.1.0 - Name: AWS-Lambda-EventInvokeConfig Owner: central-it@customer.com Description: AWS-Lambda-EventInvokeConfig Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-EventInvokeConfig Tags: - Key: product-type Value: AWS-Lambda-EventInvokeConfig Versions: - Name: 16.1.0 Description: AWS-Lambda-EventInvokeConfig-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-EventInvokeConfig BranchName: 16.1.0 - Name: AWS-Lambda-EventSourceMapping Owner: central-it@customer.com Description: AWS-Lambda-EventSourceMapping Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-EventSourceMapping Tags: - Key: product-type Value: AWS-Lambda-EventSourceMapping Versions: - Name: 16.1.0 Description: AWS-Lambda-EventSourceMapping-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-EventSourceMapping BranchName: 16.1.0 - Name: AWS-Lambda-Function Owner: central-it@customer.com Description: AWS-Lambda-Function Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-Function Tags: - Key: product-type Value: AWS-Lambda-Function Versions: - Name: 16.1.0 Description: AWS-Lambda-Function-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-Function BranchName: 16.1.0 - Name: AWS-Lambda-LayerVersion Owner: central-it@customer.com Description: AWS-Lambda-LayerVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-LayerVersion Tags: - Key: product-type Value: AWS-Lambda-LayerVersion Versions: - Name: 16.1.0 Description: AWS-Lambda-LayerVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-LayerVersion BranchName: 16.1.0 - Name: AWS-Lambda-LayerVersionPermission Owner: central-it@customer.com Description: AWS-Lambda-LayerVersionPermission Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-LayerVersionPermission Tags: - Key: product-type Value: AWS-Lambda-LayerVersionPermission Versions: - Name: 16.1.0 Description: AWS-Lambda-LayerVersionPermission-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-LayerVersionPermission BranchName: 16.1.0 - Name: AWS-Lambda-Permission Owner: central-it@customer.com Description: AWS-Lambda-Permission Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-Permission Tags: - Key: product-type Value: AWS-Lambda-Permission Versions: - Name: 16.1.0 Description: AWS-Lambda-Permission-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-Permission BranchName: 16.1.0 - Name: AWS-Lambda-Version Owner: central-it@customer.com Description: AWS-Lambda-Version Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Lambda-Version Tags: - Key: product-type Value: AWS-Lambda-Version Versions: - Name: 16.1.0 Description: AWS-Lambda-Version-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Lambda-Version BranchName: 16.1.0 - Name: AWS-Logs-Destination Owner: central-it@customer.com Description: AWS-Logs-Destination Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Logs-Destination Tags: - Key: product-type Value: AWS-Logs-Destination Versions: - Name: 16.1.0 Description: AWS-Logs-Destination-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Logs-Destination BranchName: 16.1.0 - Name: AWS-Logs-LogGroup Owner: central-it@customer.com Description: AWS-Logs-LogGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Logs-LogGroup Tags: - Key: product-type Value: AWS-Logs-LogGroup Versions: - Name: 16.1.0 Description: AWS-Logs-LogGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Logs-LogGroup BranchName: 16.1.0 - Name: AWS-Logs-LogStream Owner: central-it@customer.com Description: AWS-Logs-LogStream Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Logs-LogStream Tags: - Key: product-type Value: AWS-Logs-LogStream Versions: - Name: 16.1.0 Description: AWS-Logs-LogStream-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Logs-LogStream BranchName: 16.1.0 - Name: AWS-Logs-MetricFilter Owner: central-it@customer.com Description: AWS-Logs-MetricFilter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Logs-MetricFilter Tags: - Key: product-type Value: AWS-Logs-MetricFilter Versions: - Name: 16.1.0 Description: AWS-Logs-MetricFilter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Logs-MetricFilter BranchName: 16.1.0 - Name: AWS-Logs-SubscriptionFilter Owner: central-it@customer.com Description: AWS-Logs-SubscriptionFilter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Logs-SubscriptionFilter Tags: - Key: product-type Value: AWS-Logs-SubscriptionFilter Versions: - Name: 16.1.0 Description: AWS-Logs-SubscriptionFilter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Logs-SubscriptionFilter BranchName: 16.1.0 - Name: AWS-MSK-Cluster Owner: central-it@customer.com Description: AWS-MSK-Cluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MSK-Cluster Tags: - Key: product-type Value: AWS-MSK-Cluster Versions: - Name: 16.1.0 Description: AWS-MSK-Cluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MSK-Cluster BranchName: 16.1.0 - Name: AWS-Macie-CustomDataIdentifier Owner: central-it@customer.com Description: AWS-Macie-CustomDataIdentifier Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Macie-CustomDataIdentifier Tags: - Key: product-type Value: AWS-Macie-CustomDataIdentifier Versions: - Name: 16.1.0 Description: AWS-Macie-CustomDataIdentifier-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Macie-CustomDataIdentifier BranchName: 16.1.0 - Name: AWS-Macie-FindingsFilter Owner: central-it@customer.com Description: AWS-Macie-FindingsFilter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Macie-FindingsFilter Tags: - Key: product-type Value: AWS-Macie-FindingsFilter Versions: - Name: 16.1.0 Description: AWS-Macie-FindingsFilter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Macie-FindingsFilter BranchName: 16.1.0 - Name: AWS-Macie-Session Owner: central-it@customer.com Description: AWS-Macie-Session Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Macie-Session Tags: - Key: product-type Value: AWS-Macie-Session Versions: - Name: 16.1.0 Description: AWS-Macie-Session-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Macie-Session BranchName: 16.1.0 - Name: AWS-ManagedBlockchain-Member Owner: central-it@customer.com Description: AWS-ManagedBlockchain-Member Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ManagedBlockchain-Member Tags: - Key: product-type Value: AWS-ManagedBlockchain-Member Versions: - Name: 16.1.0 Description: AWS-ManagedBlockchain-Member-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ManagedBlockchain-Member BranchName: 16.1.0 - Name: AWS-ManagedBlockchain-Node Owner: central-it@customer.com Description: AWS-ManagedBlockchain-Node Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ManagedBlockchain-Node Tags: - Key: product-type Value: AWS-ManagedBlockchain-Node Versions: - Name: 16.1.0 Description: AWS-ManagedBlockchain-Node-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ManagedBlockchain-Node BranchName: 16.1.0 - Name: AWS-MediaConvert-JobTemplate Owner: central-it@customer.com Description: AWS-MediaConvert-JobTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MediaConvert-JobTemplate Tags: - Key: product-type Value: AWS-MediaConvert-JobTemplate Versions: - Name: 16.1.0 Description: AWS-MediaConvert-JobTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MediaConvert-JobTemplate BranchName: 16.1.0 - Name: AWS-MediaConvert-Preset Owner: central-it@customer.com Description: AWS-MediaConvert-Preset Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MediaConvert-Preset Tags: - Key: product-type Value: AWS-MediaConvert-Preset Versions: - Name: 16.1.0 Description: AWS-MediaConvert-Preset-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MediaConvert-Preset BranchName: 16.1.0 - Name: AWS-MediaConvert-Queue Owner: central-it@customer.com Description: AWS-MediaConvert-Queue Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MediaConvert-Queue Tags: - Key: product-type Value: AWS-MediaConvert-Queue Versions: - Name: 16.1.0 Description: AWS-MediaConvert-Queue-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MediaConvert-Queue BranchName: 16.1.0 - Name: AWS-MediaLive-Channel Owner: central-it@customer.com Description: AWS-MediaLive-Channel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MediaLive-Channel Tags: - Key: product-type Value: AWS-MediaLive-Channel Versions: - Name: 16.1.0 Description: AWS-MediaLive-Channel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MediaLive-Channel BranchName: 16.1.0 - Name: AWS-MediaLive-Input Owner: central-it@customer.com Description: AWS-MediaLive-Input Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MediaLive-Input Tags: - Key: product-type Value: AWS-MediaLive-Input Versions: - Name: 16.1.0 Description: AWS-MediaLive-Input-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MediaLive-Input BranchName: 16.1.0 - Name: AWS-MediaLive-InputSecurityGroup Owner: central-it@customer.com Description: AWS-MediaLive-InputSecurityGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MediaLive-InputSecurityGroup Tags: - Key: product-type Value: AWS-MediaLive-InputSecurityGroup Versions: - Name: 16.1.0 Description: AWS-MediaLive-InputSecurityGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MediaLive-InputSecurityGroup BranchName: 16.1.0 - Name: AWS-MediaStore-Container Owner: central-it@customer.com Description: AWS-MediaStore-Container Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-MediaStore-Container Tags: - Key: product-type Value: AWS-MediaStore-Container Versions: - Name: 16.1.0 Description: AWS-MediaStore-Container-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-MediaStore-Container BranchName: 16.1.0 - Name: AWS-Neptune-DBCluster Owner: central-it@customer.com Description: AWS-Neptune-DBCluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Neptune-DBCluster Tags: - Key: product-type Value: AWS-Neptune-DBCluster Versions: - Name: 16.1.0 Description: AWS-Neptune-DBCluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Neptune-DBCluster BranchName: 16.1.0 - Name: AWS-Neptune-DBClusterParameterGroup Owner: central-it@customer.com Description: AWS-Neptune-DBClusterParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Neptune-DBClusterParameterGroup Tags: - Key: product-type Value: AWS-Neptune-DBClusterParameterGroup Versions: - Name: 16.1.0 Description: AWS-Neptune-DBClusterParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Neptune-DBClusterParameterGroup BranchName: 16.1.0 - Name: AWS-Neptune-DBInstance Owner: central-it@customer.com Description: AWS-Neptune-DBInstance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Neptune-DBInstance Tags: - Key: product-type Value: AWS-Neptune-DBInstance Versions: - Name: 16.1.0 Description: AWS-Neptune-DBInstance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Neptune-DBInstance BranchName: 16.1.0 - Name: AWS-Neptune-DBParameterGroup Owner: central-it@customer.com Description: AWS-Neptune-DBParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Neptune-DBParameterGroup Tags: - Key: product-type Value: AWS-Neptune-DBParameterGroup Versions: - Name: 16.1.0 Description: AWS-Neptune-DBParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Neptune-DBParameterGroup BranchName: 16.1.0 - Name: AWS-Neptune-DBSubnetGroup Owner: central-it@customer.com Description: AWS-Neptune-DBSubnetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Neptune-DBSubnetGroup Tags: - Key: product-type Value: AWS-Neptune-DBSubnetGroup Versions: - Name: 16.1.0 Description: AWS-Neptune-DBSubnetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Neptune-DBSubnetGroup BranchName: 16.1.0 - Name: AWS-NetworkManager-CustomerGatewayAssociation Owner: central-it@customer.com Description: AWS-NetworkManager-CustomerGatewayAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-NetworkManager-CustomerGatewayAssociation Tags: - Key: product-type Value: AWS-NetworkManager-CustomerGatewayAssociation Versions: - Name: 16.1.0 Description: AWS-NetworkManager-CustomerGatewayAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-NetworkManager-CustomerGatewayAssociation BranchName: 16.1.0 - Name: AWS-NetworkManager-Device Owner: central-it@customer.com Description: AWS-NetworkManager-Device Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-NetworkManager-Device Tags: - Key: product-type Value: AWS-NetworkManager-Device Versions: - Name: 16.1.0 Description: AWS-NetworkManager-Device-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-NetworkManager-Device BranchName: 16.1.0 - Name: AWS-NetworkManager-GlobalNetwork Owner: central-it@customer.com Description: AWS-NetworkManager-GlobalNetwork Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-NetworkManager-GlobalNetwork Tags: - Key: product-type Value: AWS-NetworkManager-GlobalNetwork Versions: - Name: 16.1.0 Description: AWS-NetworkManager-GlobalNetwork-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-NetworkManager-GlobalNetwork BranchName: 16.1.0 - Name: AWS-NetworkManager-Link Owner: central-it@customer.com Description: AWS-NetworkManager-Link Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-NetworkManager-Link Tags: - Key: product-type Value: AWS-NetworkManager-Link Versions: - Name: 16.1.0 Description: AWS-NetworkManager-Link-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-NetworkManager-Link BranchName: 16.1.0 - Name: AWS-NetworkManager-LinkAssociation Owner: central-it@customer.com Description: AWS-NetworkManager-LinkAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-NetworkManager-LinkAssociation Tags: - Key: product-type Value: AWS-NetworkManager-LinkAssociation Versions: - Name: 16.1.0 Description: AWS-NetworkManager-LinkAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-NetworkManager-LinkAssociation BranchName: 16.1.0 - Name: AWS-NetworkManager-Site Owner: central-it@customer.com Description: AWS-NetworkManager-Site Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-NetworkManager-Site Tags: - Key: product-type Value: AWS-NetworkManager-Site Versions: - Name: 16.1.0 Description: AWS-NetworkManager-Site-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-NetworkManager-Site BranchName: 16.1.0 - Name: AWS-NetworkManager-TransitGatewayRegistration Owner: central-it@customer.com Description: AWS-NetworkManager-TransitGatewayRegistration Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-NetworkManager-TransitGatewayRegistration Tags: - Key: product-type Value: AWS-NetworkManager-TransitGatewayRegistration Versions: - Name: 16.1.0 Description: AWS-NetworkManager-TransitGatewayRegistration-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-NetworkManager-TransitGatewayRegistration BranchName: 16.1.0 - Name: AWS-OpsWorks-App Owner: central-it@customer.com Description: AWS-OpsWorks-App Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorks-App Tags: - Key: product-type Value: AWS-OpsWorks-App Versions: - Name: 16.1.0 Description: AWS-OpsWorks-App-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorks-App BranchName: 16.1.0 - Name: AWS-OpsWorks-ElasticLoadBalancerAttachment Owner: central-it@customer.com Description: AWS-OpsWorks-ElasticLoadBalancerAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorks-ElasticLoadBalancerAttachment Tags: - Key: product-type Value: AWS-OpsWorks-ElasticLoadBalancerAttachment Versions: - Name: 16.1.0 Description: AWS-OpsWorks-ElasticLoadBalancerAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorks-ElasticLoadBalancerAttachment BranchName: 16.1.0 - Name: AWS-OpsWorks-Instance Owner: central-it@customer.com Description: AWS-OpsWorks-Instance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorks-Instance Tags: - Key: product-type Value: AWS-OpsWorks-Instance Versions: - Name: 16.1.0 Description: AWS-OpsWorks-Instance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorks-Instance BranchName: 16.1.0 - Name: AWS-OpsWorks-Layer Owner: central-it@customer.com Description: AWS-OpsWorks-Layer Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorks-Layer Tags: - Key: product-type Value: AWS-OpsWorks-Layer Versions: - Name: 16.1.0 Description: AWS-OpsWorks-Layer-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorks-Layer BranchName: 16.1.0 - Name: AWS-OpsWorks-Stack Owner: central-it@customer.com Description: AWS-OpsWorks-Stack Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorks-Stack Tags: - Key: product-type Value: AWS-OpsWorks-Stack Versions: - Name: 16.1.0 Description: AWS-OpsWorks-Stack-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorks-Stack BranchName: 16.1.0 - Name: AWS-OpsWorks-UserProfile Owner: central-it@customer.com Description: AWS-OpsWorks-UserProfile Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorks-UserProfile Tags: - Key: product-type Value: AWS-OpsWorks-UserProfile Versions: - Name: 16.1.0 Description: AWS-OpsWorks-UserProfile-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorks-UserProfile BranchName: 16.1.0 - Name: AWS-OpsWorks-Volume Owner: central-it@customer.com Description: AWS-OpsWorks-Volume Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorks-Volume Tags: - Key: product-type Value: AWS-OpsWorks-Volume Versions: - Name: 16.1.0 Description: AWS-OpsWorks-Volume-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorks-Volume BranchName: 16.1.0 - Name: AWS-OpsWorksCM-Server Owner: central-it@customer.com Description: AWS-OpsWorksCM-Server Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-OpsWorksCM-Server Tags: - Key: product-type Value: AWS-OpsWorksCM-Server Versions: - Name: 16.1.0 Description: AWS-OpsWorksCM-Server-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-OpsWorksCM-Server BranchName: 16.1.0 - Name: AWS-Pinpoint-ADMChannel Owner: central-it@customer.com Description: AWS-Pinpoint-ADMChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-ADMChannel Tags: - Key: product-type Value: AWS-Pinpoint-ADMChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-ADMChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-ADMChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-APNSChannel Owner: central-it@customer.com Description: AWS-Pinpoint-APNSChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-APNSChannel Tags: - Key: product-type Value: AWS-Pinpoint-APNSChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-APNSChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-APNSChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-APNSSandboxChannel Owner: central-it@customer.com Description: AWS-Pinpoint-APNSSandboxChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-APNSSandboxChannel Tags: - Key: product-type Value: AWS-Pinpoint-APNSSandboxChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-APNSSandboxChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-APNSSandboxChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-APNSVoipChannel Owner: central-it@customer.com Description: AWS-Pinpoint-APNSVoipChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-APNSVoipChannel Tags: - Key: product-type Value: AWS-Pinpoint-APNSVoipChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-APNSVoipChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-APNSVoipChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-APNSVoipSandboxChannel Owner: central-it@customer.com Description: AWS-Pinpoint-APNSVoipSandboxChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-APNSVoipSandboxChannel Tags: - Key: product-type Value: AWS-Pinpoint-APNSVoipSandboxChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-APNSVoipSandboxChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-APNSVoipSandboxChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-App Owner: central-it@customer.com Description: AWS-Pinpoint-App Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-App Tags: - Key: product-type Value: AWS-Pinpoint-App Versions: - Name: 16.1.0 Description: AWS-Pinpoint-App-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-App BranchName: 16.1.0 - Name: AWS-Pinpoint-ApplicationSettings Owner: central-it@customer.com Description: AWS-Pinpoint-ApplicationSettings Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-ApplicationSettings Tags: - Key: product-type Value: AWS-Pinpoint-ApplicationSettings Versions: - Name: 16.1.0 Description: AWS-Pinpoint-ApplicationSettings-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-ApplicationSettings BranchName: 16.1.0 - Name: AWS-Pinpoint-BaiduChannel Owner: central-it@customer.com Description: AWS-Pinpoint-BaiduChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-BaiduChannel Tags: - Key: product-type Value: AWS-Pinpoint-BaiduChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-BaiduChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-BaiduChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-Campaign Owner: central-it@customer.com Description: AWS-Pinpoint-Campaign Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-Campaign Tags: - Key: product-type Value: AWS-Pinpoint-Campaign Versions: - Name: 16.1.0 Description: AWS-Pinpoint-Campaign-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-Campaign BranchName: 16.1.0 - Name: AWS-Pinpoint-EmailChannel Owner: central-it@customer.com Description: AWS-Pinpoint-EmailChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-EmailChannel Tags: - Key: product-type Value: AWS-Pinpoint-EmailChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-EmailChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-EmailChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-EmailTemplate Owner: central-it@customer.com Description: AWS-Pinpoint-EmailTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-EmailTemplate Tags: - Key: product-type Value: AWS-Pinpoint-EmailTemplate Versions: - Name: 16.1.0 Description: AWS-Pinpoint-EmailTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-EmailTemplate BranchName: 16.1.0 - Name: AWS-Pinpoint-EventStream Owner: central-it@customer.com Description: AWS-Pinpoint-EventStream Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-EventStream Tags: - Key: product-type Value: AWS-Pinpoint-EventStream Versions: - Name: 16.1.0 Description: AWS-Pinpoint-EventStream-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-EventStream BranchName: 16.1.0 - Name: AWS-Pinpoint-GCMChannel Owner: central-it@customer.com Description: AWS-Pinpoint-GCMChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-GCMChannel Tags: - Key: product-type Value: AWS-Pinpoint-GCMChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-GCMChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-GCMChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-PushTemplate Owner: central-it@customer.com Description: AWS-Pinpoint-PushTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-PushTemplate Tags: - Key: product-type Value: AWS-Pinpoint-PushTemplate Versions: - Name: 16.1.0 Description: AWS-Pinpoint-PushTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-PushTemplate BranchName: 16.1.0 - Name: AWS-Pinpoint-SMSChannel Owner: central-it@customer.com Description: AWS-Pinpoint-SMSChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-SMSChannel Tags: - Key: product-type Value: AWS-Pinpoint-SMSChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-SMSChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-SMSChannel BranchName: 16.1.0 - Name: AWS-Pinpoint-Segment Owner: central-it@customer.com Description: AWS-Pinpoint-Segment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-Segment Tags: - Key: product-type Value: AWS-Pinpoint-Segment Versions: - Name: 16.1.0 Description: AWS-Pinpoint-Segment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-Segment BranchName: 16.1.0 - Name: AWS-Pinpoint-SmsTemplate Owner: central-it@customer.com Description: AWS-Pinpoint-SmsTemplate Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-SmsTemplate Tags: - Key: product-type Value: AWS-Pinpoint-SmsTemplate Versions: - Name: 16.1.0 Description: AWS-Pinpoint-SmsTemplate-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-SmsTemplate BranchName: 16.1.0 - Name: AWS-Pinpoint-VoiceChannel Owner: central-it@customer.com Description: AWS-Pinpoint-VoiceChannel Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Pinpoint-VoiceChannel Tags: - Key: product-type Value: AWS-Pinpoint-VoiceChannel Versions: - Name: 16.1.0 Description: AWS-Pinpoint-VoiceChannel-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Pinpoint-VoiceChannel BranchName: 16.1.0 - Name: AWS-PinpointEmail-ConfigurationSet Owner: central-it@customer.com Description: AWS-PinpointEmail-ConfigurationSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-PinpointEmail-ConfigurationSet Tags: - Key: product-type Value: AWS-PinpointEmail-ConfigurationSet Versions: - Name: 16.1.0 Description: AWS-PinpointEmail-ConfigurationSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-PinpointEmail-ConfigurationSet BranchName: 16.1.0 - Name: AWS-PinpointEmail-ConfigurationSetEventDestination Owner: central-it@customer.com Description: AWS-PinpointEmail-ConfigurationSetEventDestination Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-PinpointEmail-ConfigurationSetEventDestination Tags: - Key: product-type Value: AWS-PinpointEmail-ConfigurationSetEventDestination Versions: - Name: 16.1.0 Description: AWS-PinpointEmail-ConfigurationSetEventDestination-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-PinpointEmail-ConfigurationSetEventDestination BranchName: 16.1.0 - Name: AWS-PinpointEmail-DedicatedIpPool Owner: central-it@customer.com Description: AWS-PinpointEmail-DedicatedIpPool Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-PinpointEmail-DedicatedIpPool Tags: - Key: product-type Value: AWS-PinpointEmail-DedicatedIpPool Versions: - Name: 16.1.0 Description: AWS-PinpointEmail-DedicatedIpPool-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-PinpointEmail-DedicatedIpPool BranchName: 16.1.0 - Name: AWS-PinpointEmail-Identity Owner: central-it@customer.com Description: AWS-PinpointEmail-Identity Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-PinpointEmail-Identity Tags: - Key: product-type Value: AWS-PinpointEmail-Identity Versions: - Name: 16.1.0 Description: AWS-PinpointEmail-Identity-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-PinpointEmail-Identity BranchName: 16.1.0 - Name: AWS-QLDB-Ledger Owner: central-it@customer.com Description: AWS-QLDB-Ledger Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-QLDB-Ledger Tags: - Key: product-type Value: AWS-QLDB-Ledger Versions: - Name: 16.1.0 Description: AWS-QLDB-Ledger-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-QLDB-Ledger BranchName: 16.1.0 - Name: AWS-QLDB-Stream Owner: central-it@customer.com Description: AWS-QLDB-Stream Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-QLDB-Stream Tags: - Key: product-type Value: AWS-QLDB-Stream Versions: - Name: 16.1.0 Description: AWS-QLDB-Stream-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-QLDB-Stream BranchName: 16.1.0 - Name: AWS-RAM-ResourceShare Owner: central-it@customer.com Description: AWS-RAM-ResourceShare Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RAM-ResourceShare Tags: - Key: product-type Value: AWS-RAM-ResourceShare Versions: - Name: 16.1.0 Description: AWS-RAM-ResourceShare-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RAM-ResourceShare BranchName: 16.1.0 - Name: AWS-RDS-DBCluster Owner: central-it@customer.com Description: AWS-RDS-DBCluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBCluster Tags: - Key: product-type Value: AWS-RDS-DBCluster Versions: - Name: 16.1.0 Description: AWS-RDS-DBCluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBCluster BranchName: 16.1.0 - Name: AWS-RDS-DBClusterParameterGroup Owner: central-it@customer.com Description: AWS-RDS-DBClusterParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBClusterParameterGroup Tags: - Key: product-type Value: AWS-RDS-DBClusterParameterGroup Versions: - Name: 16.1.0 Description: AWS-RDS-DBClusterParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBClusterParameterGroup BranchName: 16.1.0 - Name: AWS-RDS-DBInstance Owner: central-it@customer.com Description: AWS-RDS-DBInstance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBInstance Tags: - Key: product-type Value: AWS-RDS-DBInstance Versions: - Name: 16.1.0 Description: AWS-RDS-DBInstance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBInstance BranchName: 16.1.0 - Name: AWS-RDS-DBParameterGroup Owner: central-it@customer.com Description: AWS-RDS-DBParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBParameterGroup Tags: - Key: product-type Value: AWS-RDS-DBParameterGroup Versions: - Name: 16.1.0 Description: AWS-RDS-DBParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBParameterGroup BranchName: 16.1.0 - Name: AWS-RDS-DBProxy Owner: central-it@customer.com Description: AWS-RDS-DBProxy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBProxy Tags: - Key: product-type Value: AWS-RDS-DBProxy Versions: - Name: 16.1.0 Description: AWS-RDS-DBProxy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBProxy BranchName: 16.1.0 - Name: AWS-RDS-DBProxyTargetGroup Owner: central-it@customer.com Description: AWS-RDS-DBProxyTargetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBProxyTargetGroup Tags: - Key: product-type Value: AWS-RDS-DBProxyTargetGroup Versions: - Name: 16.1.0 Description: AWS-RDS-DBProxyTargetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBProxyTargetGroup BranchName: 16.1.0 - Name: AWS-RDS-DBSecurityGroup Owner: central-it@customer.com Description: AWS-RDS-DBSecurityGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBSecurityGroup Tags: - Key: product-type Value: AWS-RDS-DBSecurityGroup Versions: - Name: 16.1.0 Description: AWS-RDS-DBSecurityGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBSecurityGroup BranchName: 16.1.0 - Name: AWS-RDS-DBSecurityGroupIngress Owner: central-it@customer.com Description: AWS-RDS-DBSecurityGroupIngress Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBSecurityGroupIngress Tags: - Key: product-type Value: AWS-RDS-DBSecurityGroupIngress Versions: - Name: 16.1.0 Description: AWS-RDS-DBSecurityGroupIngress-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBSecurityGroupIngress BranchName: 16.1.0 - Name: AWS-RDS-DBSubnetGroup Owner: central-it@customer.com Description: AWS-RDS-DBSubnetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-DBSubnetGroup Tags: - Key: product-type Value: AWS-RDS-DBSubnetGroup Versions: - Name: 16.1.0 Description: AWS-RDS-DBSubnetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-DBSubnetGroup BranchName: 16.1.0 - Name: AWS-RDS-EventSubscription Owner: central-it@customer.com Description: AWS-RDS-EventSubscription Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-EventSubscription Tags: - Key: product-type Value: AWS-RDS-EventSubscription Versions: - Name: 16.1.0 Description: AWS-RDS-EventSubscription-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-EventSubscription BranchName: 16.1.0 - Name: AWS-RDS-OptionGroup Owner: central-it@customer.com Description: AWS-RDS-OptionGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RDS-OptionGroup Tags: - Key: product-type Value: AWS-RDS-OptionGroup Versions: - Name: 16.1.0 Description: AWS-RDS-OptionGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RDS-OptionGroup BranchName: 16.1.0 - Name: AWS-Redshift-Cluster Owner: central-it@customer.com Description: AWS-Redshift-Cluster Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Redshift-Cluster Tags: - Key: product-type Value: AWS-Redshift-Cluster Versions: - Name: 16.1.0 Description: AWS-Redshift-Cluster-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Redshift-Cluster BranchName: 16.1.0 - Name: AWS-Redshift-ClusterParameterGroup Owner: central-it@customer.com Description: AWS-Redshift-ClusterParameterGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Redshift-ClusterParameterGroup Tags: - Key: product-type Value: AWS-Redshift-ClusterParameterGroup Versions: - Name: 16.1.0 Description: AWS-Redshift-ClusterParameterGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Redshift-ClusterParameterGroup BranchName: 16.1.0 - Name: AWS-Redshift-ClusterSecurityGroup Owner: central-it@customer.com Description: AWS-Redshift-ClusterSecurityGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Redshift-ClusterSecurityGroup Tags: - Key: product-type Value: AWS-Redshift-ClusterSecurityGroup Versions: - Name: 16.1.0 Description: AWS-Redshift-ClusterSecurityGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Redshift-ClusterSecurityGroup BranchName: 16.1.0 - Name: AWS-Redshift-ClusterSecurityGroupIngress Owner: central-it@customer.com Description: AWS-Redshift-ClusterSecurityGroupIngress Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Redshift-ClusterSecurityGroupIngress Tags: - Key: product-type Value: AWS-Redshift-ClusterSecurityGroupIngress Versions: - Name: 16.1.0 Description: AWS-Redshift-ClusterSecurityGroupIngress-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Redshift-ClusterSecurityGroupIngress BranchName: 16.1.0 - Name: AWS-Redshift-ClusterSubnetGroup Owner: central-it@customer.com Description: AWS-Redshift-ClusterSubnetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Redshift-ClusterSubnetGroup Tags: - Key: product-type Value: AWS-Redshift-ClusterSubnetGroup Versions: - Name: 16.1.0 Description: AWS-Redshift-ClusterSubnetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Redshift-ClusterSubnetGroup BranchName: 16.1.0 - Name: AWS-ResourceGroups-Group Owner: central-it@customer.com Description: AWS-ResourceGroups-Group Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ResourceGroups-Group Tags: - Key: product-type Value: AWS-ResourceGroups-Group Versions: - Name: 16.1.0 Description: AWS-ResourceGroups-Group-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ResourceGroups-Group BranchName: 16.1.0 - Name: AWS-RoboMaker-Fleet Owner: central-it@customer.com Description: AWS-RoboMaker-Fleet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RoboMaker-Fleet Tags: - Key: product-type Value: AWS-RoboMaker-Fleet Versions: - Name: 16.1.0 Description: AWS-RoboMaker-Fleet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RoboMaker-Fleet BranchName: 16.1.0 - Name: AWS-RoboMaker-Robot Owner: central-it@customer.com Description: AWS-RoboMaker-Robot Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RoboMaker-Robot Tags: - Key: product-type Value: AWS-RoboMaker-Robot Versions: - Name: 16.1.0 Description: AWS-RoboMaker-Robot-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RoboMaker-Robot BranchName: 16.1.0 - Name: AWS-RoboMaker-RobotApplication Owner: central-it@customer.com Description: AWS-RoboMaker-RobotApplication Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RoboMaker-RobotApplication Tags: - Key: product-type Value: AWS-RoboMaker-RobotApplication Versions: - Name: 16.1.0 Description: AWS-RoboMaker-RobotApplication-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RoboMaker-RobotApplication BranchName: 16.1.0 - Name: AWS-RoboMaker-RobotApplicationVersion Owner: central-it@customer.com Description: AWS-RoboMaker-RobotApplicationVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RoboMaker-RobotApplicationVersion Tags: - Key: product-type Value: AWS-RoboMaker-RobotApplicationVersion Versions: - Name: 16.1.0 Description: AWS-RoboMaker-RobotApplicationVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RoboMaker-RobotApplicationVersion BranchName: 16.1.0 - Name: AWS-RoboMaker-SimulationApplication Owner: central-it@customer.com Description: AWS-RoboMaker-SimulationApplication Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RoboMaker-SimulationApplication Tags: - Key: product-type Value: AWS-RoboMaker-SimulationApplication Versions: - Name: 16.1.0 Description: AWS-RoboMaker-SimulationApplication-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RoboMaker-SimulationApplication BranchName: 16.1.0 - Name: AWS-RoboMaker-SimulationApplicationVersion Owner: central-it@customer.com Description: AWS-RoboMaker-SimulationApplicationVersion Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-RoboMaker-SimulationApplicationVersion Tags: - Key: product-type Value: AWS-RoboMaker-SimulationApplicationVersion Versions: - Name: 16.1.0 Description: AWS-RoboMaker-SimulationApplicationVersion-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-RoboMaker-SimulationApplicationVersion BranchName: 16.1.0 - Name: AWS-Route53-HealthCheck Owner: central-it@customer.com Description: AWS-Route53-HealthCheck Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Route53-HealthCheck Tags: - Key: product-type Value: AWS-Route53-HealthCheck Versions: - Name: 16.1.0 Description: AWS-Route53-HealthCheck-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Route53-HealthCheck BranchName: 16.1.0 - Name: AWS-Route53-HostedZone Owner: central-it@customer.com Description: AWS-Route53-HostedZone Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Route53-HostedZone Tags: - Key: product-type Value: AWS-Route53-HostedZone Versions: - Name: 16.1.0 Description: AWS-Route53-HostedZone-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Route53-HostedZone BranchName: 16.1.0 - Name: AWS-Route53-RecordSet Owner: central-it@customer.com Description: AWS-Route53-RecordSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Route53-RecordSet Tags: - Key: product-type Value: AWS-Route53-RecordSet Versions: - Name: 16.1.0 Description: AWS-Route53-RecordSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Route53-RecordSet BranchName: 16.1.0 - Name: AWS-Route53-RecordSetGroup Owner: central-it@customer.com Description: AWS-Route53-RecordSetGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Route53-RecordSetGroup Tags: - Key: product-type Value: AWS-Route53-RecordSetGroup Versions: - Name: 16.1.0 Description: AWS-Route53-RecordSetGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Route53-RecordSetGroup BranchName: 16.1.0 - Name: AWS-Route53Resolver-ResolverEndpoint Owner: central-it@customer.com Description: AWS-Route53Resolver-ResolverEndpoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Route53Resolver-ResolverEndpoint Tags: - Key: product-type Value: AWS-Route53Resolver-ResolverEndpoint Versions: - Name: 16.1.0 Description: AWS-Route53Resolver-ResolverEndpoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Route53Resolver-ResolverEndpoint BranchName: 16.1.0 - Name: AWS-Route53Resolver-ResolverRule Owner: central-it@customer.com Description: AWS-Route53Resolver-ResolverRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Route53Resolver-ResolverRule Tags: - Key: product-type Value: AWS-Route53Resolver-ResolverRule Versions: - Name: 16.1.0 Description: AWS-Route53Resolver-ResolverRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Route53Resolver-ResolverRule BranchName: 16.1.0 - Name: AWS-Route53Resolver-ResolverRuleAssociation Owner: central-it@customer.com Description: AWS-Route53Resolver-ResolverRuleAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Route53Resolver-ResolverRuleAssociation Tags: - Key: product-type Value: AWS-Route53Resolver-ResolverRuleAssociation Versions: - Name: 16.1.0 Description: AWS-Route53Resolver-ResolverRuleAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Route53Resolver-ResolverRuleAssociation BranchName: 16.1.0 - Name: AWS-S3-AccessPoint Owner: central-it@customer.com Description: AWS-S3-AccessPoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-S3-AccessPoint Tags: - Key: product-type Value: AWS-S3-AccessPoint Versions: - Name: 16.1.0 Description: AWS-S3-AccessPoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-S3-AccessPoint BranchName: 16.1.0 - Name: AWS-S3-Bucket Owner: central-it@customer.com Description: AWS-S3-Bucket Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-S3-Bucket Tags: - Key: product-type Value: AWS-S3-Bucket Versions: - Name: 16.1.0 Description: AWS-S3-Bucket-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-S3-Bucket BranchName: 16.1.0 - Name: AWS-S3-BucketPolicy Owner: central-it@customer.com Description: AWS-S3-BucketPolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-S3-BucketPolicy Tags: - Key: product-type Value: AWS-S3-BucketPolicy Versions: - Name: 16.1.0 Description: AWS-S3-BucketPolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-S3-BucketPolicy BranchName: 16.1.0 - Name: AWS-SDB-Domain Owner: central-it@customer.com Description: AWS-SDB-Domain Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SDB-Domain Tags: - Key: product-type Value: AWS-SDB-Domain Versions: - Name: 16.1.0 Description: AWS-SDB-Domain-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SDB-Domain BranchName: 16.1.0 - Name: AWS-SES-ConfigurationSet Owner: central-it@customer.com Description: AWS-SES-ConfigurationSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SES-ConfigurationSet Tags: - Key: product-type Value: AWS-SES-ConfigurationSet Versions: - Name: 16.1.0 Description: AWS-SES-ConfigurationSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SES-ConfigurationSet BranchName: 16.1.0 - Name: AWS-SES-ConfigurationSetEventDestination Owner: central-it@customer.com Description: AWS-SES-ConfigurationSetEventDestination Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SES-ConfigurationSetEventDestination Tags: - Key: product-type Value: AWS-SES-ConfigurationSetEventDestination Versions: - Name: 16.1.0 Description: AWS-SES-ConfigurationSetEventDestination-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SES-ConfigurationSetEventDestination BranchName: 16.1.0 - Name: AWS-SES-ReceiptFilter Owner: central-it@customer.com Description: AWS-SES-ReceiptFilter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SES-ReceiptFilter Tags: - Key: product-type Value: AWS-SES-ReceiptFilter Versions: - Name: 16.1.0 Description: AWS-SES-ReceiptFilter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SES-ReceiptFilter BranchName: 16.1.0 - Name: AWS-SES-ReceiptRule Owner: central-it@customer.com Description: AWS-SES-ReceiptRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SES-ReceiptRule Tags: - Key: product-type Value: AWS-SES-ReceiptRule Versions: - Name: 16.1.0 Description: AWS-SES-ReceiptRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SES-ReceiptRule BranchName: 16.1.0 - Name: AWS-SES-ReceiptRuleSet Owner: central-it@customer.com Description: AWS-SES-ReceiptRuleSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SES-ReceiptRuleSet Tags: - Key: product-type Value: AWS-SES-ReceiptRuleSet Versions: - Name: 16.1.0 Description: AWS-SES-ReceiptRuleSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SES-ReceiptRuleSet BranchName: 16.1.0 - Name: AWS-SES-Template Owner: central-it@customer.com Description: AWS-SES-Template Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SES-Template Tags: - Key: product-type Value: AWS-SES-Template Versions: - Name: 16.1.0 Description: AWS-SES-Template-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SES-Template BranchName: 16.1.0 - Name: AWS-SNS-Subscription Owner: central-it@customer.com Description: AWS-SNS-Subscription Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SNS-Subscription Tags: - Key: product-type Value: AWS-SNS-Subscription Versions: - Name: 16.1.0 Description: AWS-SNS-Subscription-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SNS-Subscription BranchName: 16.1.0 - Name: AWS-SNS-Topic Owner: central-it@customer.com Description: AWS-SNS-Topic Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SNS-Topic Tags: - Key: product-type Value: AWS-SNS-Topic Versions: - Name: 16.1.0 Description: AWS-SNS-Topic-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SNS-Topic BranchName: 16.1.0 - Name: AWS-SNS-TopicPolicy Owner: central-it@customer.com Description: AWS-SNS-TopicPolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SNS-TopicPolicy Tags: - Key: product-type Value: AWS-SNS-TopicPolicy Versions: - Name: 16.1.0 Description: AWS-SNS-TopicPolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SNS-TopicPolicy BranchName: 16.1.0 - Name: AWS-SQS-Queue Owner: central-it@customer.com Description: AWS-SQS-Queue Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SQS-Queue Tags: - Key: product-type Value: AWS-SQS-Queue Versions: - Name: 16.1.0 Description: AWS-SQS-Queue-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SQS-Queue BranchName: 16.1.0 - Name: AWS-SQS-QueuePolicy Owner: central-it@customer.com Description: AWS-SQS-QueuePolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SQS-QueuePolicy Tags: - Key: product-type Value: AWS-SQS-QueuePolicy Versions: - Name: 16.1.0 Description: AWS-SQS-QueuePolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SQS-QueuePolicy BranchName: 16.1.0 - Name: AWS-SSM-Association Owner: central-it@customer.com Description: AWS-SSM-Association Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-Association Tags: - Key: product-type Value: AWS-SSM-Association Versions: - Name: 16.1.0 Description: AWS-SSM-Association-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-Association BranchName: 16.1.0 - Name: AWS-SSM-Document Owner: central-it@customer.com Description: AWS-SSM-Document Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-Document Tags: - Key: product-type Value: AWS-SSM-Document Versions: - Name: 16.1.0 Description: AWS-SSM-Document-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-Document BranchName: 16.1.0 - Name: AWS-SSM-MaintenanceWindow Owner: central-it@customer.com Description: AWS-SSM-MaintenanceWindow Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-MaintenanceWindow Tags: - Key: product-type Value: AWS-SSM-MaintenanceWindow Versions: - Name: 16.1.0 Description: AWS-SSM-MaintenanceWindow-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-MaintenanceWindow BranchName: 16.1.0 - Name: AWS-SSM-MaintenanceWindowTarget Owner: central-it@customer.com Description: AWS-SSM-MaintenanceWindowTarget Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-MaintenanceWindowTarget Tags: - Key: product-type Value: AWS-SSM-MaintenanceWindowTarget Versions: - Name: 16.1.0 Description: AWS-SSM-MaintenanceWindowTarget-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-MaintenanceWindowTarget BranchName: 16.1.0 - Name: AWS-SSM-MaintenanceWindowTask Owner: central-it@customer.com Description: AWS-SSM-MaintenanceWindowTask Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-MaintenanceWindowTask Tags: - Key: product-type Value: AWS-SSM-MaintenanceWindowTask Versions: - Name: 16.1.0 Description: AWS-SSM-MaintenanceWindowTask-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-MaintenanceWindowTask BranchName: 16.1.0 - Name: AWS-SSM-Parameter Owner: central-it@customer.com Description: AWS-SSM-Parameter Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-Parameter Tags: - Key: product-type Value: AWS-SSM-Parameter Versions: - Name: 16.1.0 Description: AWS-SSM-Parameter-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-Parameter BranchName: 16.1.0 - Name: AWS-SSM-PatchBaseline Owner: central-it@customer.com Description: AWS-SSM-PatchBaseline Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-PatchBaseline Tags: - Key: product-type Value: AWS-SSM-PatchBaseline Versions: - Name: 16.1.0 Description: AWS-SSM-PatchBaseline-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-PatchBaseline BranchName: 16.1.0 - Name: AWS-SSM-ResourceDataSync Owner: central-it@customer.com Description: AWS-SSM-ResourceDataSync Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SSM-ResourceDataSync Tags: - Key: product-type Value: AWS-SSM-ResourceDataSync Versions: - Name: 16.1.0 Description: AWS-SSM-ResourceDataSync-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SSM-ResourceDataSync BranchName: 16.1.0 - Name: AWS-SageMaker-CodeRepository Owner: central-it@customer.com Description: AWS-SageMaker-CodeRepository Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SageMaker-CodeRepository Tags: - Key: product-type Value: AWS-SageMaker-CodeRepository Versions: - Name: 16.1.0 Description: AWS-SageMaker-CodeRepository-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SageMaker-CodeRepository BranchName: 16.1.0 - Name: AWS-SageMaker-Endpoint Owner: central-it@customer.com Description: AWS-SageMaker-Endpoint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SageMaker-Endpoint Tags: - Key: product-type Value: AWS-SageMaker-Endpoint Versions: - Name: 16.1.0 Description: AWS-SageMaker-Endpoint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SageMaker-Endpoint BranchName: 16.1.0 - Name: AWS-SageMaker-EndpointConfig Owner: central-it@customer.com Description: AWS-SageMaker-EndpointConfig Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SageMaker-EndpointConfig Tags: - Key: product-type Value: AWS-SageMaker-EndpointConfig Versions: - Name: 16.1.0 Description: AWS-SageMaker-EndpointConfig-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SageMaker-EndpointConfig BranchName: 16.1.0 - Name: AWS-SageMaker-Model Owner: central-it@customer.com Description: AWS-SageMaker-Model Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SageMaker-Model Tags: - Key: product-type Value: AWS-SageMaker-Model Versions: - Name: 16.1.0 Description: AWS-SageMaker-Model-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SageMaker-Model BranchName: 16.1.0 - Name: AWS-SageMaker-NotebookInstance Owner: central-it@customer.com Description: AWS-SageMaker-NotebookInstance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SageMaker-NotebookInstance Tags: - Key: product-type Value: AWS-SageMaker-NotebookInstance Versions: - Name: 16.1.0 Description: AWS-SageMaker-NotebookInstance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SageMaker-NotebookInstance BranchName: 16.1.0 - Name: AWS-SageMaker-NotebookInstanceLifecycleConfig Owner: central-it@customer.com Description: AWS-SageMaker-NotebookInstanceLifecycleConfig Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SageMaker-NotebookInstanceLifecycleConfig Tags: - Key: product-type Value: AWS-SageMaker-NotebookInstanceLifecycleConfig Versions: - Name: 16.1.0 Description: AWS-SageMaker-NotebookInstanceLifecycleConfig-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SageMaker-NotebookInstanceLifecycleConfig BranchName: 16.1.0 - Name: AWS-SageMaker-Workteam Owner: central-it@customer.com Description: AWS-SageMaker-Workteam Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SageMaker-Workteam Tags: - Key: product-type Value: AWS-SageMaker-Workteam Versions: - Name: 16.1.0 Description: AWS-SageMaker-Workteam-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SageMaker-Workteam BranchName: 16.1.0 - Name: AWS-SecretsManager-ResourcePolicy Owner: central-it@customer.com Description: AWS-SecretsManager-ResourcePolicy Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SecretsManager-ResourcePolicy Tags: - Key: product-type Value: AWS-SecretsManager-ResourcePolicy Versions: - Name: 16.1.0 Description: AWS-SecretsManager-ResourcePolicy-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SecretsManager-ResourcePolicy BranchName: 16.1.0 - Name: AWS-SecretsManager-RotationSchedule Owner: central-it@customer.com Description: AWS-SecretsManager-RotationSchedule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SecretsManager-RotationSchedule Tags: - Key: product-type Value: AWS-SecretsManager-RotationSchedule Versions: - Name: 16.1.0 Description: AWS-SecretsManager-RotationSchedule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SecretsManager-RotationSchedule BranchName: 16.1.0 - Name: AWS-SecretsManager-Secret Owner: central-it@customer.com Description: AWS-SecretsManager-Secret Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SecretsManager-Secret Tags: - Key: product-type Value: AWS-SecretsManager-Secret Versions: - Name: 16.1.0 Description: AWS-SecretsManager-Secret-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SecretsManager-Secret BranchName: 16.1.0 - Name: AWS-SecretsManager-SecretTargetAttachment Owner: central-it@customer.com Description: AWS-SecretsManager-SecretTargetAttachment Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SecretsManager-SecretTargetAttachment Tags: - Key: product-type Value: AWS-SecretsManager-SecretTargetAttachment Versions: - Name: 16.1.0 Description: AWS-SecretsManager-SecretTargetAttachment-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SecretsManager-SecretTargetAttachment BranchName: 16.1.0 - Name: AWS-SecurityHub-Hub Owner: central-it@customer.com Description: AWS-SecurityHub-Hub Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-SecurityHub-Hub Tags: - Key: product-type Value: AWS-SecurityHub-Hub Versions: - Name: 16.1.0 Description: AWS-SecurityHub-Hub-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-SecurityHub-Hub BranchName: 16.1.0 - Name: AWS-ServiceCatalog-AcceptedPortfolioShare Owner: central-it@customer.com Description: AWS-ServiceCatalog-AcceptedPortfolioShare Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-AcceptedPortfolioShare Tags: - Key: product-type Value: AWS-ServiceCatalog-AcceptedPortfolioShare Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-AcceptedPortfolioShare-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-AcceptedPortfolioShare BranchName: 16.1.0 - Name: AWS-ServiceCatalog-CloudFormationProduct Owner: central-it@customer.com Description: AWS-ServiceCatalog-CloudFormationProduct Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-CloudFormationProduct Tags: - Key: product-type Value: AWS-ServiceCatalog-CloudFormationProduct Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-CloudFormationProduct-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-CloudFormationProduct BranchName: 16.1.0 - Name: AWS-ServiceCatalog-CloudFormationProvisionedProduct Owner: central-it@customer.com Description: AWS-ServiceCatalog-CloudFormationProvisionedProduct Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-CloudFormationProvisionedProduct Tags: - Key: product-type Value: AWS-ServiceCatalog-CloudFormationProvisionedProduct Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-CloudFormationProvisionedProduct-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-CloudFormationProvisionedProduct BranchName: 16.1.0 - Name: AWS-ServiceCatalog-LaunchNotificationConstraint Owner: central-it@customer.com Description: AWS-ServiceCatalog-LaunchNotificationConstraint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-LaunchNotificationConstraint Tags: - Key: product-type Value: AWS-ServiceCatalog-LaunchNotificationConstraint Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-LaunchNotificationConstraint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-LaunchNotificationConstraint BranchName: 16.1.0 - Name: AWS-ServiceCatalog-LaunchRoleConstraint Owner: central-it@customer.com Description: AWS-ServiceCatalog-LaunchRoleConstraint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-LaunchRoleConstraint Tags: - Key: product-type Value: AWS-ServiceCatalog-LaunchRoleConstraint Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-LaunchRoleConstraint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-LaunchRoleConstraint BranchName: 16.1.0 - Name: AWS-ServiceCatalog-LaunchTemplateConstraint Owner: central-it@customer.com Description: AWS-ServiceCatalog-LaunchTemplateConstraint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-LaunchTemplateConstraint Tags: - Key: product-type Value: AWS-ServiceCatalog-LaunchTemplateConstraint Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-LaunchTemplateConstraint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-LaunchTemplateConstraint BranchName: 16.1.0 - Name: AWS-ServiceCatalog-Portfolio Owner: central-it@customer.com Description: AWS-ServiceCatalog-Portfolio Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-Portfolio Tags: - Key: product-type Value: AWS-ServiceCatalog-Portfolio Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-Portfolio-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-Portfolio BranchName: 16.1.0 - Name: AWS-ServiceCatalog-PortfolioPrincipalAssociation Owner: central-it@customer.com Description: AWS-ServiceCatalog-PortfolioPrincipalAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-PortfolioPrincipalAssociation Tags: - Key: product-type Value: AWS-ServiceCatalog-PortfolioPrincipalAssociation Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-PortfolioPrincipalAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-PortfolioPrincipalAssociation BranchName: 16.1.0 - Name: AWS-ServiceCatalog-PortfolioProductAssociation Owner: central-it@customer.com Description: AWS-ServiceCatalog-PortfolioProductAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-PortfolioProductAssociation Tags: - Key: product-type Value: AWS-ServiceCatalog-PortfolioProductAssociation Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-PortfolioProductAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-PortfolioProductAssociation BranchName: 16.1.0 - Name: AWS-ServiceCatalog-PortfolioShare Owner: central-it@customer.com Description: AWS-ServiceCatalog-PortfolioShare Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-PortfolioShare Tags: - Key: product-type Value: AWS-ServiceCatalog-PortfolioShare Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-PortfolioShare-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-PortfolioShare BranchName: 16.1.0 - Name: AWS-ServiceCatalog-ResourceUpdateConstraint Owner: central-it@customer.com Description: AWS-ServiceCatalog-ResourceUpdateConstraint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-ResourceUpdateConstraint Tags: - Key: product-type Value: AWS-ServiceCatalog-ResourceUpdateConstraint Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-ResourceUpdateConstraint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-ResourceUpdateConstraint BranchName: 16.1.0 - Name: AWS-ServiceCatalog-StackSetConstraint Owner: central-it@customer.com Description: AWS-ServiceCatalog-StackSetConstraint Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-StackSetConstraint Tags: - Key: product-type Value: AWS-ServiceCatalog-StackSetConstraint Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-StackSetConstraint-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-StackSetConstraint BranchName: 16.1.0 - Name: AWS-ServiceCatalog-TagOption Owner: central-it@customer.com Description: AWS-ServiceCatalog-TagOption Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-TagOption Tags: - Key: product-type Value: AWS-ServiceCatalog-TagOption Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-TagOption-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-TagOption BranchName: 16.1.0 - Name: AWS-ServiceCatalog-TagOptionAssociation Owner: central-it@customer.com Description: AWS-ServiceCatalog-TagOptionAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceCatalog-TagOptionAssociation Tags: - Key: product-type Value: AWS-ServiceCatalog-TagOptionAssociation Versions: - Name: 16.1.0 Description: AWS-ServiceCatalog-TagOptionAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceCatalog-TagOptionAssociation BranchName: 16.1.0 - Name: AWS-ServiceDiscovery-HttpNamespace Owner: central-it@customer.com Description: AWS-ServiceDiscovery-HttpNamespace Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceDiscovery-HttpNamespace Tags: - Key: product-type Value: AWS-ServiceDiscovery-HttpNamespace Versions: - Name: 16.1.0 Description: AWS-ServiceDiscovery-HttpNamespace-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceDiscovery-HttpNamespace BranchName: 16.1.0 - Name: AWS-ServiceDiscovery-Instance Owner: central-it@customer.com Description: AWS-ServiceDiscovery-Instance Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceDiscovery-Instance Tags: - Key: product-type Value: AWS-ServiceDiscovery-Instance Versions: - Name: 16.1.0 Description: AWS-ServiceDiscovery-Instance-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceDiscovery-Instance BranchName: 16.1.0 - Name: AWS-ServiceDiscovery-PrivateDnsNamespace Owner: central-it@customer.com Description: AWS-ServiceDiscovery-PrivateDnsNamespace Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceDiscovery-PrivateDnsNamespace Tags: - Key: product-type Value: AWS-ServiceDiscovery-PrivateDnsNamespace Versions: - Name: 16.1.0 Description: AWS-ServiceDiscovery-PrivateDnsNamespace-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceDiscovery-PrivateDnsNamespace BranchName: 16.1.0 - Name: AWS-ServiceDiscovery-PublicDnsNamespace Owner: central-it@customer.com Description: AWS-ServiceDiscovery-PublicDnsNamespace Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceDiscovery-PublicDnsNamespace Tags: - Key: product-type Value: AWS-ServiceDiscovery-PublicDnsNamespace Versions: - Name: 16.1.0 Description: AWS-ServiceDiscovery-PublicDnsNamespace-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceDiscovery-PublicDnsNamespace BranchName: 16.1.0 - Name: AWS-ServiceDiscovery-Service Owner: central-it@customer.com Description: AWS-ServiceDiscovery-Service Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-ServiceDiscovery-Service Tags: - Key: product-type Value: AWS-ServiceDiscovery-Service Versions: - Name: 16.1.0 Description: AWS-ServiceDiscovery-Service-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-ServiceDiscovery-Service BranchName: 16.1.0 - Name: AWS-StepFunctions-Activity Owner: central-it@customer.com Description: AWS-StepFunctions-Activity Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-StepFunctions-Activity Tags: - Key: product-type Value: AWS-StepFunctions-Activity Versions: - Name: 16.1.0 Description: AWS-StepFunctions-Activity-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-StepFunctions-Activity BranchName: 16.1.0 - Name: AWS-StepFunctions-StateMachine Owner: central-it@customer.com Description: AWS-StepFunctions-StateMachine Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-StepFunctions-StateMachine Tags: - Key: product-type Value: AWS-StepFunctions-StateMachine Versions: - Name: 16.1.0 Description: AWS-StepFunctions-StateMachine-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-StepFunctions-StateMachine BranchName: 16.1.0 - Name: AWS-Synthetics-Canary Owner: central-it@customer.com Description: AWS-Synthetics-Canary Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Synthetics-Canary Tags: - Key: product-type Value: AWS-Synthetics-Canary Versions: - Name: 16.1.0 Description: AWS-Synthetics-Canary-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Synthetics-Canary BranchName: 16.1.0 - Name: AWS-Transfer-Server Owner: central-it@customer.com Description: AWS-Transfer-Server Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Transfer-Server Tags: - Key: product-type Value: AWS-Transfer-Server Versions: - Name: 16.1.0 Description: AWS-Transfer-Server-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Transfer-Server BranchName: 16.1.0 - Name: AWS-Transfer-User Owner: central-it@customer.com Description: AWS-Transfer-User Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-Transfer-User Tags: - Key: product-type Value: AWS-Transfer-User Versions: - Name: 16.1.0 Description: AWS-Transfer-User-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-Transfer-User BranchName: 16.1.0 - Name: AWS-WAF-ByteMatchSet Owner: central-it@customer.com Description: AWS-WAF-ByteMatchSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAF-ByteMatchSet Tags: - Key: product-type Value: AWS-WAF-ByteMatchSet Versions: - Name: 16.1.0 Description: AWS-WAF-ByteMatchSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAF-ByteMatchSet BranchName: 16.1.0 - Name: AWS-WAF-IPSet Owner: central-it@customer.com Description: AWS-WAF-IPSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAF-IPSet Tags: - Key: product-type Value: AWS-WAF-IPSet Versions: - Name: 16.1.0 Description: AWS-WAF-IPSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAF-IPSet BranchName: 16.1.0 - Name: AWS-WAF-Rule Owner: central-it@customer.com Description: AWS-WAF-Rule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAF-Rule Tags: - Key: product-type Value: AWS-WAF-Rule Versions: - Name: 16.1.0 Description: AWS-WAF-Rule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAF-Rule BranchName: 16.1.0 - Name: AWS-WAF-SizeConstraintSet Owner: central-it@customer.com Description: AWS-WAF-SizeConstraintSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAF-SizeConstraintSet Tags: - Key: product-type Value: AWS-WAF-SizeConstraintSet Versions: - Name: 16.1.0 Description: AWS-WAF-SizeConstraintSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAF-SizeConstraintSet BranchName: 16.1.0 - Name: AWS-WAF-SqlInjectionMatchSet Owner: central-it@customer.com Description: AWS-WAF-SqlInjectionMatchSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAF-SqlInjectionMatchSet Tags: - Key: product-type Value: AWS-WAF-SqlInjectionMatchSet Versions: - Name: 16.1.0 Description: AWS-WAF-SqlInjectionMatchSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAF-SqlInjectionMatchSet BranchName: 16.1.0 - Name: AWS-WAF-WebACL Owner: central-it@customer.com Description: AWS-WAF-WebACL Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAF-WebACL Tags: - Key: product-type Value: AWS-WAF-WebACL Versions: - Name: 16.1.0 Description: AWS-WAF-WebACL-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAF-WebACL BranchName: 16.1.0 - Name: AWS-WAF-XssMatchSet Owner: central-it@customer.com Description: AWS-WAF-XssMatchSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAF-XssMatchSet Tags: - Key: product-type Value: AWS-WAF-XssMatchSet Versions: - Name: 16.1.0 Description: AWS-WAF-XssMatchSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAF-XssMatchSet BranchName: 16.1.0 - Name: AWS-WAFRegional-ByteMatchSet Owner: central-it@customer.com Description: AWS-WAFRegional-ByteMatchSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-ByteMatchSet Tags: - Key: product-type Value: AWS-WAFRegional-ByteMatchSet Versions: - Name: 16.1.0 Description: AWS-WAFRegional-ByteMatchSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-ByteMatchSet BranchName: 16.1.0 - Name: AWS-WAFRegional-GeoMatchSet Owner: central-it@customer.com Description: AWS-WAFRegional-GeoMatchSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-GeoMatchSet Tags: - Key: product-type Value: AWS-WAFRegional-GeoMatchSet Versions: - Name: 16.1.0 Description: AWS-WAFRegional-GeoMatchSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-GeoMatchSet BranchName: 16.1.0 - Name: AWS-WAFRegional-IPSet Owner: central-it@customer.com Description: AWS-WAFRegional-IPSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-IPSet Tags: - Key: product-type Value: AWS-WAFRegional-IPSet Versions: - Name: 16.1.0 Description: AWS-WAFRegional-IPSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-IPSet BranchName: 16.1.0 - Name: AWS-WAFRegional-RateBasedRule Owner: central-it@customer.com Description: AWS-WAFRegional-RateBasedRule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-RateBasedRule Tags: - Key: product-type Value: AWS-WAFRegional-RateBasedRule Versions: - Name: 16.1.0 Description: AWS-WAFRegional-RateBasedRule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-RateBasedRule BranchName: 16.1.0 - Name: AWS-WAFRegional-RegexPatternSet Owner: central-it@customer.com Description: AWS-WAFRegional-RegexPatternSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-RegexPatternSet Tags: - Key: product-type Value: AWS-WAFRegional-RegexPatternSet Versions: - Name: 16.1.0 Description: AWS-WAFRegional-RegexPatternSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-RegexPatternSet BranchName: 16.1.0 - Name: AWS-WAFRegional-Rule Owner: central-it@customer.com Description: AWS-WAFRegional-Rule Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-Rule Tags: - Key: product-type Value: AWS-WAFRegional-Rule Versions: - Name: 16.1.0 Description: AWS-WAFRegional-Rule-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-Rule BranchName: 16.1.0 - Name: AWS-WAFRegional-SizeConstraintSet Owner: central-it@customer.com Description: AWS-WAFRegional-SizeConstraintSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-SizeConstraintSet Tags: - Key: product-type Value: AWS-WAFRegional-SizeConstraintSet Versions: - Name: 16.1.0 Description: AWS-WAFRegional-SizeConstraintSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-SizeConstraintSet BranchName: 16.1.0 - Name: AWS-WAFRegional-SqlInjectionMatchSet Owner: central-it@customer.com Description: AWS-WAFRegional-SqlInjectionMatchSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-SqlInjectionMatchSet Tags: - Key: product-type Value: AWS-WAFRegional-SqlInjectionMatchSet Versions: - Name: 16.1.0 Description: AWS-WAFRegional-SqlInjectionMatchSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-SqlInjectionMatchSet BranchName: 16.1.0 - Name: AWS-WAFRegional-WebACL Owner: central-it@customer.com Description: AWS-WAFRegional-WebACL Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-WebACL Tags: - Key: product-type Value: AWS-WAFRegional-WebACL Versions: - Name: 16.1.0 Description: AWS-WAFRegional-WebACL-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-WebACL BranchName: 16.1.0 - Name: AWS-WAFRegional-WebACLAssociation Owner: central-it@customer.com Description: AWS-WAFRegional-WebACLAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-WebACLAssociation Tags: - Key: product-type Value: AWS-WAFRegional-WebACLAssociation Versions: - Name: 16.1.0 Description: AWS-WAFRegional-WebACLAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-WebACLAssociation BranchName: 16.1.0 - Name: AWS-WAFRegional-XssMatchSet Owner: central-it@customer.com Description: AWS-WAFRegional-XssMatchSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFRegional-XssMatchSet Tags: - Key: product-type Value: AWS-WAFRegional-XssMatchSet Versions: - Name: 16.1.0 Description: AWS-WAFRegional-XssMatchSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFRegional-XssMatchSet BranchName: 16.1.0 - Name: AWS-WAFv2-IPSet Owner: central-it@customer.com Description: AWS-WAFv2-IPSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFv2-IPSet Tags: - Key: product-type Value: AWS-WAFv2-IPSet Versions: - Name: 16.1.0 Description: AWS-WAFv2-IPSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFv2-IPSet BranchName: 16.1.0 - Name: AWS-WAFv2-RegexPatternSet Owner: central-it@customer.com Description: AWS-WAFv2-RegexPatternSet Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFv2-RegexPatternSet Tags: - Key: product-type Value: AWS-WAFv2-RegexPatternSet Versions: - Name: 16.1.0 Description: AWS-WAFv2-RegexPatternSet-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFv2-RegexPatternSet BranchName: 16.1.0 - Name: AWS-WAFv2-RuleGroup Owner: central-it@customer.com Description: AWS-WAFv2-RuleGroup Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFv2-RuleGroup Tags: - Key: product-type Value: AWS-WAFv2-RuleGroup Versions: - Name: 16.1.0 Description: AWS-WAFv2-RuleGroup-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFv2-RuleGroup BranchName: 16.1.0 - Name: AWS-WAFv2-WebACL Owner: central-it@customer.com Description: AWS-WAFv2-WebACL Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFv2-WebACL Tags: - Key: product-type Value: AWS-WAFv2-WebACL Versions: - Name: 16.1.0 Description: AWS-WAFv2-WebACL-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFv2-WebACL BranchName: 16.1.0 - Name: AWS-WAFv2-WebACLAssociation Owner: central-it@customer.com Description: AWS-WAFv2-WebACLAssociation Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WAFv2-WebACLAssociation Tags: - Key: product-type Value: AWS-WAFv2-WebACLAssociation Versions: - Name: 16.1.0 Description: AWS-WAFv2-WebACLAssociation-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WAFv2-WebACLAssociation BranchName: 16.1.0 - Name: AWS-WorkSpaces-Workspace Owner: central-it@customer.com Description: AWS-WorkSpaces-Workspace Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/AWS-WorkSpaces-Workspace Tags: - Key: product-type Value: AWS-WorkSpaces-Workspace Versions: - Name: 16.1.0 Description: AWS-WorkSpaces-Workspace-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: AWS-WorkSpaces-Workspace BranchName: 16.1.0 - Name: Alexa-ASK-Skill Owner: central-it@customer.com Description: Alexa-ASK-Skill Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/Alexa-ASK-Skill Tags: - Key: product-type Value: Alexa-ASK-Skill Versions: - Name: 16.1.0 Description: Alexa-ASK-Skill-16.1.0 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: Alexa-ASK-Skill BranchName: 16.1.0 - Name: portfolio.yaml Owner: central-it@customer.com Description: portfolio.yaml Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/portfolio.yaml Tags: - Key: product-type Value: portfolio.yaml Versions: - Name: output/no-include-optional/portfolio.yaml Description: portfolio.yaml-output/no-include-optional/portfolio.yaml Active: True Source: Provider: CodeCommit Configuration: RepositoryName: portfolio.yaml BranchName: output/no-include-optional/portfolio.yaml ================================================ FILE: unsorted/account-vending/README.md ================================================ # account-vending This is a solution to help deliver an account vending machine. ## Description This creates an AWS Account vending machine so your customers can create their own AWS Accounts using AWS Service Catalog. There are three AWS Service Catalog Products in this solution. ```account-bootstrap-shared``` and ```account-creation-shared``` will provision lambdas into an account that can assume an IAM Role that has AWS Organizations access to create accounts. These products export AWS Lambda function ARNs that can be used with the account-creation product to create accounts. ```account-creation``` will use the exported ARNs from ```account-bootstrap-shared``` and ```account-creation-shared``` to create an AWS account. ## Install instructions 1. ```org-bootstrap.template.yaml``` should be provisioned into your AWS Organizations root account. This will create an IAM role. This template has a parameter named ```ServiceCatalogFactoryAccountId``` which is the account id of your aws-service-catalog-factory account. The template exports the ARN for the role so you can use it later. 1. Copy the configuration from portfolio.yaml into your portfolio. 1. Create the AWS Code Commit repos, clone them and then add the code: ```bash aws codecommit create-repository --repository-name account-vending-account-creation-shared git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/account-vending-account-creation-shared svn export https://github.com/awslabs/aws-service-catalog-products/trunk/account-vending/account-creation-shared/v1 account-vending-account-creation-shared --force aws codecommit create-repository --repository-name account-vending-account-bootstrap-shared git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/account-vending-account-bootstrap-shared svn export https://github.com/awslabs/aws-service-catalog-products/trunk/account-vending/account-bootstrap-shared/v1 account-vending-account-bootstrap-shared --force aws codecommit create-repository --repository-name account-vending-account-creation git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/account-vending-account-creation svn export https://github.com/awslabs/aws-service-catalog-products/trunk/account-vending/account-creation/v1 account-vending-account-creation --force ``` ## Usage instructions Copy the config from ```manifest.yaml```. ```account-vending-account-creation-shared``` and ```account-vending-account-bootstrap-shared``` should appear in your manifest only once. You should add a modified version of ```account-vending-account-001``` for every account you want to create using aws-service-catalog-puppet. ## Notes Once the Account-Creation Product has completed it will provide the Status of 'Succeeded' and the AccountId of the newly vended Account. However, please note that Puppet is now running against the new Account using the latest commit of the Puppet Manifest. Depending on how many Products Puppet needs to deploy, the time taken to complete will vary. If you are using Customised IAM Roles to assume into the new Account, these must be created before you are able to do so. ================================================ FILE: unsorted/account-vending/account-bootstrap-shared/v1/README.md ================================================ # product.template # Description Creates: - codebuild project that can be run to bootstrap an account - lambda function that can be used to back a custom resource so the codebuild project can be started from CloudFormation ## Parameters The list of parameters for this template: ## Resources The list of resources this template creates: ### BootstrapperRole Type: AWS::IAM::Role ### BootstrapperProject Type: AWS::CodeBuild::Project Description: Wrapper project that: - installs aws-service-catalog-puppet - runs bootstrap-spoke-as ### BootstrapperProjectCustomResourceRole Type: AWS::IAM::Role ### BootstrapperProjectCustomResource Type: AWS::Serverless::Function Description: Lambda function that can be used to back a custom resource. You can get the ARN by checking the SSM Parameter ```account-vending-bootstrapper-lambda```: ```yaml Account: Type: Custom::CustomResource Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### BootstrapperProjectCustomResourceArn Description: Outputs the BootstrapperProjectCustomResource Arn so others can use it ================================================ FILE: unsorted/account-vending/account-bootstrap-shared/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Creates: - codebuild project that can be run to bootstrap an account - lambda function that can be used to back a custom resource so the codebuild project can be started from CloudFormation Parameters: AssumableRoleInRootAccountArn: Description: The Arn of the assumable role from the root account Type: String Resources: BootstrapperRole: Type: AWS::IAM::Role Properties: Path: /account-vending/ ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "codebuild.amazonaws.com" Action: - "sts:AssumeRole" BootstrapperProject: Type: AWS::CodeBuild::Project Description: | Wrapper project that: - installs aws-service-catalog-puppet - runs bootstrap-spoke-as Properties: Name: servicecatalog-puppet-single-account-bootstrapper Description: "Bootstraps an account for use with ServiceCatalog-Puppet" ServiceRole: !GetAtt BootstrapperRole.Arn Artifacts: Type: NO_ARTIFACTS Environment: Type: linuxContainer ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/python:3.7.1 EnvironmentVariables: - Name: PUPPET_ACCOUNT_ID Type: PLAINTEXT Value: CHANGE_ME - Name: ORGANIZATION_ACCOUNT_ACCESS_ROLE_ARN Type: PLAINTEXT Value: CHANGE_ME - Name: VERSION Type: PLAINTEXT Value: CHANGE_ME - Name: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT Type: PLAINTEXT Value: CHANGE_ME Source: Type: NO_SOURCE BuildSpec: | version: 0.2 phases: install: commands: - pip install aws-service-catalog-puppet==${VERSION} build: commands: - servicecatalog-puppet bootstrap-spoke-as ${PUPPET_ACCOUNT_ID} ${ASSUMABLE_ROLE_IN_ROOT_ACCOUNT} ${ORGANIZATION_ACCOUNT_ACCESS_ROLE_ARN} TimeoutInMinutes: 30 BootstrapperProjectCustomResourceRole: Type: AWS::IAM::Role Properties: Path: /account-vending/ ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" BootstrapperProjectCustomResource: Type: AWS::Serverless::Function Description: | Lambda function that can be used to back a custom resource. You can get the ARN by checking the SSM Parameter ```account-vending-bootstrapper-lambda```: ```yaml Account: Type: Custom::CustomResource Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for accepting shares Role: !GetAtt BootstrapperProjectCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: BOOTSTRAPPER_PROJECT_NAME: !Ref BootstrapperProject ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref AssumableRoleInRootAccountArn Outputs: BootstrapperProjectCustomResourceArn: Description: | Outputs the BootstrapperProjectCustomResource Arn so others can use it Value: !GetAtt BootstrapperProjectCustomResource.Arn ================================================ FILE: unsorted/account-vending/account-bootstrap-shared/v1/requirements.txt ================================================ better-boto==0.6.19 ================================================ FILE: unsorted/account-vending/account-bootstrap-shared/v1/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os import traceback logger = logging.getLogger() logger.setLevel(logging.INFO) logging.basicConfig( format='%(levelname)s %(threadName)s [%(filename)s:%(lineno)d] %(message)s', datefmt='%Y-%m-%d:%H:%M:%S', level=logging.INFO ) def handler(event, context): request_type = event['RequestType'] try: logger.info(request_type) if request_type == 'Create': target_account_id = event.get('ResourceProperties').get('TargetAccountId') puppet_account_id = event.get('ResourceProperties').get('PuppetAccountId') organization_account_access_role_name = event.get('ResourceProperties').get( 'OrganizationAccountAccessRoleName') organization_account_access_role_arn = 'arn:aws:iam::{}:role/{}'.format( target_account_id, organization_account_access_role_name ) with betterboto_client.ClientContextManager('ssm') as ssm: puppet_version = ssm.get_parameter( Name='service-catalog-puppet-version' ).get('Parameter').get('Value') assumable_role_in_root_account = os.environ.get('ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN') bootstrapper_project_name = os.environ.get('BOOTSTRAPPER_PROJECT_NAME') with betterboto_client.ClientContextManager( 'codebuild', ) as codebuild: bootstrapper_build = codebuild.start_build_and_wait_for_completion( projectName=bootstrapper_project_name, environmentVariablesOverride=[ { 'name': 'ASSUMABLE_ROLE_IN_ROOT_ACCOUNT', 'value': assumable_role_in_root_account, 'type': 'PLAINTEXT' }, { 'name': 'VERSION', 'value': puppet_version, 'type': 'PLAINTEXT' }, { 'name': 'PUPPET_ACCOUNT_ID', 'value': puppet_account_id, 'type': 'PLAINTEXT' }, { 'name': 'ORGANIZATION_ACCOUNT_ACCESS_ROLE_ARN', 'value': organization_account_access_role_arn, 'type': 'PLAINTEXT' }, ], ) final_status = bootstrapper_build.get('buildStatus') if final_status == 'SUCCEEDED': puppet_run_build = codebuild.start_build_and_wait_for_completion( projectName='servicecatalog-puppet-single-account-run', environmentVariablesOverride=[ { 'name': 'SINGLE_ACCOUNT_ID', 'value': target_account_id, 'type': 'PLAINTEXT' } ], ) final_status = puppet_run_build.get('buildStatus') if final_status == 'SUCCEEDED': send_response( event, context, "SUCCESS", { "Message": "Resource creation successful!", "puppet_run_build_id": puppet_run_build.get('id'), "bootstrapper_build_id": bootstrapper_build.get('id'), } ) else: logger.error('Errored check the logs: {}'.format(puppet_run_build.get('logs').get('deepLink'))) send_response( event, context, "FAILED", { "Message": 'Pipeline errored, check the logs: {}'.format( puppet_run_build.get('logs').get('deepLink') ), } ) else: logger.error('Errored check the logs: {}'.format(bootstrapper_build.get('logs').get('deepLink'))) send_response( event, context, "FAILED", { "Message": 'Bootstrap errored, check the logs: {}'.format( bootstrapper_build.get('logs').get('deepLink') ), } ) elif request_type == 'Update': send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == 'Delete': send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) send_response( event, context, "FAILED", { "Message": "Exception" } ) def send_response(e, c, rs, rd): r = json.dumps({ "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e['StackId'], "RequestId": e['RequestId'], "LogicalResourceId": e['LogicalResourceId'], "Data": rd }) d = str.encode(r) h = { 'content-type': '', 'content-length': str(len(d)) } req = Request(e['ResponseURL'], data=d, method='PUT', headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/account-vending/account-bootstrap-shared/v2/README.md ================================================ # product.template # Description Creates: - codebuild project that can be run to bootstrap an account - lambda function that can be used to back a custom resource so the codebuild project can be started from CloudFormation ## Parameters The list of parameters for this template: ## Resources The list of resources this template creates: ### BootstrapperRole Type: AWS::IAM::Role ### BootstrapperProject Type: AWS::CodeBuild::Project Description: Wrapper project that: - installs aws-service-catalog-puppet - runs bootstrap-spoke-as ### BootstrapperProjectCustomResourceRole Type: AWS::IAM::Role ### BootstrapperProjectCustomResource Type: AWS::Serverless::Function Description: Lambda function that can be used to back a custom resource. You can get the ARN by checking the SSM Parameter ```account-vending-bootstrapper-lambda```: ```yaml Account: Type: Custom::CustomResource Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### BootstrapperProjectCustomResourceArn Description: Outputs the BootstrapperProjectCustomResource Arn so others can use it ================================================ FILE: unsorted/account-vending/account-bootstrap-shared/v2/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Creates: - codebuild project that can be run to bootstrap an account - lambda function that can be used to back a custom resource so the codebuild project can be started from CloudFormation Parameters: AssumableRoleInRootAccountArn: Description: The Arn of the assumable role from the root account Type: String Resources: BootstrapperRole: Type: AWS::IAM::Role Properties: Path: /account-vending/ ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "codebuild.amazonaws.com" Action: - "sts:AssumeRole" BootstrapperProject: Type: AWS::CodeBuild::Project Description: | Wrapper project that: - installs aws-service-catalog-puppet - runs bootstrap-spoke-as Properties: Name: servicecatalog-puppet-single-account-bootstrapper Description: "Bootstraps an account for use with ServiceCatalog-Puppet" ServiceRole: !GetAtt BootstrapperRole.Arn Artifacts: Type: NO_ARTIFACTS Environment: Type: linuxContainer ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 EnvironmentVariables: - Name: PUPPET_ACCOUNT_ID Type: PLAINTEXT Value: CHANGE_ME - Name: ORGANIZATION_ACCOUNT_ACCESS_ROLE_ARN Type: PLAINTEXT Value: CHANGE_ME - Name: VERSION Type: PLAINTEXT Value: CHANGE_ME - Name: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT Type: PLAINTEXT Value: CHANGE_ME Source: Type: NO_SOURCE BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.x commands: - pip install aws-service-catalog-puppet==${VERSION} build: commands: - servicecatalog-puppet bootstrap-spoke-as ${PUPPET_ACCOUNT_ID} ${ASSUMABLE_ROLE_IN_ROOT_ACCOUNT} ${ORGANIZATION_ACCOUNT_ACCESS_ROLE_ARN} TimeoutInMinutes: 30 BootstrapperProjectCustomResourceRole: Type: AWS::IAM::Role Properties: Path: /account-vending/ ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" BootstrapperProjectCustomResource: Type: AWS::Serverless::Function Description: | Lambda function that can be used to back a custom resource. You can get the ARN by checking the SSM Parameter ```account-vending-bootstrapper-lambda```: ```yaml Account: Type: Custom::CustomResource Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for accepting shares Role: !GetAtt BootstrapperProjectCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: BOOTSTRAPPER_PROJECT_NAME: !Ref BootstrapperProject ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref AssumableRoleInRootAccountArn Outputs: BootstrapperProjectCustomResourceArn: Description: | Outputs the BootstrapperProjectCustomResource Arn so others can use it Value: !GetAtt BootstrapperProjectCustomResource.Arn ================================================ FILE: unsorted/account-vending/account-bootstrap-shared/v2/requirements.txt ================================================ better-boto==0.6.19 ================================================ FILE: unsorted/account-vending/account-bootstrap-shared/v2/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os import traceback logger = logging.getLogger() logger.setLevel(logging.INFO) logging.basicConfig( format='%(levelname)s %(threadName)s [%(filename)s:%(lineno)d] %(message)s', datefmt='%Y-%m-%d:%H:%M:%S', level=logging.INFO ) def handler(event, context): request_type = event['RequestType'] try: logger.info(request_type) if request_type == 'Create': target_account_id = event.get('ResourceProperties').get('TargetAccountId') puppet_account_id = event.get('ResourceProperties').get('PuppetAccountId') organization_account_access_role_name = event.get('ResourceProperties').get( 'OrganizationAccountAccessRoleName') organization_account_access_role_arn = 'arn:aws:iam::{}:role/{}'.format( target_account_id, organization_account_access_role_name ) with betterboto_client.ClientContextManager('ssm') as ssm: puppet_version = ssm.get_parameter( Name='service-catalog-puppet-version' ).get('Parameter').get('Value') assumable_role_in_root_account = os.environ.get('ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN') bootstrapper_project_name = os.environ.get('BOOTSTRAPPER_PROJECT_NAME') with betterboto_client.ClientContextManager( 'codebuild', ) as codebuild: bootstrapper_build = codebuild.start_build_and_wait_for_completion( projectName=bootstrapper_project_name, environmentVariablesOverride=[ { 'name': 'ASSUMABLE_ROLE_IN_ROOT_ACCOUNT', 'value': assumable_role_in_root_account, 'type': 'PLAINTEXT' }, { 'name': 'VERSION', 'value': puppet_version, 'type': 'PLAINTEXT' }, { 'name': 'PUPPET_ACCOUNT_ID', 'value': puppet_account_id, 'type': 'PLAINTEXT' }, { 'name': 'ORGANIZATION_ACCOUNT_ACCESS_ROLE_ARN', 'value': organization_account_access_role_arn, 'type': 'PLAINTEXT' }, ], ) final_status = bootstrapper_build.get('buildStatus') if final_status == 'SUCCEEDED': puppet_run_build = codebuild.start_build_and_wait_for_completion( projectName='servicecatalog-puppet-single-account-run', environmentVariablesOverride=[ { 'name': 'SINGLE_ACCOUNT_ID', 'value': target_account_id, 'type': 'PLAINTEXT' } ], ) final_status = puppet_run_build.get('buildStatus') if final_status == 'SUCCEEDED': send_response( event, context, "SUCCESS", { "Message": "Resource creation successful!", "puppet_run_build_id": puppet_run_build.get('id'), "bootstrapper_build_id": bootstrapper_build.get('id'), } ) else: logger.error('Errored check the logs: {}'.format(puppet_run_build.get('logs').get('deepLink'))) send_response( event, context, "FAILED", { "Message": 'Pipeline errored, check the logs: {}'.format( puppet_run_build.get('logs').get('deepLink') ), } ) else: logger.error('Errored check the logs: {}'.format(bootstrapper_build.get('logs').get('deepLink'))) send_response( event, context, "FAILED", { "Message": 'Bootstrap errored, check the logs: {}'.format( bootstrapper_build.get('logs').get('deepLink') ), } ) elif request_type == 'Update': send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == 'Delete': send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) send_response( event, context, "FAILED", { "Message": "Exception" } ) def send_response(e, c, rs, rd): r = json.dumps({ "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e['StackId'], "RequestId": e['RequestId'], "LogicalResourceId": e['LogicalResourceId'], "Data": rd }) d = str.encode(r) h = { 'content-type': '', 'content-length': str(len(d)) } req = Request(e['ResponseURL'], data=d, method='PUT', headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/account-vending/account-creation/v1/README.md ================================================ # product.template # Description account-bootstrap-shared-product and account-creation-shared-product must both be provisioned into the same account before this will work - they build some resources needed for this to work and they provision the SSM params with the correct ARNs so this works with no copy and pasting. Provisioning this template will create an AWS Account and bootstrap it using aws-service-catalog-puppet so you can provision products into the account. ## Parameters The list of parameters for this template: ### Email Type: String Description: The email address to use for the account that is to be created ### AccountName Type: String Description: The name to use for the account that is to be created ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: The name of the role to be created in the account that allows Organizations access ### IamUserAccessToBilling Type: String Default: ALLOW ### TargetOU Type: String Default: None Description: OU/path where the created account should be moved to once creation is completed - None means no move ### AccountVendingCreationLambdaArn Type: String Default: account-vending-creation-lambda Description: The ARN of the account creation lambda ### AccountVendingBootstrapperLambdaArn Type: String Default: account-vending-bootstrapper-lambda Description: The ARN of the account bootstrapping lambda ## Resources The list of resources this template creates: ### Account Type: Custom::CustomResource Description: A custom resource representing an AWS Account ### Bootstrap Type: Custom::CustomResource ## Outputs The list of outputs this template exposes: ### AccountId ================================================ FILE: unsorted/account-vending/account-creation/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Description: | account-bootstrap-shared-product and account-creation-shared-product must both be provisioned into the same account before this will work - they build some resources needed for this to work and they provision the SSM params with the correct ARNs so this works with no copy and pasting. Provisioning this template will create an AWS Account and bootstrap it using aws-service-catalog-puppet so you can provision products into the account. Parameters: Email: Type: String Description: The email address to use for the account that is to be created AccountName: Type: String Description: The name to use for the account that is to be created OrganizationAccountAccessRole: Type: String Default: OrganizationAccountAccessRole Description: The name of the role to be created in the account that allows Organizations access IamUserAccessToBilling: Type: String Default: "ALLOW" AllowedValues: ['ALLOW', 'DENY'] TargetOU: Type: String Default: None Description: OU/path where the created account should be moved to once creation is completed - None means no move AccountVendingCreationLambdaArn: Type: String Default: account-vending-creation-lambda Description: The ARN of the account creation lambda AccountVendingBootstrapperLambdaArn: Type: String Default: account-vending-bootstrapper-lambda Description: The ARN of the account bootstrapping lambda Resources: Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambdaArn Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU Bootstrap: Type: Custom::CustomResource Properties: ServiceToken: !Ref AccountVendingBootstrapperLambdaArn OrganizationAccountAccessRoleName: !Ref OrganizationAccountAccessRole TargetAccountId: !GetAtt Account.account_id PuppetAccountId: !Sub "${AWS::AccountId}" Outputs: AccountId: Value: !GetAtt Account.account_id ================================================ FILE: unsorted/account-vending/account-creation/v2/README.md ================================================ # product.template # Description account-bootstrap-shared-product and account-creation-shared-product must both be provisioned into the same account before this will work - they build some resources needed for this to work and they provision the SSM params with the correct ARNs so this works with no copy and pasting. Provisioning this template will create an AWS Account and bootstrap it using aws-service-catalog-puppet so you can provision products into the account. ## Parameters The list of parameters for this template: ### Email Type: String Description: The email address to use for the account that is to be created ### AccountName Type: String Description: The name to use for the account that is to be created ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: The name of the role to be created in the account that allows Organizations access ### IamUserAccessToBilling Type: String Default: ALLOW ### TargetOU Type: String Default: None Description: OU/path where the created account should be moved to once creation is completed - None means no move ### AccountVendingCreationLambdaArn Type: String Default: account-vending-creation-lambda Description: The ARN of the account creation lambda ### AccountVendingBootstrapperLambdaArn Type: String Default: account-vending-bootstrapper-lambda Description: The ARN of the account bootstrapping lambda ## Resources The list of resources this template creates: ### Account Type: Custom::CustomResource Description: A custom resource representing an AWS Account ### Bootstrap Type: Custom::CustomResource ## Outputs The list of outputs this template exposes: ### AccountId ================================================ FILE: unsorted/account-vending/account-creation/v2/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Description: | account-bootstrap-shared-product and account-creation-shared-product must both be provisioned into the same account before this will work - they build some resources needed for this to work and they provision the SSM params with the correct ARNs so this works with no copy and pasting. Provisioning this template will create an AWS Account and bootstrap it using aws-service-catalog-puppet so you can provision products into the account. Parameters: Email: Type: String Description: The email address to use for the account that is to be created AccountName: Type: String Description: The name to use for the account that is to be created OrganizationAccountAccessRole: Type: String Default: OrganizationAccountAccessRole Description: The name of the role to be created in the account that allows Organizations access IamUserAccessToBilling: Type: String Default: "ALLOW" AllowedValues: ['ALLOW', 'DENY'] TargetOU: Type: String Default: None Description: OU/path where the created account should be moved to once creation is completed - None means no move AccountVendingCreationLambdaArn: Type: String Default: account-vending-creation-lambda Description: The ARN of the account creation lambda AccountVendingBootstrapperLambdaArn: Type: String Default: account-vending-bootstrapper-lambda Description: The ARN of the account bootstrapping lambda Resources: Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambdaArn Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU Bootstrap: Type: Custom::CustomResource Properties: ServiceToken: !Ref AccountVendingBootstrapperLambdaArn OrganizationAccountAccessRoleName: !Ref OrganizationAccountAccessRole TargetAccountId: !GetAtt Account.account_id PuppetAccountId: !Sub "${AWS::AccountId}" Outputs: AccountId: Value: !GetAtt Account.account_id ================================================ FILE: unsorted/account-vending/account-creation-shared/v1/README.md ================================================ # product.template # Description Lambda for backing custom resources to create an AWS Account ## Parameters The list of parameters for this template: ### AssumableRoleInRootAccountArn Type: String Description: The Arn of the role to be used to interact with AWS Orgs ## Resources The list of resources this template creates: ### AccountCustomResourceRole Type: AWS::IAM::Role ### AccountCustomResource Type: AWS::Serverless::Function Description: The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### AccountCustomResourceArn Description: the Arn of the custom resource that can be used to create an account ================================================ FILE: unsorted/account-vending/account-creation-shared/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Lambda for backing custom resources to create an AWS Account Parameters: AssumableRoleInRootAccountArn: Type: String Description: | The Arn of the role to be used to interact with AWS Orgs Resources: AccountCustomResourceRole: Type: AWS::IAM::Role Properties: Path: /account-vending/ ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref AssumableRoleInRootAccountArn AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" AccountCustomResource: Type: AWS::Serverless::Function Description: | The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for accepting shares Role: !GetAtt AccountCustomResourceRole.Arn Runtime: python3.7 Timeout: 120 Environment: Variables: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref AssumableRoleInRootAccountArn Outputs: AccountCustomResourceArn: Description: | the Arn of the custom resource that can be used to create an account Value: !GetAtt AccountCustomResource.Arn ================================================ FILE: unsorted/account-vending/account-creation-shared/v1/requirements.txt ================================================ better-boto==0.6.14 ================================================ FILE: unsorted/account-vending/account-creation-shared/v1/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event['RequestType'] try: logger.info(request_type) if request_type == 'Create': email = event.get('ResourceProperties').get('Email') account_name = event.get('ResourceProperties').get('AccountName') organization_account_access_role = event.get('ResourceProperties').get('OrganizationAccountAccessRole') iam_user_access_to_billing = event.get('ResourceProperties').get('IamUserAccessToBilling') target_ou = event.get('ResourceProperties').get('TargetOU') assumable_role_in_root_account_arn = os.environ.get('ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN') with betterboto_client.CrossAccountClientContextManager( 'organizations',assumable_role_in_root_account_arn, 'assumable_org_role' ) as organizations: logger.info('Creating') response = organizations.create_account( Email=email, AccountName=account_name, RoleName=organization_account_access_role, IamUserAccessToBilling=iam_user_access_to_billing ) id = response.get('CreateAccountStatus').get('Id') logger.info('Waiting') while response.get('CreateAccountStatus').get('State') == 'IN_PROGRESS': logger.info( 'Still waiting: {}'.format(response.get('CreateAccountStatus').get('State')) ) time.sleep(5) response = organizations.describe_create_account_status(CreateAccountRequestId=id) logger.info( 'Finished: {}'.format(response.get('CreateAccountStatus').get('State')) ) if response.get('CreateAccountStatus').get('State') == 'SUCCEEDED': account_id = response.get('CreateAccountStatus').get('AccountId') if target_ou != "None": response = organizations.list_roots() if len(response.get('Roots')) != 1: raise Exception("nRoots: {}".format(len(response.get('Roots')))) if str(target_ou).startswith('/'): target = organizations.convert_path_to_ou(target_ou) else: target = target_ou organizations.move_account( AccountId=account_id, SourceParentId=response.get('Roots')[0].get('Id'), DestinationParentId=target ) send_response( event, context, "SUCCESS", { "Message": "Resource creation successful!", "account_id": account_id, } ) else: logger.error(response.get('CreateAccountStatus').get('FailureReason')) send_response( event, context, "FAILED", { "Message": response.get('CreateAccountStatus').get('FailureReason'), } ) elif request_type == 'Update': send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == 'Delete': send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) send_response( event, context, "FAILED", { "Message": "Exception" } ) def send_response(e, c, rs, rd): r = json.dumps({ "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e['StackId'], "RequestId": e['RequestId'], "LogicalResourceId": e['LogicalResourceId'], "Data": rd }) d = str.encode(r) h = { 'content-type': '', 'content-length': str(len(d)) } req = Request(e['ResponseURL'], data=d, method='PUT', headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/account-vending/account-creation-shared/v2/README.md ================================================ # product.template # Description Lambda for backing custom resources to create an AWS Account ## Parameters The list of parameters for this template: ### AssumableRoleInRootAccountArn Type: String Description: The Arn of the role to be used to interact with AWS Orgs ## Resources The list of resources this template creates: ### AccountCustomResourceRole Type: AWS::IAM::Role ### AccountCustomResource Type: AWS::Serverless::Function Description: The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### AccountCustomResourceArn Description: the Arn of the custom resource that can be used to create an account ================================================ FILE: unsorted/account-vending/account-creation-shared/v2/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Lambda for backing custom resources to create an AWS Account Parameters: AssumableRoleInRootAccountArn: Type: String Description: | The Arn of the role to be used to interact with AWS Orgs Resources: AccountCustomResourceRole: Type: AWS::IAM::Role Properties: Path: /account-vending/ ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref AssumableRoleInRootAccountArn AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" AccountCustomResource: Type: AWS::Serverless::Function Description: | The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for accepting shares Role: !GetAtt AccountCustomResourceRole.Arn Runtime: python3.7 Timeout: 120 Environment: Variables: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref AssumableRoleInRootAccountArn Outputs: AccountCustomResourceArn: Description: | the Arn of the custom resource that can be used to create an account Value: !GetAtt AccountCustomResource.Arn ================================================ FILE: unsorted/account-vending/account-creation-shared/v2/requirements.txt ================================================ better-boto==0.25.0 ================================================ FILE: unsorted/account-vending/account-creation-shared/v2/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event['RequestType'] try: logger.info(request_type) assumable_role_in_root_account_arn = os.environ.get('ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN') with betterboto_client.CrossAccountClientContextManager( 'organizations', assumable_role_in_root_account_arn, 'assumable_org_role' ) as organizations: target_ou = event.get('ResourceProperties').get('TargetOU') account_name = event.get('ResourceProperties').get('AccountName') if request_type == 'Create': email = event.get('ResourceProperties').get('Email') organization_account_access_role = event.get('ResourceProperties').get('OrganizationAccountAccessRole') iam_user_access_to_billing = event.get('ResourceProperties').get('IamUserAccessToBilling') account_id = ensure_account_created( organizations, account_name, email, iam_user_access_to_billing, assumable_role_in_root_account_arn, organization_account_access_role, ) ensure_account_is_in_correct_ou( organizations, account_id, target_ou ) send_response( event, context, "SUCCESS", { "Message": "Resource creation successful!", "account_id": account_id, } ) elif request_type == 'Update': response = organizations.list_accounts_single_page() account_id = None for account in response.get('Accounts', []): if account.get('Name') == account_name: account_id = account.get('Id') logger.info('Already created') break if account_id is None: raise Exception("Account does not exist") ensure_account_is_in_correct_ou( organizations, account_id, target_ou ) send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == 'Delete': send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) send_response( event, context, "FAILED", { "Message": "Exception" } ) def ensure_account_is_in_correct_ou(organizations, account_id, target_ou): result = organizations.list_parents_single_page(ChildId=account_id) current_ou = None if len(result.get('Parents', [])) != 1: raise Exception( f"There were unexpected parents for the account_id {account_id}: {json.dumps(result)}" ) current_ou = result.get('Parents')[1] if target_ou != "None": if current_ou and current_ou != target_ou: logger.info("Moving account to new OU") response = organizations.list_roots() if len(response.get('Roots')) != 1: raise Exception("nRoots: {}".format(len(response.get('Roots')))) if str(target_ou).startswith('/'): target = organizations.convert_path_to_ou(target_ou) else: target = target_ou organizations.move_account( AccountId=account_id, SourceParentId=response.get('Roots')[0].get('Id'), DestinationParentId=target ) def ensure_account_created( organizations, account_name, email, iam_user_access_to_billing, assumable_role_in_root_account_arn, organization_account_access_role, ): logger.info('Checking if need to create') response = organizations.list_accounts_single_page() account_id = None for account in response.get('Accounts', []): if account.get('Name') == account_name: account_id = account.get('Id') logger.info('Already created') break if account_id is None: logger.info('Creating account') response = organizations.create_account( Email=email, AccountName=account_name, RoleName=organization_account_access_role, IamUserAccessToBilling=iam_user_access_to_billing ) id = response.get('CreateAccountStatus').get('Id') logger.info('Waiting') while response.get('CreateAccountStatus').get('State') == 'IN_PROGRESS': logger.info( 'Still waiting: {}'.format(response.get('CreateAccountStatus').get('State')) ) time.sleep(5) response = organizations.describe_create_account_status(CreateAccountRequestId=id) logger.info( 'Finished: {}'.format(response.get('CreateAccountStatus').get('State')) ) if response.get('CreateAccountStatus').get('State') == 'SUCCEEDED': account_id = response.get('CreateAccountStatus').get('AccountId') counter = 20 while counter > 0: time.sleep(10) try: with betterboto_client.CrossMultipleAccountsClientContextManager( 'sts', [ assumable_role_in_root_account_arn, organization_account_access_role, ] ) as spoke_sts: spoke_sts.get_caller_identity() logger.info("Was able to assume role into the spoke") counter = 0 except Exception as e: counter -= 1 logger.info(f"caught exception trying to assume role into the spoke account {e}") else: raise Exception( f"Account was not created correctly: {response.get('CreateAccountStatus').get('FailureReason')}") return account_id def send_response(e, c, rs, rd): r = json.dumps({ "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e['StackId'], "RequestId": e['RequestId'], "LogicalResourceId": e['LogicalResourceId'], "Data": rd }) d = str.encode(r) h = { 'content-type': '', 'content-length': str(len(d)) } req = Request(e['ResponseURL'], data=d, method='PUT', headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/account-vending/account-creation-shared/v3/README.md ================================================ # product.template # Description Lambda for backing custom resources to create an AWS Account ## Parameters The list of parameters for this template: ### AssumableRoleInRootAccountArn Type: String Description: The Arn of the role to be used to interact with AWS Orgs ## Resources The list of resources this template creates: ### AccountCustomResourceRole Type: AWS::IAM::Role ### AccountCustomResource Type: AWS::Serverless::Function Description: The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### AccountCustomResourceArn Description: the Arn of the custom resource that can be used to create an account ================================================ FILE: unsorted/account-vending/account-creation-shared/v3/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Lambda for backing custom resources to create an AWS Account Parameters: AssumableRoleInRootAccountArn: Type: String Description: | The Arn of the role to be used to interact with AWS Orgs OrganizationAccountAccessRole: Type: String Default: OrganizationAccountAccessRole Description: | The name of the IAM Role used for cross account assess for AWS Organs Resources: AccountCustomResourceRole: Type: AWS::IAM::Role Properties: Path: /account-vending/ ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref AssumableRoleInRootAccountArn AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" AccountCustomResource: Type: AWS::Serverless::Function Description: | The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for accepting shares Role: !GetAtt AccountCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref AssumableRoleInRootAccountArn ORGANIZATION_ACCOUNT_ACCESS_ROLE: !Ref OrganizationAccountAccessRole Outputs: AccountCustomResourceArn: Description: | the Arn of the custom resource that can be used to create an account Value: !GetAtt AccountCustomResource.Arn ================================================ FILE: unsorted/account-vending/account-creation-shared/v3/requirements.txt ================================================ better-boto==0.25.0 ================================================ FILE: unsorted/account-vending/account-creation-shared/v3/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os import traceback logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event['RequestType'] try: logger.info(request_type) assumable_role_in_root_account_arn = os.environ.get('ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN') organization_account_access_role = os.environ.get('ORGANIZATION_ACCOUNT_ACCESS_ROLE') with betterboto_client.CrossAccountClientContextManager( 'organizations', assumable_role_in_root_account_arn, 'assumable_org_role' ) as organizations: target_ou = event.get('ResourceProperties').get('TargetOU') account_name = event.get('ResourceProperties').get('AccountName') if request_type == 'Create': email = event.get('ResourceProperties').get('Email') iam_user_access_to_billing = event.get('ResourceProperties').get('IamUserAccessToBilling') account_id = ensure_account_created( organizations, account_name, email, iam_user_access_to_billing, assumable_role_in_root_account_arn, organization_account_access_role, ) ensure_account_is_in_correct_ou( organizations, account_id, target_ou ) send_response( event, context, "SUCCESS", { "Message": "Resource creation successful!", "account_id": account_id, } ) elif request_type == 'Update': response = organizations.list_accounts_single_page() account_id = None for account in response.get('Accounts', []): if account.get('Name') == account_name: account_id = account.get('Id') logger.info('Already created') break if account_id is None: raise Exception("Account does not exist") ensure_account_is_in_correct_ou( organizations, account_id, target_ou ) send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == 'Delete': send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) send_response( event, context, "FAILED", { "Message": "Exception" } ) def ensure_account_is_in_correct_ou(organizations, account_id, target_ou): result = organizations.list_parents_single_page(ChildId=account_id) current_ou = None if len(result.get('Parents', [])) != 1: raise Exception( f"There were unexpected parents for the account_id {account_id}: {json.dumps(result)}" ) current_ou = result.get('Parents')[1] if target_ou != "None": if current_ou and current_ou != target_ou: logger.info("Moving account to new OU") response = organizations.list_roots() if len(response.get('Roots')) != 1: raise Exception("nRoots: {}".format(len(response.get('Roots')))) if str(target_ou).startswith('/'): target = organizations.convert_path_to_ou(target_ou) else: target = target_ou organizations.move_account( AccountId=account_id, SourceParentId=response.get('Roots')[0].get('Id'), DestinationParentId=target ) def ensure_account_created( organizations, account_name, email, iam_user_access_to_billing, assumable_role_in_root_account_arn, organization_account_access_role, ): logger.info('Checking if need to create') response = organizations.list_accounts_single_page() account_id = None for account in response.get('Accounts', []): if account.get('Name') == account_name: account_id = account.get('Id') logger.info('Already created') break if account_id is None: logger.info('Creating account') response = organizations.create_account( Email=email, AccountName=account_name, RoleName=organization_account_access_role, IamUserAccessToBilling=iam_user_access_to_billing ) id = response.get('CreateAccountStatus').get('Id') logger.info('Waiting') while response.get('CreateAccountStatus').get('State') == 'IN_PROGRESS': logger.info( 'Still waiting: {}'.format(response.get('CreateAccountStatus').get('State')) ) time.sleep(5) response = organizations.describe_create_account_status(CreateAccountRequestId=id) logger.info( 'Finished: {}'.format(response.get('CreateAccountStatus').get('State')) ) if response.get('CreateAccountStatus').get('State') == 'SUCCEEDED': account_id = response.get('CreateAccountStatus').get('AccountId') counter = 20 while counter > 0: time.sleep(10) try: with betterboto_client.CrossMultipleAccountsClientContextManager( 'codebuild', [ (assumable_role_in_root_account_arn, 'assumable_role_in_root_account_arn'), (f"arn:aws:iam::{account_id}:role/{organization_account_access_role}", 'organization_account_access_role'), ] ) as spoke_codebuild: spoke_codebuild.list_projects() logger.info("Was able to assume role into the spoke and call codebuild") counter = 0 except Exception as e: counter -= 1 logger.error("type error: " + str(e)) logger.error(traceback.format_exc()) else: raise Exception( f"Account was not created correctly: {response.get('CreateAccountStatus').get('FailureReason')}") return account_id def send_response(e, c, rs, rd): r = json.dumps({ "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e['StackId'], "RequestId": e['RequestId'], "LogicalResourceId": e['LogicalResourceId'], "Data": rd }) d = str.encode(r) h = { 'content-type': '', 'content-length': str(len(d)) } req = Request(e['ResponseURL'], data=d, method='PUT', headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/account-vending/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: account-vending-account-creation-shared: portfolio: demo-central-it-team-portfolio product: account-vending-account-creation-shared version: v3 parameters: AssumableRoleInRootAccountArn: default: arn:aws:iam::0123456789010:role/servicecatalog-puppet/AssumableRoleInRootAccount OrganizationAccountAccessRole: default: OrganizationAccountAccessRole outputs: ssm: - param_name: /account-vending/account-custom-resource-arn stack_output: AccountCustomResourceArn deploy_to: tags: - tag: scope:puppet-hub regions: default_region account-vending-account-bootstrap-shared: portfolio: demo-central-it-team-portfolio product: account-vending-account-bootstrap-shared version: v2 parameters: AssumableRoleInRootAccountArn: default: arn:aws:iam::0123456789010:role/servicecatalog-puppet/AssumableRoleInRootAccount outputs: ssm: - param_name: /account-vending/bootstrapper-project-custom-resource-arn stack_output: BootstrapperProjectCustomResourceArn deploy_to: tags: - tag: scope:puppet-hub regions: default_region account-vending-account-001: portfolio: demo-central-it-team-portfolio product: account-vending-account-creation version: v2 depends_on: - account-vending-account-creation-shared - account-vending-account-bootstrap-shared parameters: Email: default: "mailing-list+account-001@somewhere.com" AccountName: default: "account-001" OrganizationAccountAccessRole: default: "OrganizationAccountAccessRole" IamUserAccessToBilling: default: "ALLOW" TargetOU: default: / AccountVendingCreationLambdaArn: ssm: name: /account-vending/account-custom-resource-arn AccountVendingBootstrapperLambdaArn: ssm: name: /account-vending/bootstrapper-project-custom-resource-arn deploy_to: tags: - tag: scope:puppet-hub regions: default_region ================================================ FILE: unsorted/account-vending/org-bootstrap.template.README.md ================================================ # org-bootstrap.template # Description IAM Role needed to use AWS Organizations to create AWS Accounts. ## Parameters The list of parameters for this template: ### ServiceCatalogFactoryAccountId Type: String Description: The account you will be installing AWS Service Catalog Factory into ## Resources The list of resources this template creates: ### AssumableRoleInRootAccount Type: AWS::IAM::Role Description: IAM Role needed by the account vending machine so it can create and move accounts ## Outputs The list of outputs this template exposes: ### AssumableRoleInRootAccountArn Description: The ARN for your Assumable role in root account ================================================ FILE: unsorted/account-vending/org-bootstrap.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Description: IAM Role needed to use AWS Organizations to create AWS Accounts. Parameters: ServiceCatalogFactoryAccountId: Description: The account you will be installing AWS Service Catalog Factory into Type: String OrganizationAccountAccessRole: Description: Name of the IAM role used to access cross accounts for AWS Orgs usage Default: OrganizationAccountAccessRole Type: String Resources: AssumableRoleInRootAccount: Type: AWS::IAM::Role Description: | IAM Role needed by the account vending machine so it can create and move accounts Properties: RoleName: AssumableRoleInRootAccount Path: /servicecatalog-puppet/ Policies: - PolicyName: Organizations PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - organizations:ListRoots - organizations:ListAccounts - organizations:ListParents - organizations:MoveAccount - organizations:CreateAccount - organizations:DescribeCreateAccountStatus - organizations:ListOrganizationalUnitsForParent Resource: '*' - Effect: Allow Action: - sts:AssumeRole Resource: !Sub "arn:aws:iam::*:role/${OrganizationAccountAccessRole}" AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${ServiceCatalogFactoryAccountId}:root" Action: - "sts:AssumeRole" Outputs: AssumableRoleInRootAccountArn: Description: The ARN for your Assumable role in root account Value: !GetAtt AssumableRoleInRootAccount.Arn ================================================ FILE: unsorted/account-vending/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: account-vending-account-creation-shared Owner: central-it@customer.com Description: lambda to used to back custom resources that create an AWS account and move it to an ou Distributor: central-it-team SupportDescription: Contact us on Chime for help SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/account-iam Tags: - Key: product-set Value: account-vending Versions: - Name: v2 Description: lambda to used to back custom resources that create an AWS account and move it to an ou Active: True Source: Provider: CodeCommit Configuration: RepositoryName: account-vending-account-creation-shared BranchName: v2 BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.x build: commands: - pip install -r requirements.txt -t src {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' - Name: account-vending-account-bootstrap-shared Owner: central-it@customer.com Description: Lambda and codebuild project needed to run servicecatalog-puppet bootstrap-spoke-as Distributor: central-it-team SupportDescription: Contact us on Chime for help SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/account-iam Tags: - Key: product-set Value: account-vending Versions: - Name: v2 Description: Lambda and codebuild project needed to run servicecatalog-puppet bootstrap-spoke-as Active: True Source: Provider: CodeCommit Configuration: RepositoryName: account-vending-account-bootstrap-shared BranchName: v2 BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.x build: commands: - pip install -r requirements.txt -t src {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' - Name: account-vending-account-creation Owner: central-it@customer.com Description: template used to interact with custom resources in the shared projects Distributor: central-it-team SupportDescription: Contact us on Chime for help SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/account-iam Tags: - Key: product-set Value: account-vending Versions: - Name: v1 Description: template used to interact with custom resources in the shared projects. Active: True Source: Provider: CodeCommit Configuration: RepositoryName: account-vending-account-creation BranchName: master ================================================ FILE: unsorted/aws-config/aws-config/v1/README.md ================================================ # AWS-Config This template enables AWS config in the account by creating a bucket, role and config recorder. ================================================ FILE: unsorted/aws-config/aws-config/v1/product.template.yaml ================================================ AWSTemplateFormatVersion: 2010-09-09 Description: | This template creates a Config Recorder and an Amazon S3 bucket where logs are published. Resources: #The IAM role used to configure AWS Config ConfigRole: Type: 'AWS::IAM::Role' Properties: AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - config.amazonaws.com Action: - 'sts:AssumeRole' ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSConfigRole Policies: - PolicyName: root PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: 's3:GetBucketAcl' Resource: !Sub arn:aws:s3:::${S3ConfigBucket} - Effect: Allow Action: 's3:PutObject' Resource: !Sub arn:aws:s3:::${S3ConfigBucket}/AWSLogs/${AWS::AccountId}/${AWS::Region} Condition: StringEquals: 's3:x-amz-acl': bucket-owner-full-control - Effect: Allow Action: 'config:Put*' Resource: '*' ConfigRecorder: Type: 'AWS::Config::ConfigurationRecorder' Properties: Name: default RoleARN: !GetAtt ConfigRole.Arn RecordingGroup: AllSupported: true IncludeGlobalResourceTypes: true DeliveryChannel: Type: 'AWS::Config::DeliveryChannel' Properties: ConfigSnapshotDeliveryProperties: DeliveryFrequency: Six_Hours S3BucketName: !Ref S3ConfigBucket #S3 bucket with AES256 Encryption set S3ConfigBucket: DeletionPolicy: Retain UpdateReplacePolicy: Retain Type: AWS::S3::Bucket Properties: PublicAccessBlockConfiguration: BlockPublicAcls: True BlockPublicPolicy: True IgnorePublicAcls: True RestrictPublicBuckets: True BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: SSEAlgorithm: AES256 #S3 bucket policy S3ConfigBucketPolicy: Type: AWS::S3::BucketPolicy Properties: Bucket: !Ref S3ConfigBucket PolicyDocument: Version: 2012-10-17 Statement: - Sid: AWSBucketPermissionsCheck Effect: Allow Principal: Service: - config.amazonaws.com Action: s3:GetBucketAcl Resource: - !Sub "arn:aws:s3:::${S3ConfigBucket}" - Sid: AWSBucketDelivery Effect: Allow Principal: Service: - config.amazonaws.com Action: s3:PutObject Resource: !Sub "arn:aws:s3:::${S3ConfigBucket}/AWSLogs/*/*" Outputs: ConfigRoleArn: Value: !GetAtt ConfigRole.Arn S3ConfigBucketArn: Value: !GetAtt S3ConfigBucket.Arn ================================================ FILE: unsorted/aws-config/manifest.yaml ================================================ schema: puppet-2019-04-01 launches: aws-config: portfolio: demo-cloud-engineering-governance product: aws-config version: v1 ================================================ FILE: unsorted/aws-config/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: aws-config-aggregator Owner: central-it@customer.com Description: aws-config-aggregator Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/aws-config-aggregator Tags: - Key: product-type Value: aws-config Versions: - Name: v1 Description: aws-config-aggregator Active: True Source: Provider: CodeCommit Configuration: RepositoryName: aws-config-aggregator BranchName: master ================================================ FILE: unsorted/aws-config-aggregator/aws-config-aggregator/v1/README.md ================================================ # AWS-Config-Aggregator This template creates an AWS Config Aggregator using AWS Organizations. ## Parameters ``` ConfigurationAggregatorName: Type: String Description: | "The name of the aggregator. Member must satisfy regular expression pattern: [\w\-]+" AllAwsRegions: Type: String Default: true AllowedValues: [true, false] Description: | If true, aggregate existing AWS Config regions and future regions. SpecificAwsRegions: Type: CommaDelimitedList Default: "" Description: | Optional - If AllAwsRegions is true then this is not used. CommaDelimitedList of source regions being aggregated. ``` ## Outputs ``` OrgConfigRole: Description: Arn of IAM role used by AWS Config for Organization permissions Value: !GetAtt OrgConfigAggregatorRole.Arn OrgConfigName: Description: Configuration Aggregator Name Value: !Ref OrgConfigAggregatorAll Condition: UseAllAwsRegions OrgConfigName: Description: Configuration Aggregator Name Value: !Ref OrgConfigAggregatorSpecific Condition: UseSpecificAwsRegions ``` ================================================ FILE: unsorted/aws-config-aggregator/aws-config-aggregator/v1/product.template.yaml ================================================ AWSTemplateFormatVersion: 2010-09-09 Description: | This template creates an AWS Config Aggregator using AWS Organizations. Parameters: ConfigurationAggregatorName: Type: String Description: | "The name of the aggregator. Member must satisfy regular expression pattern: [\w\-]+" AllAwsRegions: Type: String Default: true AllowedValues: [true, false] Description: | If true, aggregate existing AWS Config regions and future regions. SpecificAwsRegions: Type: CommaDelimitedList Default: "" Description: | Optional - If AllAwsRegions is true then this is not used. CommaDelimitedList of source regions being aggregated. Conditions: # If AllAwsRegions is true then let UseAllAwsRegions evaluate to true. UseAllAwsRegions: !Equals - !Ref AllAwsRegions - "true" UseSpecificAwsRegions: !Equals - !Ref AllAwsRegions - "false" Resources: OrgConfigAggregatorRole: Type: 'AWS::IAM::Role' Description: The IAM role used by AWS Config for Organization permissions Properties: AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - config.amazonaws.com Action: - 'sts:AssumeRole' ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSConfigRoleForOrganizations OrgConfigAggregatorAll: Condition: UseAllAwsRegions Type: AWS::Config::ConfigurationAggregator Properties: ConfigurationAggregatorName: !Ref ConfigurationAggregatorName OrganizationAggregationSource: AllAwsRegions: true RoleArn: !GetAtt OrgConfigAggregatorRole.Arn OrgConfigAggregatorSpecific: Condition: UseSpecificAwsRegions Type: AWS::Config::ConfigurationAggregator Properties: ConfigurationAggregatorName: !Ref ConfigurationAggregatorName OrganizationAggregationSource: AwsRegions: !Ref SpecificAwsRegions AllAwsRegions: false RoleArn: !GetAtt OrgConfigAggregatorRole.Arn Outputs: OrgConfigRole: Description: Arn of IAM role used by AWS Config for Organization permissions Value: !GetAtt OrgConfigAggregatorRole.Arn OrgConfigName: Description: Configuration Aggregator Name Value: !Ref OrgConfigAggregatorAll Condition: UseAllAwsRegions OrgConfigName: Description: Configuration Aggregator Name Value: !Ref OrgConfigAggregatorSpecific Condition: UseSpecificAwsRegions ================================================ FILE: unsorted/aws-config-aggregator/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: aws-config-aggregator: portfolio: demo-central-it-team-portfolio product: aws-config-aggregator version: v1 ================================================ FILE: unsorted/aws-config-aggregator/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: aws-config-aggregator Owner: central-it@customer.com Description: aws-config-aggregator Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/aws-config-aggregator Tags: - Key: product-type Value: aws-config Versions: - Name: v1 Description: aws-config-aggregator Active: True Source: Provider: CodeCommit Configuration: RepositoryName: aws-config-aggregator BranchName: master ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/README.md ================================================ # aws-control-tower-augmented-account-factory Wrapper for AWS Control Tower Account Factory. Improves the customer user experience and dispatches the result ## Description This product will use the AWS Control Tower Account Factory product to create an AWS account. It will expose parameters for the account that are more user friendly. Once the creation has completed the account id will be available as a output to the product. ## Install Instructions You will need to provision an AWS CloudFormation stack for account-details-to-aws-account-id/v1/org-bootstrap.template.yaml This will create an IAM Role needed as a parameter for the account-details-to-aws-account-id stack. ```bash aws codecommit create-repository --repository-name account-type-to-organizational-unit-chooser git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/account-type-to-organizational-unit-chooser svn export https://github.com/awslabs/aws-service-catalog-products/trunk/aws-control-tower-augmented-account-factory/account-type-to-organizational-unit-chooser/v4 account-type-to-organizational-unit-chooser --force aws codecommit create-repository --repository-name account-details-to-aws-account-id git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/account-details-to-aws-account-id svn export https://github.com/awslabs/aws-service-catalog-products/trunk/aws-control-tower-augmented-account-factory/account-details-to-aws-account-id/v1 account-details-to-aws-account-id --force aws codecommit create-repository --repository-name augmented-account-factory git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/augmented-account-factory svn export https://github.com/awslabs/aws-service-catalog-products/trunk/aws-control-tower-augmented-account-factory/augmented-account-factory/v5 augmented-account-factory --force aws codecommit create-repository --repository-name account-creation-notifier git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/account-creation-notifier svn export https://github.com/awslabs/aws-service-catalog-products/trunk/aws-control-tower-account-creation-notifier/account-creation-notifier/v1 account-creation-notifier --force aws codecommit create-repository --repository-name account-bootstrap-shared git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/account-bootstrap-shared svn export https://github.com/awslabs/aws-service-catalog-products/trunk/aws-control-tower-account-creation-notifier/account-bootstrap-shared/v3 account-bootstrap-shared --force ``` ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-bootstrap-shared/v2/README.md ================================================ # product.template # Description Creates: - codebuild project that can be run to bootstrap an account - lambda function that can be used to back a custom resource so the codebuild project can be started from CloudFormation ## Parameters The list of parameters for this template: ## Resources The list of resources this template creates: ### BootstrapperRole Type: AWS::IAM::Role ### BootstrapperProject Type: AWS::CodeBuild::Project Description: Wrapper project that: - installs aws-service-catalog-puppet - runs bootstrap-spoke-as ### BootstrapperProjectCustomResourceRole Type: AWS::IAM::Role ### BootstrapperProjectCustomResource Type: AWS::Serverless::Function Description: Lambda function that can be used to back a custom resource. You can get the ARN by checking the SSM Parameter ```account-vending-bootstrapper-lambda```: ```yaml Account: Type: Custom::CustomResource Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### BootstrapperProjectCustomResourceArn Description: Outputs the BootstrapperProjectCustomResource Arn so others can use it ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-bootstrap-shared/v2/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Creates: - codebuild project that can be run to bootstrap an account - lambda function that can be used to back a custom resource so the codebuild project can be started from CloudFormation {"version": "v2", "framework": "servicecatalog-products", "role": "product", "product-set": "aws-control-tower-augmented-account-factory", "product": "account-bootstrap-shared"} Parameters: PuppetAccountId: Type: String Description: Account id of the your puppet account PuppetVersion: Type: String Description: Version of puppet to use when bootstrapping a spoke Resources: BootstrapperRole: Type: AWS::IAM::Role Properties: Path: /aws-control-tower-augmented-account-factory/ ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "codebuild.amazonaws.com" Action: - "sts:AssumeRole" BootstrapperProject: Type: AWS::CodeBuild::Project Description: | Wrapper project that: - installs aws-service-catalog-puppet - runs bootstrap-spoke-as Properties: Name: servicecatalog-puppet-single-account-bootstrapper Description: "Bootstraps an account for use with ServiceCatalog-Puppet" ServiceRole: !GetAtt BootstrapperRole.Arn Artifacts: Type: NO_ARTIFACTS Environment: Type: linuxContainer ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 EnvironmentVariables: - Name: PUPPET_ACCOUNT_ID Type: PLAINTEXT Value: !Ref PuppetAccountId - Name: VERSION Type: PLAINTEXT Value: !Ref PuppetVersion - Name: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT Type: PLAINTEXT Value: CHANGE_ME Source: Type: NO_SOURCE BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.x commands: - pip install aws-service-catalog-puppet==${VERSION} build: commands: - servicecatalog-puppet bootstrap-spoke-as ${PUPPET_ACCOUNT_ID} ${ASSUMABLE_ROLE_IN_ROOT_ACCOUNT} TimeoutInMinutes: 30 BootstrapperProjectCustomResourceRole: Type: AWS::IAM::Role Properties: Path: /aws-control-tower-augmented-account-factory/ ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" BootstrapperProjectCustomResource: Type: AWS::Serverless::Function Description: | Lambda function that can be used to back a custom resource. You can get the ARN by checking the SSM Parameter ```account-vending-bootstrapper-lambda```: ```yaml Account: Type: Custom::CustomResource Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` Properties: FunctionName: account-bootstrapper CodeUri: ./src Handler: handler.handler Description: Lambda for accepting shares Role: !GetAtt BootstrapperProjectCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: BOOTSTRAPPER_PROJECT_NAME: !Ref BootstrapperProject ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Sub "arn:aws:iam::${AWS::AccountId}:role/AWSControlTowerExecution" Outputs: BootstrapperProjectCustomResourceArn: Description: | Outputs the BootstrapperProjectCustomResource Arn so others can use it Value: !GetAtt BootstrapperProjectCustomResource.Arn ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-bootstrap-shared/v2/requirements.txt ================================================ better-boto==0.6.19 ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-bootstrap-shared/v2/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os import traceback logger = logging.getLogger() logger.setLevel(logging.INFO) logging.basicConfig( format='%(levelname)s %(threadName)s [%(filename)s:%(lineno)d] %(message)s', datefmt='%Y-%m-%d:%H:%M:%S', level=logging.INFO ) def handler(event, context): request_type = event['RequestType'] try: logger.info(request_type) if request_type == 'Create': target_account_id = event.get('ResourceProperties').get('TargetAccountId') assumable_role_in_root_account = os.environ.get('ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN') bootstrapper_project_name = os.environ.get('BOOTSTRAPPER_PROJECT_NAME') with betterboto_client.ClientContextManager( 'codebuild', ) as codebuild: bootstrapper_build = codebuild.start_build_and_wait_for_completion( projectName=bootstrapper_project_name, environmentVariablesOverride=[ { 'name': 'ASSUMABLE_ROLE_IN_ROOT_ACCOUNT', 'value': assumable_role_in_root_account, 'type': 'PLAINTEXT' }, ], ) final_status = bootstrapper_build.get('buildStatus') if final_status == 'SUCCEEDED': puppet_run_build = codebuild.start_build_and_wait_for_completion( projectName='servicecatalog-puppet-single-account-run', environmentVariablesOverride=[ { 'name': 'SINGLE_ACCOUNT_ID', 'value': target_account_id, 'type': 'PLAINTEXT' } ], ) final_status = puppet_run_build.get('buildStatus') if final_status == 'SUCCEEDED': send_response( event, context, "SUCCESS", { "Message": "Resource creation successful!", "puppet_run_build_id": puppet_run_build.get('id'), "bootstrapper_build_id": bootstrapper_build.get('id'), } ) else: logger.error('Errored check the logs: {}'.format(puppet_run_build.get('logs').get('deepLink'))) send_response( event, context, "FAILED", { "Message": 'Pipeline errored, check the logs: {}'.format( puppet_run_build.get('logs').get('deepLink') ), } ) else: logger.error('Errored check the logs: {}'.format(bootstrapper_build.get('logs').get('deepLink'))) send_response( event, context, "FAILED", { "Message": 'Bootstrap errored, check the logs: {}'.format( bootstrapper_build.get('logs').get('deepLink') ), } ) elif request_type == 'Update': send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == 'Delete': send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) send_response( event, context, "FAILED", { "Message": "Exception" } ) def send_response(e, c, rs, rd): r = json.dumps({ "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e['StackId'], "RequestId": e['RequestId'], "LogicalResourceId": e['LogicalResourceId'], "Data": rd }) d = str.encode(r) h = { 'content-type': '', 'content-length': str(len(d)) } req = Request(e['ResponseURL'], data=d, method='PUT', headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-bootstrap-shared/v3/README.md ================================================ # product.template # Description Creates: - codebuild project that can be run to bootstrap an account - lambda function that can be used to back a custom resource so the codebuild project can be started from CloudFormation ## Parameters The list of parameters for this template: ## Resources The list of resources this template creates: ### BootstrapperRole Type: AWS::IAM::Role ### BootstrapperProject Type: AWS::CodeBuild::Project Description: Wrapper project that: - installs aws-service-catalog-puppet - runs bootstrap-spoke-as ### BootstrapperProjectCustomResourceRole Type: AWS::IAM::Role ### BootstrapperProjectCustomResource Type: AWS::Serverless::Function Description: Lambda function that can be used to back a custom resource. You can get the ARN by checking the SSM Parameter ```account-vending-bootstrapper-lambda```: ```yaml Account: Type: Custom::CustomResource Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### BootstrapperProjectCustomResourceArn Description: Outputs the BootstrapperProjectCustomResource Arn so others can use it ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-bootstrap-shared/v3/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Creates: - codebuild project that can be run to bootstrap an account - lambda function that can be used to back a custom resource so the codebuild project can be started from CloudFormation {"version": "v3", "framework": "servicecatalog-products", "role": "product", "product-set": "aws-control-tower-augmented-account-factory", "product": "account-bootstrap-shared"} Parameters: PuppetAccountId: Type: String Description: Account id of the your puppet account PuppetVersion: Type: String Description: Version of puppet to use when bootstrapping a spoke Resources: BootstrapperRole: Type: AWS::IAM::Role Properties: RoleName: "BootstrapperRole" Path: /aws-control-tower-augmented-account-factory/ ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "codebuild.amazonaws.com" Action: - "sts:AssumeRole" Policies: - PolicyName: AssumeIntoSpokes PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: arn:aws:iam::*:role/AWSControlTowerExecution BootstrapperProject: Type: AWS::CodeBuild::Project Description: | Wrapper project that: - installs aws-service-catalog-puppet - runs bootstrap-spoke-as Properties: Name: servicecatalog-puppet-single-account-bootstrapper Description: "Bootstraps an account for use with ServiceCatalog-Puppet" ServiceRole: !GetAtt BootstrapperRole.Arn Artifacts: Type: NO_ARTIFACTS Environment: Type: linuxContainer ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 EnvironmentVariables: - Name: PUPPET_ACCOUNT_ID Type: PLAINTEXT Value: !Ref PuppetAccountId - Name: VERSION Type: PLAINTEXT Value: !Ref PuppetVersion - Name: ASSUMABLE_ROLE_IN_SPOKE_ACCOUNT Type: PLAINTEXT Value: CHANGE_ME Source: Type: NO_SOURCE BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.x commands: - pip install aws-service-catalog-puppet==${VERSION} build: commands: - servicecatalog-puppet bootstrap-spoke-as ${PUPPET_ACCOUNT_ID} ${ASSUMABLE_ROLE_IN_SPOKE_ACCOUNT} TimeoutInMinutes: 30 BootstrapperProjectCustomResourceRole: Type: AWS::IAM::Role Properties: Path: /aws-control-tower-augmented-account-factory/ ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" BootstrapperProjectCustomResource: Type: AWS::Serverless::Function Description: | Lambda function that can be used to back a custom resource. You can get the ARN by checking the SSM Parameter ```account-vending-bootstrapper-lambda```: ```yaml Account: Type: Custom::CustomResource Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` Properties: FunctionName: account-bootstrapper CodeUri: ./src Handler: handler.handler Description: Lambda for accepting shares Role: !GetAtt BootstrapperProjectCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: BOOTSTRAPPER_PROJECT_NAME: !Ref BootstrapperProject Outputs: BootstrapperProjectCustomResourceArn: Description: | Outputs the BootstrapperProjectCustomResource Arn so others can use it Value: !GetAtt BootstrapperProjectCustomResource.Arn ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-bootstrap-shared/v3/requirements.txt ================================================ better-boto==0.6.19 ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-bootstrap-shared/v3/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os import traceback logger = logging.getLogger() logger.setLevel(logging.INFO) logging.basicConfig( format='%(levelname)s %(threadName)s [%(filename)s:%(lineno)d] %(message)s', datefmt='%Y-%m-%d:%H:%M:%S', level=logging.INFO ) def handler(event, context): request_type = event['RequestType'] try: logger.info(request_type) if request_type == 'Create': target_account_id = event.get('ResourceProperties').get('TargetAccountId') assumable_role_in_spoke_account = f"arn:aws:iam::{target_account_id}:role/AWSControlTowerExecution" bootstrapper_project_name = os.environ.get('BOOTSTRAPPER_PROJECT_NAME') with betterboto_client.ClientContextManager( 'codebuild', ) as codebuild: bootstrapper_build = codebuild.start_build_and_wait_for_completion( projectName=bootstrapper_project_name, environmentVariablesOverride=[ { 'name': 'ASSUMABLE_ROLE_IN_SPOKE_ACCOUNT', 'value': assumable_role_in_spoke_account, 'type': 'PLAINTEXT' }, ], ) final_status = bootstrapper_build.get('buildStatus') if final_status == 'SUCCEEDED': send_response( event, context, "SUCCESS", { "Message": "Resource creation successful!", "bootstrapper_build_id": bootstrapper_build.get('id'), } ) else: logger.error('Errored check the logs: {}'.format(bootstrapper_build.get('logs').get('deepLink'))) send_response( event, context, "FAILED", { "Message": 'Bootstrap errored, check the logs: {}'.format( bootstrapper_build.get('logs').get('deepLink') ), } ) elif request_type == 'Update': send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == 'Delete': send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) send_response( event, context, "FAILED", { "Message": "Exception" } ) def send_response(e, c, rs, rd): r = json.dumps({ "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e['StackId'], "RequestId": e['RequestId'], "LogicalResourceId": e['LogicalResourceId'], "Data": rd }) d = str.encode(r) h = { 'content-type': '', 'content-length': str(len(d)) } req = Request(e['ResponseURL'], data=d, method='PUT', headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-creation-notifier/v1/README.md ================================================ # product.template # Description Takes the given 'AccountName' and returns the account details ## Parameters The list of parameters for this template: ### AssumableRoleInRootAccountArn Type: String Description: AWS IAM Role in the Organizations root account that is assumable from the account where this is provisoned ## Resources The list of resources this template creates: ### Function Type: AWS::Lambda::Function Description: Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids ### Role Type: AWS::IAM::Role Description: IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. ## Outputs The list of outputs this template exposes: ### AccountDetailsToAWSAccountIdCustomResourceArn Description: Outputs the Function Arn so others can use it ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-creation-notifier/v1/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Lambda to back a custom resource that dispatches notifications to an included SNS Topic {"version": "v1", "framework": "servicecatalog-products", "role": "product", "product-set": "aws-control-tower-augmented-account-factory", "product": "account-creation-notifier"} Resources: SNSTopic: Type: AWS::SNS::Topic Description: SNS Topic others can subscribe to so that they can find out about account creations Properties: TopicName: account-creations Function: Description: | Lambda function to dispatch notifications to the SNSTopic Type: AWS::Lambda::Function Properties: FunctionName: 'account-creation-notifier' Handler: index.lambda_handler Timeout: 10 Role: !GetAtt Role.Arn Runtime: python3.7 Environment: Variables: SNS_TOPIC: !Ref SNSTopic Code: ZipFile: | import cfnresponse import boto3 import os import json def construct_message(event): return { 'AccountName': event['ResourceProperties']['AccountName'], 'AccountEmail': event['ResourceProperties']['AccountEmail'], 'SSOUserFirstName': event['ResourceProperties']['SSOUserFirstName'], 'SSOUserLastName': event['ResourceProperties']['SSOUserLastName'], 'SSOUserEmail': event['ResourceProperties']['SSOUserEmail'], 'ManagedOrganizationalUnit': event['ResourceProperties']['ManagedOrganizationalUnit'], 'AccountId': event['ResourceProperties']['AccountId'], } def lambda_handler(event, context): message = construct_message(event) sns_client = boto3.client('sns') sns_client.publish( TopicArn=os.getenv('SNS_TOPIC'), Message=json.dumps(message), Subject=f"Account: {event['ResourceProperties']['AccountName']} was created" ) cfnresponse.send(event, context, cfnresponse.SUCCESS, {}) Role: Type: AWS::IAM::Role Description: | IAM role needed to publish account creations to SNS. Properties: Path: /aws-control-tower-augmented-account-factory/ Policies: - PolicyName: PublishPerms PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sns:Publish Resource: !Ref SNSTopic AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - lambda.amazonaws.com Action: - sts:AssumeRole ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Outputs: SNSTopic: Description: | Outputs the SNS topic Value: !Ref SNSTopic SNSTopicName: Description: | Outputs the SNS topic name Value: !GetAtt SNSTopic.TopicName AccountCreationNotifierCustomResourceArn: Description: | Arn of lambda that can be used to back custom resources to notify others that accounts have been created Value: !GetAtt Function.Arn ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-details-to-aws-account-id/v1/README.md ================================================ # product.template # Description Takes the given 'AccountName' and returns the account details ## Parameters The list of parameters for this template: ### AssumableRoleInRootAccountArn Type: String Description: AWS IAM Role in the Organizations root account that is assumable from the account where this is provisoned ## Resources The list of resources this template creates: ### Function Type: AWS::Lambda::Function Description: Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids ### Role Type: AWS::IAM::Role Description: IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. ## Outputs The list of outputs this template exposes: ### AccountDetailsToAWSAccountIdCustomResourceArn Description: Outputs the Function Arn so others can use it ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-details-to-aws-account-id/v1/org-bootstrap.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Description: | IAM Role needed to use AWS Organizations to list AWS Accounts. {"version": "v2", "framework": "servicecatalog-products", "role": "product", "product-set": "aws-control-tower-augmented-account-factory", "product": "account-details-to-aws-account-id"} Parameters: AccountToTrust: Description: The account you are setting up for the trust entity Type: String Resources: AssumableRoleInRootAccount: Type: AWS::IAM::Role Description: | IAM Role needed so we can list accounts Properties: Path: /aws-control-tower-augmented-account-factory/ Policies: - PolicyName: Organizations PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - organizations:ListAccounts - organizations:DescribeAccount Resource: '*' AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AccountToTrust}:root" Action: - "sts:AssumeRole" Outputs: AssumableRoleInRootAccountArn: Description: The ARN for your Assumable role in root account Value: !GetAtt AssumableRoleInRootAccount.Arn ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-details-to-aws-account-id/v1/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Takes the given 'AccountName' and returns the account details Parameters: AssumableRoleInRootAccountArn: Type: String Description: | AWS IAM Role in the Organizations root account that is assumable from the account where this is provisoned Resources: Function: Description: | Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids Type: AWS::Lambda::Function Properties: FunctionName: 'account-details-to-aws-account-id' Handler: index.lambda_handler Timeout: 10 Role: !GetAtt Role.Arn Runtime: python3.7 Environment: Variables: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref AssumableRoleInRootAccountArn Code: ZipFile: | import logging import boto3 import cfnresponse import os from boto3.session import Session logger = logging.getLogger() logger.setLevel(logging.INFO) ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN = os.getenv('ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN') def lambda_handler(event, context): logger.info('got event {}'.format(event)) response_data = {} if event['RequestType'] == 'Create': account_name = event['ResourceProperties'].get('AccountName') client = boto3.client('sts') response = client.assume_role(RoleArn=ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN, RoleSessionName="RoleInRoot") credentials = response.get('Credentials') org_client = Session().client( service_name='organizations', aws_access_key_id=credentials['AccessKeyId'], aws_secret_access_key=credentials['SecretAccessKey'], aws_session_token=credentials['SessionToken'], ) a = False p = {} while a is False: response = org_client.list_accounts(**p) for account in response.get('Accounts', []): if account.get('Name') == account_name: a = account p['NextToken'] = response.get('NextToken', False) if a is False and p['NextToken'] is False: raise Exception("Could not find account") response_data = org_client.describe_account(AccountId=a.get('Id')).get('Account') del response_data['JoinedTimestamp'] else: # delete / update pass logger.info('response_data {}'.format(response_data)) cfnresponse.send(event, context, cfnresponse.SUCCESS, response_data, response_data['Id']) Role: Type: AWS::IAM::Role Description: | IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. Properties: Path: /aws-control-tower-augmented-account-factory/ Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref AssumableRoleInRootAccountArn AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - lambda.amazonaws.com Action: - sts:AssumeRole ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Outputs: AccountDetailsToAWSAccountIdCustomResourceArn: Description: | Outputs the Function Arn so others can use it Value: !GetAtt Function.Arn ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-type-to-organizational-unit-chooser/v1/README.md ================================================ # product.template # Description Takes the given account type and returns the organizational unit it should be assigned to ## Parameters The list of parameters for this template: ## Resources The list of resources this template creates: ### Function Type: AWS::Lambda::Function Description: Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids ### Role Type: AWS::IAM::Role Description: IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. ## Outputs The list of outputs this template exposes: ### AccountTypeToOrganizationalUnitIdCustomResourceArn Description: Outputs the Function Arn so others can use it ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-type-to-organizational-unit-chooser/v1/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Takes the given account type and returns the organizational unit it should be assigned to Resources: Function: Description: | Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids Type: AWS::Lambda::Function Properties: FunctionName: 'account-type-to-organizational-unit-id' Handler: index.lambda_handler Timeout: 3 Role: !GetAtt Role.Arn Runtime: python3.7 Code: ZipFile: | import logging import cfnresponse logger = logging.getLogger() logger.setLevel(logging.INFO) DEFAULT_OU_ID = 'ou-root' organizational_unit_ids = { 'dev': 'ou-dev', 'test': 'ou-test', 'pre-prod': 'ou-pre-prod', 'prod': 'ou-prod', } def lambda_handler(event, context): logger.info('got event {}'.format(event)) response_data = {} if event['RequestType'] == 'Create': account_type = event['ResourceProperties'].get('AccountType') organizational_unit_id = organizational_unit_ids.get(account_type, DEFAULT_OU_ID) response_data['OrganizationalUnitId'] = organizational_unit_id else: # delete / update pass logger.info('response_data {}'.format(response_data)) cfnresponse.send(event, context, cfnresponse.SUCCESS, response_data, response_data['OrganizationalUnitId']) Role: Type: AWS::IAM::Role Description: | IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. Properties: Path: /aws-control-tower-augmented-account-factory/ AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - lambda.amazonaws.com Action: - sts:AssumeRole ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Outputs: AccountTypeToOrganizationalUnitIdCustomResourceArn: Description: | Outputs the Function Arn so others can use it Value: !GetAtt Function.Arn ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-type-to-organizational-unit-chooser/v2/README.md ================================================ # product.template # Description Takes the given account type and platform name and returns the organizational unit it should be assigned to ## Parameters The list of parameters for this template: ## Resources The list of resources this template creates: ### Function Type: AWS::Lambda::Function Description: Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids ### Role Type: AWS::IAM::Role Description: IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. ## Outputs The list of outputs this template exposes: ### AccountTypeToOrganizationalUnitIdCustomResourceArn Description: Outputs the Function Arn so others can use it ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-type-to-organizational-unit-chooser/v2/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Takes the given account type and returns the organizational unit it should be assigned to {"version": "v2", "framework": "servicecatalog-products", "role": "product", "product-set": "aws-control-tower-augmented-account-factory", "product": "account-type-to-organizational-unit-chooser"} Resources: Function: Description: | Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids Type: AWS::Lambda::Function Properties: FunctionName: 'account-type-to-organizational-unit-id' Handler: index.lambda_handler Timeout: 3 Role: !GetAtt Role.Arn Runtime: python3.7 Code: ZipFile: | import logging import cfnresponse logger = logging.getLogger() logger.setLevel(logging.INFO) DEFAULT_OU_ID = 'ou-root' organizational_unit_ids = { 'platform_1': { 'dev': 'ou-dev', 'test': 'ou-test', 'pre-prod': 'ou-pre-prod', 'prod': 'ou-prod', } } def lambda_handler(event, context): logger.info('got event {}'.format(event)) response_data = {} if event['RequestType'] == 'Create': account_type = event['ResourceProperties'].get('AccountType') platform_name = event['ResourceProperties'].get('PlatformName') organizational_unit_id = organizational_unit_ids.get(platform_name, {}).get(account_type, DEFAULT_OU_ID) response_data['OrganizationalUnitId'] = organizational_unit_id else: # delete / update pass logger.info('response_data {}'.format(response_data)) cfnresponse.send(event, context, cfnresponse.SUCCESS, response_data, response_data['OrganizationalUnitId']) Role: Type: AWS::IAM::Role Description: | IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. Properties: Path: /aws-control-tower-augmented-account-factory/ AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - lambda.amazonaws.com Action: - sts:AssumeRole ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Outputs: AccountTypeToOrganizationalUnitIdCustomResourceArn: Description: | Outputs the Function Arn so others can use it Value: !GetAtt Function.Arn ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-type-to-organizational-unit-chooser/v3/README.md ================================================ # product.template # Description Takes the given account type and platform name and returns the organizational unit it should be assigned to ## Parameters The list of parameters for this template: ## Resources The list of resources this template creates: ### Function Type: AWS::Lambda::Function Description: Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids ### Role Type: AWS::IAM::Role Description: IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. ## Outputs The list of outputs this template exposes: ### AccountTypeToOrganizationalUnitIdCustomResourceArn Description: Outputs the Function Arn so others can use it ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-type-to-organizational-unit-chooser/v3/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Takes the given account type and returns the organizational unit it should be assigned to {"version": "v3", "framework": "servicecatalog-products", "role": "product", "product-set": "aws-control-tower-augmented-account-factory", "product": "account-type-to-organizational-unit-chooser"} Resources: Function: Description: | Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids Type: AWS::Lambda::Function Properties: FunctionName: 'account-type-to-organizational-unit-id' Handler: index.lambda_handler Timeout: 3 Role: !GetAtt Role.Arn Runtime: python3.7 Code: ZipFile: | import logging import cfnresponse logger = logging.getLogger() logger.setLevel(logging.INFO) DEFAULT_OU_NAME = 'Root' organizational_unit_names = { 'platform_1': { 'dev': 'Root', 'test': 'Root', 'pre-prod': 'Root', 'prod': 'Root', } } def lambda_handler(event, context): logger.info('got event {}'.format(event)) response_data = {} if event['RequestType'] == 'Create': account_type = event['ResourceProperties'].get('AccountType') platform_name = event['ResourceProperties'].get('PlatformName') organizational_unit_name = organizational_unit_names.get(platform_name, {}).get(account_type, DEFAULT_OU_NAME) response_data['OrganizationalUnitName'] = organizational_unit_name else: # delete / update pass logger.info('response_data {}'.format(response_data)) cfnresponse.send(event, context, cfnresponse.SUCCESS, response_data, response_data['OrganizationalUnitName']) Role: Type: AWS::IAM::Role Description: | IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. Properties: Path: /aws-control-tower-augmented-account-factory/ AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - lambda.amazonaws.com Action: - sts:AssumeRole ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Outputs: AccountTypeToOrganizationalUnitIdCustomResourceArn: Description: | Outputs the Function Arn so others can use it Value: !GetAtt Function.Arn ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-type-to-organizational-unit-chooser/v4/README.md ================================================ # product.template # Description Takes the given account type and platform name and returns the organizational unit it should be assigned to ## Parameters The list of parameters for this template: ## Resources The list of resources this template creates: ### Function Type: AWS::Lambda::Function Description: Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids ### Role Type: AWS::IAM::Role Description: IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. ## Outputs The list of outputs this template exposes: ### AccountTypeToOrganizationalUnitIdCustomResourceArn Description: Outputs the Function Arn so others can use it ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/account-type-to-organizational-unit-chooser/v4/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Takes the given account type and returns the organizational unit it should be assigned to {"version": "v4", "framework": "servicecatalog-products", "role": "product", "product-set": "aws-control-tower-augmented-account-factory", "product": "account-type-to-organizational-unit-chooser"} Resources: Function: Description: | Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids Type: AWS::Lambda::Function Properties: FunctionName: 'account-type-to-organizational-unit-id' Handler: index.lambda_handler Timeout: 3 Role: !GetAtt Role.Arn Runtime: python3.7 Code: ZipFile: | import logging import cfnresponse logger = logging.getLogger() logger.setLevel(logging.INFO) DEFAULT_OU_NAME = 'Root' organizational_unit_names = { 'group-1': { 'dev': 'Root', 'test': 'Root', 'pre-prod': 'Root', 'prod': 'Root', } } def lambda_handler(event, context): logger.info('got event {}'.format(event)) response_data = {} if event['RequestType'] == 'Create': account_type = event['ResourceProperties'].get('AccountType') account_group = event['ResourceProperties'].get('AccountGroup') organizational_unit_name = organizational_unit_names.get(account_group, {}).get(account_type, DEFAULT_OU_NAME) response_data['OrganizationalUnitName'] = organizational_unit_name else: # delete / update pass logger.info('response_data {}'.format(response_data)) cfnresponse.send(event, context, cfnresponse.SUCCESS, response_data, response_data['OrganizationalUnitName']) Role: Type: AWS::IAM::Role Description: | IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. Properties: Path: /aws-control-tower-augmented-account-factory/ AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - lambda.amazonaws.com Action: - sts:AssumeRole ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Outputs: AccountTypeToOrganizationalUnitIdCustomResourceArn: Description: | Outputs the Function Arn so others can use it Value: !GetAtt Function.Arn ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/augmented-account-factory/v1/README.md ================================================ # product.template # Description Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS and returns the account id as an output ## Parameters The list of parameters for this template: ### AccountName Type: String Description: The AWS Account Name ### AccountEmail Type: String Description: The account email. This must be unique across AWS and must already exist. ### SSOUserFirstName Type: String Description: SSO user first name. ### SSOUserLastName Type: String Description: SSO user last name. ### SSOUserEmail Type: String Description: SSO user email. A new SSO user will be created for this email, if it does not exist. This SSO user will be associated with the new managed Account. ### AccountType Type: String ## Resources The list of resources this template creates: ### OUDetails Type: Custom::Resource ### TriggerCoreAccountFactory Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct ### AccountDetails Type: Custom::Resource ### Notifier Type: Custom::Resource ## Outputs The list of outputs this template exposes: ### AccountId Description: AccountId for the newly created AWS Account ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/augmented-account-factory/v1/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS and returns the account id as an output Parameters: AccountName: Description: The AWS Account Name Type: String AllowedPattern: '[a-zA-Z0-9][a-zA-Z0-9._-]*' AccountEmail: Description: The account email. This must be unique across AWS and must already exist. Type: String AllowedPattern: '[^\s@]+@[^\s@]+\.[^\s@]+' SSOUserFirstName: Description: SSO user first name. Type: String AllowedPattern: .+ SSOUserLastName: Description: SSO user last name. Type: String AllowedPattern: .+ SSOUserEmail: Description: >- SSO user email. A new SSO user will be created for this email, if it does not exist. This SSO user will be associated with the new managed Account. Type: String AllowedPattern: '[^\s@]+@[^\s@]+\.[^\s@]+' AccountType: Type: String AllowedValues: - dev - test - preprod - prod Resources: OUDetails: Type: Custom::Resource DependsOn: TriggerCoreAccountFactory Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-type-to-organizational-unit-id" AccountType: !Ref AccountType TriggerCoreAccountFactory: Type: 'AWS::ServiceCatalog::CloudFormationProvisionedProduct' DeletionPolicy: Retain Properties: ProductName: AWS Control Tower Account Factory ProvisioningArtifactName: AWS Control Tower Account Factory ProvisionedProductName: !Sub - 'Account-${AccountName}' - {} ProvisioningParameters: - Key: AccountName Value: !Ref AccountName - Key: AccountEmail Value: !Ref AccountEmail - Key: SSOUserFirstName Value: !Ref SSOUserFirstName - Key: SSOUserLastName Value: !Ref SSOUserLastName - Key: SSOUserEmail Value: !Ref SSOUserEmail - Key: ManagedOrganizationalUnit Value: !GetAtt OUDetails.OrganizationalUnitId AccountDetails: Type: Custom::Resource DependsOn: TriggerCoreAccountFactory Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-details-to-aws-account-id" AccountName: !Ref AccountName Notifier: Type: Custom::Resource DependsOn: - AccountDetails - OUDetails Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-creation-notifier" AccountName: !Ref AccountName AccountEmail: !Ref AccountEmail SSOUserFirstName: !Ref SSOUserFirstName SSOUserLastName: !Ref SSOUserLastName SSOUserEmail: !Ref SSOUserEmail ManagedOrganizationalUnit: !GetAtt OUDetails.OrganizationalUnitId AccountId: !GetAtt AccountDetails.Id Outputs: AccountId: Description: | AccountId for the newly created AWS Account Value: !GetAtt AccountDetails.Id ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/augmented-account-factory/v2/README.md ================================================ # product.template # Description Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS and returns the account id as an output ## Parameters The list of parameters for this template: ### AccountName Type: String Description: The AWS Account Name ### AccountEmail Type: String Description: The account email. This must be unique across AWS and must already exist. ### SSOUserFirstName Type: String Description: SSO user first name. ### SSOUserLastName Type: String Description: SSO user last name. ### SSOUserEmail Type: String Description: SSO user email. A new SSO user will be created for this email, if it does not exist. This SSO user will be associated with the new managed Account. ### AccountType Type: String ## Resources The list of resources this template creates: ### OUDetails Type: Custom::Resource ### TriggerCoreAccountFactory Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct ### AccountDetails Type: Custom::Resource ### Notifier Type: Custom::Resource ## Outputs The list of outputs this template exposes: ### AccountId Description: AccountId for the newly created AWS Account ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/augmented-account-factory/v2/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS and returns the account id as an output Parameters: AccountName: Description: The AWS Account Name Type: String AllowedPattern: '[a-zA-Z0-9][a-zA-Z0-9._-]*' AccountEmail: Description: The account email. This must be unique across AWS and must already exist. Type: String AllowedPattern: '[^\s@]+@[^\s@]+\.[^\s@]+' SSOUserFirstName: Description: SSO user first name. Type: String AllowedPattern: .+ SSOUserLastName: Description: SSO user last name. Type: String AllowedPattern: .+ SSOUserEmail: Description: >- SSO user email. A new SSO user will be created for this email, if it does not exist. This SSO user will be associated with the new managed Account. Type: String AllowedPattern: '[^\s@]+@[^\s@]+\.[^\s@]+' AccountType: Type: String Description: >- Which stage of the SDLC is the account going to be used for AllowedValues: - dev - test - preprod - prod PlatformName: Type: String Description: >- Which platform does the account belong to AllowedValues: - dev - test - preprod - prod Resources: OUDetails: Type: Custom::Resource DependsOn: TriggerCoreAccountFactory Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-type-to-organizational-unit-id" AccountType: !Ref AccountType PlatformName: !Ref PlatformName TriggerCoreAccountFactory: Type: 'AWS::ServiceCatalog::CloudFormationProvisionedProduct' DeletionPolicy: Retain Properties: ProductName: AWS Control Tower Account Factory ProvisioningArtifactName: AWS Control Tower Account Factory ProvisionedProductName: !Sub - 'Account-${AccountName}' - {} ProvisioningParameters: - Key: AccountName Value: !Ref AccountName - Key: AccountEmail Value: !Ref AccountEmail - Key: SSOUserFirstName Value: !Ref SSOUserFirstName - Key: SSOUserLastName Value: !Ref SSOUserLastName - Key: SSOUserEmail Value: !Ref SSOUserEmail - Key: ManagedOrganizationalUnit Value: !GetAtt OUDetails.OrganizationalUnitId AccountDetails: Type: Custom::Resource DependsOn: TriggerCoreAccountFactory Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-details-to-aws-account-id" AccountName: !Ref AccountName Notifier: Type: Custom::Resource DependsOn: - AccountDetails - OUDetails Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-creation-notifier" AccountName: !Ref AccountName AccountEmail: !Ref AccountEmail SSOUserFirstName: !Ref SSOUserFirstName SSOUserLastName: !Ref SSOUserLastName SSOUserEmail: !Ref SSOUserEmail ManagedOrganizationalUnit: !GetAtt OUDetails.OrganizationalUnitId AccountId: !GetAtt AccountDetails.Id Outputs: AccountId: Description: | AccountId for the newly created AWS Account Value: !GetAtt AccountDetails.Id ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/augmented-account-factory/v3/README.md ================================================ # product.template # Description Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS and returns the account id as an output ## Parameters The list of parameters for this template: ### AccountName Type: String Description: The AWS Account Name ### AccountEmail Type: String Description: The account email. This must be unique across AWS and must already exist. ### SSOUserFirstName Type: String Description: SSO user first name. ### SSOUserLastName Type: String Description: SSO user last name. ### SSOUserEmail Type: String Description: SSO user email. A new SSO user will be created for this email, if it does not exist. This SSO user will be associated with the new managed Account. ### AccountType Type: String ## Resources The list of resources this template creates: ### OUDetails Type: Custom::Resource ### TriggerCoreAccountFactory Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct ### AccountDetails Type: Custom::Resource ### Notifier Type: Custom::Resource ## Outputs The list of outputs this template exposes: ### AccountId Description: AccountId for the newly created AWS Account ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/augmented-account-factory/v3/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS and returns the account id as an output Parameters: AccountName: Description: The AWS Account Name Type: String AllowedPattern: '[a-zA-Z0-9][a-zA-Z0-9._-]*' AccountEmail: Description: The account email. This must be unique across AWS and must already exist. Type: String AllowedPattern: '[^\s@]+@[^\s@]+\.[^\s@]+' SSOUserFirstName: Description: SSO user first name. Type: String AllowedPattern: .+ SSOUserLastName: Description: SSO user last name. Type: String AllowedPattern: .+ SSOUserEmail: Description: >- SSO user email. A new SSO user will be created for this email, if it does not exist. This SSO user will be associated with the new managed Account. Type: String AllowedPattern: '[^\s@]+@[^\s@]+\.[^\s@]+' AccountType: Type: String Description: >- Which stage of the SDLC is the account going to be used for AllowedValues: - dev - test - preprod - prod PlatformName: Type: String Description: >- Which platform does the account belong to AllowedValues: - dev - test - preprod - prod Resources: OUDetails: Type: Custom::Resource DependsOn: TriggerCoreAccountFactory Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-type-to-organizational-unit-id" AccountType: !Ref AccountType PlatformName: !Ref PlatformName TriggerCoreAccountFactory: Type: 'AWS::ServiceCatalog::CloudFormationProvisionedProduct' DeletionPolicy: Retain Properties: ProductName: AWS Control Tower Account Factory ProvisioningArtifactName: AWS Control Tower Account Factory ProvisionedProductName: !Sub - 'Account-${AccountName}' - {} ProvisioningParameters: - Key: AccountName Value: !Ref AccountName - Key: AccountEmail Value: !Ref AccountEmail - Key: SSOUserFirstName Value: !Ref SSOUserFirstName - Key: SSOUserLastName Value: !Ref SSOUserLastName - Key: SSOUserEmail Value: !Ref SSOUserEmail - Key: ManagedOrganizationalUnit Value: !GetAtt OUDetails.OrganizationalUnitId AccountDetails: Type: Custom::Resource DependsOn: TriggerCoreAccountFactory Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-details-to-aws-account-id" AccountName: !Ref AccountName Notifier: Type: Custom::Resource DependsOn: - AccountDetails - OUDetails Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-creation-notifier" AccountName: !Ref AccountName AccountEmail: !Ref AccountEmail SSOUserFirstName: !Ref SSOUserFirstName SSOUserLastName: !Ref SSOUserLastName SSOUserEmail: !Ref SSOUserEmail ManagedOrganizationalUnit: !GetAtt OUDetails.OrganizationalUnitId AccountId: !GetAtt AccountDetails.Id Bootstraper: Type: Custom::CustomResource Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-bootstrapper" TargetAccountId: !GetAtt AccountDetails.Id Outputs: AccountId: Description: | AccountId for the newly created AWS Account Value: !GetAtt AccountDetails.Id ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/augmented-account-factory/v4/README.md ================================================ # product.template # Description Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS and returns the account id as an output ## Parameters The list of parameters for this template: ### AccountName Type: String Description: The AWS Account Name ### AccountEmail Type: String Description: The account email. This must be unique across AWS and must already exist. ### SSOUserFirstName Type: String Description: SSO user first name. ### SSOUserLastName Type: String Description: SSO user last name. ### SSOUserEmail Type: String Description: SSO user email. A new SSO user will be created for this email, if it does not exist. This SSO user will be associated with the new managed Account. ### AccountType Type: String ## Resources The list of resources this template creates: ### OUDetails Type: Custom::Resource ### TriggerCoreAccountFactory Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct ### AccountDetails Type: Custom::Resource ### Notifier Type: Custom::Resource ## Outputs The list of outputs this template exposes: ### AccountId Description: AccountId for the newly created AWS Account ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/augmented-account-factory/v4/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS and returns the account id as an output {"version": "v4", "framework": "servicecatalog-products", "role": "product", "product-set": "aws-control-tower-augmented-account-factory", "product": "augmented-account-factory"} Parameters: AccountName: Description: The AWS Account Name Type: String AllowedPattern: '[a-zA-Z0-9][a-zA-Z0-9._-]*' AccountEmail: Description: The account email. This must be unique across AWS and must already exist. Type: String AllowedPattern: '[^\s@]+@[^\s@]+\.[^\s@]+' SSOUserFirstName: Description: SSO user first name. Type: String AllowedPattern: .{3,64} SSOUserLastName: Description: SSO user last name. Type: String AllowedPattern: .{3,64} SSOUserEmail: Description: >- SSO user email. A new SSO user will be created for this email, if it does not exist. This SSO user will be associated with the new managed Account. Type: String AllowedPattern: '[^\s@]+@[^\s@]+\.[^\s@]+' AccountType: Type: String Description: >- Which stage of the SDLC is the account going to be used for AllowedValues: - dev - test - preprod - prod PlatformName: Type: String Description: >- Which platform does the account belong to AllowedValues: - dev - test - preprod - prod Resources: OUDetails: Type: Custom::Resource DeletionPolicy: Retain Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-type-to-organizational-unit-id" AccountType: !Ref AccountType PlatformName: !Ref PlatformName TriggerCoreAccountFactory: Type: 'AWS::ServiceCatalog::CloudFormationProvisionedProduct' DeletionPolicy: Retain Properties: ProductName: AWS Control Tower Account Factory ProvisioningArtifactName: AWS Control Tower Account Factory ProvisionedProductName: !Sub - 'Account-${AccountName}' - {} ProvisioningParameters: - Key: AccountName Value: !Ref AccountName - Key: AccountEmail Value: !Ref AccountEmail - Key: SSOUserFirstName Value: !Ref SSOUserFirstName - Key: SSOUserLastName Value: !Ref SSOUserLastName - Key: SSOUserEmail Value: !Ref SSOUserEmail - Key: ManagedOrganizationalUnit Value: !GetAtt OUDetails.OrganizationalUnitName AccountDetails: Type: Custom::Resource DeletionPolicy: Retain DependsOn: TriggerCoreAccountFactory Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-details-to-aws-account-id" AccountName: !Ref AccountName Notifier: Type: Custom::Resource DeletionPolicy: Retain Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-creation-notifier" AccountName: !Ref AccountName AccountEmail: !Ref AccountEmail SSOUserFirstName: !Ref SSOUserFirstName SSOUserLastName: !Ref SSOUserLastName SSOUserEmail: !Ref SSOUserEmail ManagedOrganizationalUnit: !GetAtt OUDetails.OrganizationalUnitName AccountId: !GetAtt AccountDetails.Id Bootstraper: Type: Custom::CustomResource DeletionPolicy: Retain DependsOn: TriggerCoreAccountFactory Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-bootstrapper" TargetAccountId: !GetAtt AccountDetails.Id Outputs: AccountId: Description: | AccountId for the newly created AWS Account Value: !GetAtt AccountDetails.Id AccountOrganizationalUnitName: Description: | OrganizationalUnitName for the newly created AWS Account Value: !GetAtt OUDetails.OrganizationalUnitName ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/augmented-account-factory/v5/README.md ================================================ # product.template # Description Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS and returns the account id as an output ## Parameters The list of parameters for this template: ### AccountName Type: String Description: The AWS Account Name ### AccountEmail Type: String Description: The account email. This must be unique across AWS and must already exist. ### SSOUserFirstName Type: String Description: SSO user first name. ### SSOUserLastName Type: String Description: SSO user last name. ### SSOUserEmail Type: String Description: SSO user email. A new SSO user will be created for this email, if it does not exist. This SSO user will be associated with the new managed Account. ### AccountType Type: String ## Resources The list of resources this template creates: ### OUDetails Type: Custom::Resource ### TriggerCoreAccountFactory Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct ### AccountDetails Type: Custom::Resource ### Notifier Type: Custom::Resource ## Outputs The list of outputs this template exposes: ### AccountId Description: AccountId for the newly created AWS Account ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/augmented-account-factory/v5/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS and returns the account id as an output {"version": "v5", "framework": "servicecatalog-products", "role": "product", "product-set": "aws-control-tower-augmented-account-factory", "product": "augmented-account-factory"} Parameters: AccountName: Description: The AWS Account Name Type: String AllowedPattern: '[a-zA-Z0-9][a-zA-Z0-9._-]*' AccountEmail: Description: The account email. This must be unique across AWS and must already exist. Type: String AllowedPattern: '[^\s@]+@[^\s@]+\.[^\s@]+' SSOUserFirstName: Description: SSO user first name. Type: String AllowedPattern: .{3,64} SSOUserLastName: Description: SSO user last name. Type: String AllowedPattern: .{3,64} SSOUserEmail: Description: >- SSO user email. A new SSO user will be created for this email, if it does not exist. This SSO user will be associated with the new managed Account. Type: String AllowedPattern: '[^\s@]+@[^\s@]+\.[^\s@]+' AccountType: Type: String Description: >- Which stage of the SDLC is the account going to be used for AllowedValues: - dev - test - preprod - prod AccountGroup: Type: String Description: >- Which platform does the account belong to AllowedValues: - dev - test - preprod - prod Resources: OUDetails: Type: Custom::Resource DeletionPolicy: Retain Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-type-to-organizational-unit-id" AccountType: !Ref AccountType AccountGroup: !Ref AccountGroup TriggerCoreAccountFactory: Type: 'AWS::ServiceCatalog::CloudFormationProvisionedProduct' DeletionPolicy: Retain Properties: ProductName: AWS Control Tower Account Factory ProvisioningArtifactName: AWS Control Tower Account Factory ProvisionedProductName: !Sub - 'Account-${AccountName}' - {} ProvisioningParameters: - Key: AccountName Value: !Ref AccountName - Key: AccountEmail Value: !Ref AccountEmail - Key: SSOUserFirstName Value: !Ref SSOUserFirstName - Key: SSOUserLastName Value: !Ref SSOUserLastName - Key: SSOUserEmail Value: !Ref SSOUserEmail - Key: ManagedOrganizationalUnit Value: !GetAtt OUDetails.OrganizationalUnitName AccountDetails: Type: Custom::Resource DeletionPolicy: Retain DependsOn: TriggerCoreAccountFactory Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-details-to-aws-account-id" AccountName: !Ref AccountName Notifier: Type: Custom::Resource DeletionPolicy: Retain Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-creation-notifier" AccountName: !Ref AccountName AccountEmail: !Ref AccountEmail SSOUserFirstName: !Ref SSOUserFirstName SSOUserLastName: !Ref SSOUserLastName SSOUserEmail: !Ref SSOUserEmail ManagedOrganizationalUnit: !GetAtt OUDetails.OrganizationalUnitName AccountId: !GetAtt AccountDetails.Id Bootstraper: Type: Custom::CustomResource DeletionPolicy: Retain DependsOn: TriggerCoreAccountFactory Properties: ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:account-bootstrapper" TargetAccountId: !GetAtt AccountDetails.Id Outputs: AccountId: Description: | AccountId for the newly created AWS Account Value: !GetAtt AccountDetails.Id AccountOrganizationalUnitName: Description: | OrganizationalUnitName for the newly created AWS Account Value: !GetAtt OUDetails.OrganizationalUnitName ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: account-type-to-organizational-unit-chooser: portfolio: demo-central-it-team-portfolio product: account-type-to-organizational-unit-chooser version: v4 account-details-to-aws-account-id: portfolio: demo-central-it-team-portfolio product: account-details-to-aws-account-id version: v1 parameters: AssumableRoleInRootAccountArn: default: SET_ME account-creation-notifier: portfolio: demo-central-it-team-portfolio product: account-creation-notifier version: v1 account-bootstrap-shared: portfolio: demo-central-it-team-portfolio product: account-bootstrap-shared version: v3 parameters: PuppetAccountId: Default: set me PuppetVersion: Default: set me account-001: portfolio: demo-central-it-team-portfolio product: augmented-account-factory version: v5 depends_on: - account-type-to-organizational-unit-chooser - account-details-to-aws-account-id - account-creation-notifier - account-bootstrap-shared parameters: AccountName: Default: set me AccountEmail: Default: set me SSOUserFirstName: Default: set me SSOUserLastName: Default: set me SSOUserEmail: Default: set me AccountType: Default: set me PlatformName: Default: set me ================================================ FILE: unsorted/aws-control-tower-augmented-account-factory/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: account-type-to-organizational-unit-chooser Owner: central-it@customer.com Description: Takes the given account type and returns the organizational unit it should be assigned to Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/util Tags: - Key: product-type Value: util Versions: - Name: v4 Description: Takes the given account type and returns the organizational unit it should be assigned to Active: True Source: Provider: CodeCommit Configuration: RepositoryName: account-type-to-organizational-unit-chooser BranchName: v4 - Name: account-details-to-aws-account-id Owner: central-it@customer.com Description: Takes the given 'AccountName' and returns the account details Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/util Tags: - Key: product-type Value: util Versions: - Name: v1 Description: Takes the given 'AccountName' and returns the account details Active: True Source: Provider: CodeCommit Configuration: RepositoryName: account-details-to-aws-account-id BranchName: v1 - Name: account-creation-notifier Owner: central-it@customer.com Description: Creates lambda to be used to back a custom resource. It allows the dispatch of extra parameters via SNS Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/util Tags: - Key: product-type Value: util Versions: - Name: v1 Description: Creates lambda to be used to back a custom resource. It allows the dispatch of extra parameters via SNS Active: True Source: Provider: CodeCommit Configuration: RepositoryName: account-creation-notifier BranchName: v1 - Name: account-bootstrap-shared Owner: central-it@customer.com Description: Creates lambda to be used to back a custom resource. It bootstraps new accounts Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/util Tags: - Key: product-type Value: util Versions: - Name: v3 Description: Creates lambda to be used to back a custom resource. It bootstraps new accounts Active: True Source: Provider: CodeCommit Configuration: RepositoryName: account-bootstrap-shared BranchName: v3 BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.x build: commands: - pip install -r requirements.txt -t src {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' - Name: augmented-account-factory Owner: central-it@customer.com Description: Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS and returns the account id as an output Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/util Tags: - Key: product-type Value: util Versions: - Name: v5 Description: Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS and returns the account id as an output Active: True Source: Provider: CodeCommit Configuration: RepositoryName: augmented-account-factory BranchName: v5 ================================================ FILE: unsorted/aws-iam/README.md ================================================ # aws-iam This is a solution to help deliver useful IAM roles ## Description Deploys a configurable IAM Group/Role strategy that allows users to assume roles into other accounts from the security account. Using IAM Groups ensures permissions are for users in those assumed roles are locked down. ## Install Instructions ```bash aws codecommit create-repository --repository-name aws-iam-assume-roles-spoke git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/aws-iam-assume-roles-spoke svn export https://github.com/awslabs/aws-service-catalog-products/trunk/aws-iam/assume-roles-spoke/v1 aws-iam-assume-roles-spoke --force aws codecommit create-repository --repository-name aws-iam-groups-security-account git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/aws-iam-groups-security-account svn export https://github.com/awslabs/aws-service-catalog-products/trunk/aws-iam/groups-security-account/v1 aws-iam-groups-security-account --force ``` ================================================ FILE: unsorted/aws-iam/assume-roles-spoke/v1/README.md ================================================ # product.template # Description Creates IAM Roles for OpsAdmin, FinOps and Security Team Members in the Account which can be assumed by Users coming from **a** Security Account. Note that the OpsAdmin role has a policy attached limiting it to only being able to launch a specific instance. This is just a reference to what you could do to avoid FULL Administrator Access. ## Parameters The list of parameters for this template: ### SecurityAccountId Type: String Description: 12 Digit Account Number of the Security Account ## Resources The list of resources this template creates: ### IT-OpsAdminRole Type: AWS::IAM::Role ### PolicyForAdmins Type: AWS::IAM::Policy ### IT-FinOpsRole Type: AWS::IAM::Role ### PolicyForFinops Type: AWS::IAM::Policy ### IT-SecurityRole Type: AWS::IAM::Role ## Outputs The list of outputs this template exposes: ================================================ FILE: unsorted/aws-iam/assume-roles-spoke/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Creates IAM Roles in the Account which can be assumed by Users coming from Security Account Parameters: SecurityAccountId: Type: String Description: 12 Digit Account Number of the Security Account Resources: OpsAdminRole: Type: 'AWS::IAM::Role' Properties: RoleName: IT-OpsAdminRole AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: 'sts:AssumeRole' Principal: AWS: !Ref SecurityAccountId PolicyForAdmin: Type: 'AWS::IAM::Policy' Properties: PolicyName: "IT-PolicyForAdmin" PolicyDocument: Version: "2012-10-17" Statement: - Effect: Deny Action: 'ec2:RunInstances' NotResource: - 'arn:aws:ec2:*:*:subnet/*' - 'arn:aws:ec2:*::image/ami-01f3682deed220c2a' - 'arn:aws:ec2:*:*:volume/*' - 'arn:aws:ec2:*:*:instance/*' - 'arn:aws:ec2:*:*:network-interface/*' - 'arn:aws:ec2:*:*:security-group/*' - Effect: Allow Action: '*' Resource: '*' Roles: - !Ref OpsAdminRole FinOpsRole: Type: 'AWS::IAM::Role' Properties: RoleName: IT-FinOpsRole AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: 'sts:AssumeRole' Principal: AWS: !Ref SecurityAccountId PolicyForFinops: Type: 'AWS::IAM::Policy' Properties: PolicyName: "IT-PolicyForFinops" PolicyDocument: Version: "2012-10-17" Statement: - Sid: "BillingPolicy" Action: - "aws-portal:ModifyBilling" - "aws-portal:ModifyPaymentMethods" - "aws-portal:ViewAccount" - "aws-portal:ViewBilling" - "aws-portal:ViewPaymentMethods" - "aws-portal:ViewUsage" Effect: "Allow" Resource: "*" Roles: - !Ref FinOpsRole SecurityRole: Type: 'AWS::IAM::Role' Properties: RoleName: IT-SecurityRole ManagedPolicyArns: - "arn:aws:iam::aws:policy/SecurityAudit" AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: 'sts:AssumeRole' Principal: AWS: !Ref SecurityAccountId ================================================ FILE: unsorted/aws-iam/groups-security-account/v1/README.md ================================================ # product.template # Description Creates the IAM Groups in the security Account ## Parameters The list of parameters for this template: ### FinOpsGroupName Type: String Default: FinOpsGroup Description: Name of the FinOps ### SecurityTeamGroupName Type: String Default: SecurityTeamGroup Description: Name of the Security Team Group ### OAdminTeamGroupName Type: String Default: OSSAdminTeam Description: Name of the Security Team Group ## Resources The list of resources this template creates: ### IT-AdminGroup Type: AWS::IAM::Group ### IT-FinOpsGroup Type: AWS::IAM::Group ### IT-SecurityTeamGroup Type: AWS::IAM::Group ## Outputs The list of outputs this template exposes: None ================================================ FILE: unsorted/aws-iam/groups-security-account/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Creates the IAM Groups in the security Account Parameters: FinOpsGroupName: Type: String Description: Name of the FinOps Default: IT-FinOpsGroup SecurityTeamGroupName: Type: String Description: Name of the Security Team Group Default: IT-SecurityTeamGroup OpsAdminTeamGroupName: Type: String Description: Name of the Security Team Group Default: IT-OpsAdminTeam Resources: OpsAdminGroup: Type: AWS::IAM::Group Properties: GroupName: !Ref OpsAdminTeamGroupName Policies: - PolicyName: IT-OpsAdminAssumePolicy PolicyDocument: Version: '2012-10-17' Statement: - Sid: ITAdminAssume Effect: Allow Action: sts:AssumeRole Resource: arn:aws:iam::*:role/IT-OpsAdminRole FinOpsGroup: Type: AWS::IAM::Group Properties: GroupName: !Ref FinOpsGroupName Policies: - PolicyName: FinOpsAssumePolicy PolicyDocument: Version: '2012-10-17' Statement: - Sid: ITFinOpsAssume Effect: Allow Action: sts:AssumeRole Resource: arn:aws:iam::*:role/IT-FinOpsRole SecurityTeamGroup: Type: AWS::IAM::Group Properties: GroupName: !Ref SecurityTeamGroupName Policies: - PolicyName: SecurityTeamAssumePolicy PolicyDocument: Version: '2012-10-17' Statement: - Sid: SecurityTeamAssume Effect: Allow Action: sts:AssumeRole Resource: arn:aws:iam::*:role/IT-SecurityRole ================================================ FILE: unsorted/aws-iam/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: iam-assume-roles-spoke: portfolio: demo-central-it-team-portfolio product: aws-iam-assume-roles-spoke version: v1 deploy_to: tags: - regions: default_region tag: scope:all iam-groups-security-account: portfolio: demo-central-it-team-portfolio product: aws-iam-groups-security-account version: v1 deploy_to: tags: - regions: default_region tag: scope:all ================================================ FILE: unsorted/aws-iam/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: aws-iam-assume-roles-spoke Owner: central-it@customer.com Description: iam-assume-roles-spoke product Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/account-iam Tags: - Key: product-type Value: iam Versions: - Name: v1 Description: aws-iam-assume-roles-spoke Active: True Source: Provider: CodeCommit Configuration: RepositoryName: aws-iam-assume-roles-spoke BranchName: master - Name: aws-iam-groups-security-account Owner: central-it@customer.com Description: iam-groups-security-account product Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/account-iam Tags: - Key: product-type Value: iam Versions: - Name: v1 Description: iam-groups-security-account product Active: True Source: Provider: CodeCommit Configuration: RepositoryName: aws-iam-groups-security-account BranchName: master ================================================ FILE: unsorted/aws-iam-administrator-access/README.md ================================================ # aws-iam-administrator-access Creates a role with the AdministratorAccess policy and a trust policy for the given account Creates a role with the AdministratorAccess policy and a trust policy for the given service ## Description Create AdministratorAccess policy attached roles ## Install Instructions ```bash aws codecommit create-repository --repository-name aws-iam-administrator-access-assumable-role-account git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/aws-iam-administrator-access-assumable-role-account svn export https://github.com/awslabs/aws-service-catalog-products/trunk/aws-iam-administrator-access/assumable-role-account/v1 aws-iam-administrator-access-assumable-role-account --force aws codecommit create-repository --repository-name aws-iam-administrator-access-assumable-role-service git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/aws-iam-administrator-access-assumable-role-service svn export https://github.com/awslabs/aws-service-catalog-products/trunk/aws-iam-administrator-access/assumable-role-service/v1 aws-iam-administrator-access-assumable-role-service --force ``` ================================================ FILE: unsorted/aws-iam-administrator-access/assumable-role-account/v1/README.md ================================================ ================================================ FILE: unsorted/aws-iam-administrator-access/assumable-role-account/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Creates a role with the AdministratorAccess policy and a trust policy for the given account Parameters: AccountToTrust: Type: String Description: 12 Digit Account Number of the trusted account RoleName: Type: String Default: Admin Path: Type: String Default: / Resources: Role: Type: AWS::IAM::Role Properties: RoleName: !Ref RoleName Path: !Ref Path AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AccountToTrust}:root" Action: - "sts:AssumeRole" ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess Outputs: RoleArn: Description: The Arn of the Role created Value: !GetAtt Role.Arn RoleId: Description: The Id of the Role created Value: !GetAtt Role.RoleId ================================================ FILE: unsorted/aws-iam-administrator-access/assumable-role-service/v1/README.md ================================================ ================================================ FILE: unsorted/aws-iam-administrator-access/assumable-role-service/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Creates a role with the AdministratorAccess policy and a trust policy for the given service Parameters: ServiceToTrust: Type: String Description: "AWS Service to trust eg codebuild.amazonaws.com" RoleName: Type: String Default: Admin Path: Type: String Default: / Resources: Role: Type: AWS::IAM::Role Properties: RoleName: !Ref RoleName Path: !Ref Path AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - !Ref ServiceToTrust Action: - "sts:AssumeRole" ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess Outputs: RoleArn: Description: The Arn of the Role created Value: !GetAtt Role.Arn RoleId: Description: The Id of the Role created Value: !GetAtt Role.RoleId ================================================ FILE: unsorted/aws-iam-administrator-access/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: assumable-role-account: portfolio: demo-central-it-team-portfolio product: assumable-role-account version: v1 assumable-role-service: portfolio: demo-central-it-team-portfolio product: assumable-role-service version: v1 ================================================ FILE: unsorted/aws-iam-administrator-access/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: aws-iam-administrator-access-assumable-role-account Owner: central-it@customer.com Description: Creates a role with the AdministratorAccess policy and a trust policy for the given account Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/account-iam Tags: - Key: product-type Value: iam Versions: - Name: v1 Description: Creates a role with the AdministratorAccess policy and a trust policy for the given account Active: True Source: Provider: CodeCommit Configuration: RepositoryName: aws-iam-administrator-access-assumable-role-account BranchName: master - Name: aws-iam-administrator-access-assumable-role-service Owner: central-it@customer.com Description: Creates a role with the AdministratorAccess policy and a trust policy for the given service Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/account-iam Tags: - Key: product-type Value: iam Versions: - Name: v1 Description: Creates a role with the AdministratorAccess policy and a trust policy for the given service Active: True Source: Provider: CodeCommit Configuration: RepositoryName: aws-iam-administrator-access-assumable-role-service BranchName: master ================================================ FILE: unsorted/aws-servicecatalog-factory-provisioners/README.md ================================================ # aws-servicecatalog-factory-provisioners This is a solution to help deliver the IAM roles needed when provisioning Terraform products using aws-servicecatalog-factory and aws-servicecatalog-puppet ## Description Deploys an IAM role that can be used by AWS CodePipeline to build out resources using Terraform ## Install Instructions ```bash aws codecommit create-repository --repository-name aws-servicecatalog-factory-provisioners-terraform git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/aws-servicecatalog-factory-provisioners-terraform svn export https://github.com/awslabs/aws-service-catalog-products/trunk/aws-servicecatalog-factory-provisioners/terraform/v1 aws-servicecatalog-factory-provisioners-terraform --force ``` ================================================ FILE: unsorted/aws-servicecatalog-factory-provisioners/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: aws-servicecatalog-factory-provisioners-terraform: portfolio: demo-central-it-team-portfolio product: aws-servicecatalog-factory-provisioners-terraform version: v4 ================================================ FILE: unsorted/aws-servicecatalog-factory-provisioners/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: aws-servicecatalog-factory-provisioners-terraform Owner: central-it@customer.com Description: IAM roles needed in the spoke accounts to make Terraform provisioning work Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/account-iam Tags: - Key: product-type Value: iam Versions: - Name: v4 Description: IAM roles needed in the spoke accounts to make Terraform provisioning work Active: True Source: Provider: CodeCommit Configuration: RepositoryName: aws-servicecatalog-factory-provisioners-terraform BranchName: master ================================================ FILE: unsorted/aws-servicecatalog-factory-provisioners/terraform/v4/README.md ================================================ # product.template # Description Creates IAM Roles Account which can be assumed used by Service Catalog Factory to provision Terraform products ## Parameters The list of parameters for this template: ### PuppetAccountId Type: String Description: 12 Digit Account Number of the PuppetAccount ## Resources The list of resources this template creates: ### PuppetRoleForTerraform Type: AWS::IAM::Role ## Outputs The list of outputs this template exposes: ================================================ FILE: unsorted/aws-servicecatalog-factory-provisioners/terraform/v4/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Creates IAM Roles Account which can be assumed used by Service Catalog Factory to provision Terraform products Parameters: PuppetAccountId: Type: String Description: 12 Digit Account Number of the PuppetAccount Resources: PuppetRoleForTerraform: Type: AWS::IAM::Role Properties: RoleName: PuppetRoleForTerraform Path: /servicecatalog-puppet/ AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${PuppetAccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "codepipeline.amazonaws.com" Action: - "sts:AssumeRole" ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess Policies: - PolicyName: "AllowAccessToFactoryArtifacts" PolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Action: - s3:Get* - s3:List* - s3:Head* - s3:GetEncryptionConfiguration Resource: !Sub "arn:aws:s3:::sc-factory-artifacts-${PuppetAccountId}-*/*" ================================================ FILE: unsorted/cdk-support/bootstrap/v1/product.template.yaml ================================================ # Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: "2010-09-09" Description: | Bootstrap for CDK support in SCT {"framework": "servicecatalog-products", "role": "product", "product-set": "cdk-support", "product": "bootstrap", "version": "v1"} Parameters: CDKVersion: Type: "String" Default: "1.94.1" CDKDeployComputeType: Type: "String" Default: "BUILD_GENERAL1_SMALL" CDKDeployImage: Type: "String" Default: "aws/codebuild/standard:4.0" CDKToolkitStackName: Type: "String" Default: "CDKToolkit" CDKBootstrapExtraArgs: Type: "String" Default: "" IAMRolePaths: Type: "String" Default: "/servicecatalog-factory-cdk-support/" CDKInitialiserRoleName: Type: "String" Default: "CDKInitialiserRoleName" CDKStartInstallRoleName: Type: "String" Default: "CDKStartInstallRoleName" CDKDeployRoleName: Type: "String" Default: "CDKDeployRoleName" StartCDKDeployLambdaExecutionRoleName: Type: "String" Default: "StartCDKDeployLambdaExecutionRoleName" PuppetAccountId: Type: "String" Resources: InitialiserRole: Type: AWS::IAM::Role Properties: RoleName: !Ref CDKInitialiserRoleName Path: !Ref IAMRolePaths AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "codebuild.amazonaws.com" Action: - "sts:AssumeRole" ManagedPolicyArns: - !Sub "arn:${AWS::Partition}:iam::aws:policy/AdministratorAccess" Tags: - Key: "ServiceCatalogFactory:Actor" Value: "Framework" InitialiserProject: Type: AWS::CodeBuild::Project Properties: Name: servicecatalog-factory-cdk-bootstrap-initialiser Description: "Initialiser for the cdk support" ServiceRole: !GetAtt InitialiserRole.Arn Artifacts: Type: NO_ARTIFACTS Environment: Type: linuxContainer ComputeType: !Ref CDKDeployComputeType Image: !Ref CDKDeployImage EnvironmentVariables: - Name: CDK_VERSION Type: PLAINTEXT Value: !Ref CDKVersion - Name: CDK_DEPLOY_COMPUTE_TYPE Type: PLAINTEXT Value: !Ref CDKDeployComputeType - Name: CDK_DEPLOY_IMAGE Type: PLAINTEXT Value: !Ref CDKDeployImage - Name: CDK_TOOLKIT_STACK_NAME Type: PLAINTEXT Value: !Ref CDKToolkitStackName - Name: CDK_BOOTSTRAP_EXTRA_ARGS Type: PLAINTEXT Value: !Ref CDKBootstrapExtraArgs - Name: ACCOUNT_ID Type: PLAINTEXT Value: !Ref AWS::AccountId - Name: REGION Type: PLAINTEXT Value: !Ref AWS::Region Source: Type: NO_SOURCE BuildSpec: | version: 0.2 phases: install: commands: - npm install -g aws-cdk@$VERSION build: commands: - cdk bootstrap --toolkit-stack-name $CDK_TOOLKIT_STACK_NAME $CDK_BOOTSTRAP_EXTRA_ARGS aws://$ACCOUNT_ID/$REGION TimeoutInMinutes: 60 Tags: - Key: "ServiceCatalogFactory:Actor" Value: "Framework" StartInstallRole: Type: AWS::IAM::Role Properties: RoleName: !Ref CDKStartInstallRoleName Path: !Ref IAMRolePaths ManagedPolicyArns: - !Sub "arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" - !Sub "arn:${AWS::Partition}:iam::aws:policy/AWSCodeBuildDeveloperAccess" AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" StartInstallLambda: Type: AWS::Lambda::Function Properties: Role: !GetAtt StartInstallRole.Arn Handler: "index.handler" Description: Lambda for starting cdk bootstrap CodeBuild Job Runtime: python3.7 Timeout: 900 Code: ZipFile: | import boto3 import json import logging import time from urllib.request import Request, urlopen logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event['RequestType'] codebuild_projectname = event.get('ResourceProperties').get('ProjectName') try: logger.info(request_type) if request_type in ['Create', 'Update']: codebuild_client = boto3.client('codebuild') logger.info("Starting CodeBuild Job: {}".format(codebuild_projectname)) codebuild_response = codebuild_client.start_build( projectName = codebuild_projectname ) build_id = codebuild_response.get('build').get('id') build_status = 'IN_PROGRESS' while build_status == 'IN_PROGRESS': time.sleep(5) build = codebuild_client.batch_get_builds(ids=[build_id]).get('builds')[0] build_status = build.get('buildStatus') if build_status != 'SUCCEEDED': raise Exception(f"Build did not SUCCEED. Status: {build_status}") send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == 'Delete': send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) send_response(event, context,"FAILED", {"Message": "Exception"}) def send_response(e, c, rs, rd): r = json.dumps({ "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e['StackId'], "RequestId": e['RequestId'], "LogicalResourceId": e['LogicalResourceId'], "Data": rd }) d = str.encode(r) h = { 'content-type': '', 'content-length': str(len(d)) } req = Request(e['ResponseURL'], data=d, method='PUT', headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) StartInstall: Type: Custom::CustomResource DependsOn: InitialiserProject Properties: ServiceToken: !GetAtt StartInstallLambda.Arn ProjectName: !Ref InitialiserProject UpdateNonce: !Join - "," - - !Ref CDKDeployComputeType - !Ref CDKDeployImage - !Ref CDKToolkitStackName - !Ref CDKBootstrapExtraArgs StartCDKDeployLambdaExecutionRole: Type: AWS::IAM::Role Properties: AssumeRolePolicyDocument: Statement: - Action: - sts:AssumeRole Effect: Allow Principal: Service: - lambda.amazonaws.com Version: '2012-10-17' ManagedPolicyArns: - !Sub 'arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole' - !Sub 'arn:${AWS::Partition}:iam::aws:policy/AdministratorAccess' Path: !Ref IAMRolePaths RoleName: !Ref StartCDKDeployLambdaExecutionRoleName Policies: - PolicyDocument: Statement: - Action: - codebuild:* Effect: Allow Resource: '*' Version: '2012-10-17' PolicyName: allowtrigger - PolicyDocument: Statement: - Action: - s3:Get* - s3:List* Effect: Allow Resource: '*' Version: '2012-10-17' PolicyName: allows3 CDKDeployRole: Type: AWS::IAM::Role Properties: AssumeRolePolicyDocument: Statement: - Action: - sts:AssumeRole Effect: Allow Principal: Service: - codebuild.amazonaws.com Version: '2012-10-17' ManagedPolicyArns: - !Sub 'arn:${AWS::Partition}:iam::aws:policy/AdministratorAccess' Path: !Ref IAMRolePaths RoleName: !Ref CDKDeployRoleName StartCDKDeploy: Type: AWS::Lambda::Function Properties: Code: ZipFile: | import json from urllib.request import Request, urlopen import boto3 import logging def handler(event, context): request_type = event["RequestType"] try: if request_type in ["Create", "Update"]: properties = event.get("ResourceProperties") project_name = properties.get("Project") codebuild = boto3.client("codebuild") args = [ "CDK_DEPLOY_EXTRA_ARGS", "CDK_TOOLKIT_STACK_NAME", "PUPPET_ACCOUNT_ID", "CDK_DEPLOY_PARAMETER_ARGS", "CDK_DEPLOY_REQUIRE_APPROVAL", "NAME", "VERSION", ] evo = [ { "name": "ON_COMPLETE_URL", "value": properties.get("Handle"), "type": "PLAINTEXT", }, ] + [ {"name": p, "type": "PLAINTEXT", "value": properties.get(p)} for p in args ] print(evo) bootstrapper_build = codebuild.start_build( projectName=project_name, environmentVariablesOverride=evo, ).get("build") build_status = bootstrapper_build.get("buildStatus") build_id = bootstrapper_build.get("id") send_response( event, context, "SUCCESS", { "Message": f"{request_type} successful. Build status: {build_status}", "BuildId": build_id, }, ) else: send_response( event, context, "SUCCESS", {"Message": f"{request_type} successful",}, ) except Exception as ex: print(logging.traceback.format_exc()) send_response(event, context, "FAILED", {"Message": f"Exception {ex}"}) def send_response(e, c, status, data): print(e, c, status, data) r = json.dumps( { "Status": status, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": data, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) FunctionName: servicecatalog-tools--StartCDKDeploy Handler: index.handler MemorySize: 128 Role: !GetAtt StartCDKDeployLambdaExecutionRole.Arn Runtime: python3.7 Timeout: 30 GetOutputsForGivenCodebuildId: Type: AWS::Lambda::Function Properties: Code: ZipFile: | import json from urllib.request import Request, urlopen import boto3 import logging from botocore.exceptions import ClientError import time def handler(event, context): request_type = event["RequestType"] try: if request_type in ["Create", "Update"]: properties = event.get("ResourceProperties") bucket_name = properties.get("BucketName") code_build_build_id = properties.get("CodeBuildBuildId") object_key_prefix = properties.get("ObjectKeyPrefix") object_key = f"{object_key_prefix}/scf_outputs-{code_build_build_id}.json" client = boto3.client('s3') print(bucket_name) print(object_key) response = None while response is None: try: response = client.get_object( Bucket=bucket_name, Key=object_key, ) except ClientError as ex: if ex.response['Error']['Code'] == 'NoSuchKey': print("Not yet found outputs file") time.sleep(3) else: raise print("Found the outputs file") artifact = json.loads( response.get('Body').read() ) data = { "Message": f"{request_type} successful", **artifact } send_response( event, context, "SUCCESS", data, ) else: send_response( event, context, "SUCCESS", {"Message": f"{request_type} successful", }, ) except Exception as ex: print(logging.traceback.format_exc()) send_response(event, context, "FAILED", {"Message": f"Exception {ex}"}) def send_response(e, c, rs, rd): print("send_response", e, c, rs, rd) r = json.dumps( { "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": rd, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) FunctionName: servicecatalog-tools--GetOutputsForGivenCodebuildId Handler: index.handler MemorySize: 128 Role: !GetAtt 'StartCDKDeployLambdaExecutionRole.Arn' Runtime: python3.7 Timeout: 90 CDKDeploy: Properties: Artifacts: Location: !Sub 'sc-factory-artifacts-${PuppetAccountId}-${AWS::Region}' Name: cdk-1.0.0-artifacts NamespaceType: BUILD_ID Type: S3 Description: !Sub 'Run CDK deploy for given source code' Environment: ComputeType: !Ref 'CDKDeployComputeType' EnvironmentVariables: - Name: CDK_DEPLOY_REQUIRE_APPROVAL Type: PLAINTEXT Value: CHANGE_ME - Name: CDK_DEPLOY_EXTRA_ARGS Type: PLAINTEXT Value: CHANGE_ME - Name: CDK_TOOLKIT_STACK_NAME Type: PLAINTEXT Value: CHANGE_ME - Name: UId Type: PLAINTEXT Value: CHANGE_ME - Name: PUPPET_ACCOUNT_ID Type: PLAINTEXT Value: CHANGE_ME - Name: REGION Type: PLAINTEXT Value: !Ref 'AWS::Region' - Name: CDK_DEPLOY_PARAMETER_ARGS Type: PLAINTEXT Value: CHANGE_ME - Name: ON_COMPLETE_URL Type: PLAINTEXT Value: CHANGE_ME - Name: NAME Type: PLAINTEXT Value: CHANGE_ME - Name: VERSION Type: PLAINTEXT Value: CHANGE_ME Image: !Ref 'CDKDeployImage' Type: LINUX_CONTAINER Name: ServiceCatalogFactory-RUN-CDK-DEPLOY ServiceRole: !GetAtt 'CDKDeployRole.Arn' Source: BuildSpec: !Sub | version: 0.2 artifacts: files: - '*' - '**/*' name: CDKDeploy phases: install: commands: - aws s3 cp s3://sc-factory-artifacts-$PUPPET_ACCOUNT_ID-$REGION/cdk/1.0.0/$NAME/$VERSION/$NAME-$VERSION.zip $NAME-$VERSION.zip - unzip $NAME-$VERSION.zip - npm install build: commands: - echo "building" - | npm run cdk deploy -- \ --toolkit-stack-name $CDK_TOOLKIT_STACK_NAME \ --require-approval $CDK_DEPLOY_REQUIRE_APPROVAL \ --outputs-file scf_outputs.json \ $CDK_DEPLOY_EXTRA_ARGS $CDK_DEPLOY_PARAMETER_ARGS '*' on-failure: CONTINUE post_build: commands: - aws s3 cp scf_outputs.json s3://sc-factory-artifacts-$PUPPET_ACCOUNT_ID-$REGION/cdk/1.0.0/$NAME/$VERSION/scf_outputs-$CODEBUILD_BUILD_ID.json - | if [ "$CODEBUILD_BUILD_SUCCEEDING" = "1" ]; then curl -X PUT -H 'Content-Type:' --data-binary '{"Status" : "SUCCESS", "Reason" : "Deploy completed", "UniqueId" : "$CODEBUILD_BUILD_ID", "Data" : "'"$CODEBUILD_BUILD_ID"'"}' "$ON_COMPLETE_URL" else curl -X PUT -H 'Content-Type:' --data-binary '{"Status" : "FAILURE", "Reason" : "Deploy failed", "UniqueId" : "'"$CODEBUILD_BUILD_ID"'", "Data" : "'"$CODEBUILD_BUILD_ID"'"}' "$ON_COMPLETE_URL" fi Type: NO_SOURCE TimeoutInMinutes: 60 Type: AWS::CodeBuild::Project Outputs: StartCDKDeployFunctionArn: Value: !GetAtt StartCDKDeploy.Arn GetOutputsForGivenCodebuildIdFunctionArn: Value: !GetAtt GetOutputsForGivenCodebuildId.Arn CDKDeployProject: Value: !Ref CDKDeploy ================================================ FILE: unsorted/cdk-support/bootstrap/v2/product.template.yaml ================================================ # Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: "2010-09-09" Description: | Bootstrap for CDK support in SCT {"framework": "servicecatalog-products", "role": "product", "product-set": "cdk-support", "product": "bootstrap", "version": "v2"} Parameters: CDKVersion: Type: "String" Default: "1.94.1" CDKDeployComputeType: Type: "String" Default: "BUILD_GENERAL1_SMALL" CDKDeployImage: Type: "String" Default: "aws/codebuild/standard:4.0" CDKToolkitStackName: Type: "String" Default: "CDKToolkit" CDKBootstrapExtraArgs: Type: "String" Default: "" IAMRolePaths: Type: "String" Default: "/servicecatalog-factory-cdk-support/" CDKInitialiserRoleName: Type: "String" Default: "CDKInitialiserRoleName" CDKStartInstallRoleName: Type: "String" Default: "CDKStartInstallRoleName" CDKDeployRoleName: Type: "String" Default: "CDKDeployRoleName" StartCDKDeployLambdaExecutionRoleName: Type: "String" Default: "StartCDKDeployLambdaExecutionRoleName" PuppetAccountId: Type: "String" Resources: InitialiserProject: Type: AWS::CodeBuild::Project Properties: Name: servicecatalog-factory-cdk-bootstrap-initialiser Description: "Initialiser for the cdk support" ServiceRole: !Sub "arn:aws:iam::${AWS::AccountId}:role${IAMRolePaths}${CDKInitialiserRoleName}" Artifacts: Type: NO_ARTIFACTS Environment: Type: linuxContainer ComputeType: !Ref CDKDeployComputeType Image: !Ref CDKDeployImage EnvironmentVariables: - Name: CDK_VERSION Type: PLAINTEXT Value: !Ref CDKVersion - Name: CDK_DEPLOY_COMPUTE_TYPE Type: PLAINTEXT Value: !Ref CDKDeployComputeType - Name: CDK_DEPLOY_IMAGE Type: PLAINTEXT Value: !Ref CDKDeployImage - Name: CDK_TOOLKIT_STACK_NAME Type: PLAINTEXT Value: !Ref CDKToolkitStackName - Name: CDK_BOOTSTRAP_EXTRA_ARGS Type: PLAINTEXT Value: !Ref CDKBootstrapExtraArgs - Name: ACCOUNT_ID Type: PLAINTEXT Value: !Ref AWS::AccountId - Name: REGION Type: PLAINTEXT Value: !Ref AWS::Region Source: Type: NO_SOURCE BuildSpec: | version: 0.2 phases: install: commands: - npm install -g aws-cdk@$VERSION build: commands: - cdk bootstrap --toolkit-stack-name $CDK_TOOLKIT_STACK_NAME $CDK_BOOTSTRAP_EXTRA_ARGS aws://$ACCOUNT_ID/$REGION TimeoutInMinutes: 60 Tags: - Key: "ServiceCatalogFactory:Actor" Value: "Framework" StartInstallLambda: Type: AWS::Lambda::Function Properties: Role: !Sub "arn:aws:iam::${AWS::AccountId}:role${IAMRolePaths}${CDKStartInstallRoleName}" Handler: "index.handler" Description: Lambda for starting cdk bootstrap CodeBuild Job Runtime: python3.7 Timeout: 900 Code: ZipFile: | import boto3 import json import logging import time from urllib.request import Request, urlopen logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event['RequestType'] codebuild_projectname = event.get('ResourceProperties').get('ProjectName') try: logger.info(request_type) if request_type in ['Create', 'Update']: codebuild_client = boto3.client('codebuild') logger.info("Starting CodeBuild Job: {}".format(codebuild_projectname)) codebuild_response = codebuild_client.start_build( projectName = codebuild_projectname ) build_id = codebuild_response.get('build').get('id') build_status = 'IN_PROGRESS' while build_status == 'IN_PROGRESS': time.sleep(5) build = codebuild_client.batch_get_builds(ids=[build_id]).get('builds')[0] build_status = build.get('buildStatus') if build_status != 'SUCCEEDED': raise Exception(f"Build did not SUCCEED. Status: {build_status}") send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == 'Delete': send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) send_response(event, context,"FAILED", {"Message": "Exception"}) def send_response(e, c, rs, rd): r = json.dumps({ "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e['StackId'], "RequestId": e['RequestId'], "LogicalResourceId": e['LogicalResourceId'], "Data": rd }) d = str.encode(r) h = { 'content-type': '', 'content-length': str(len(d)) } req = Request(e['ResponseURL'], data=d, method='PUT', headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) StartInstall: Type: Custom::CustomResource DependsOn: InitialiserProject Properties: ServiceToken: !GetAtt StartInstallLambda.Arn ProjectName: !Ref InitialiserProject UpdateNonce: !Join - "," - - !Ref CDKDeployComputeType - !Ref CDKDeployImage - !Ref CDKToolkitStackName - !Ref CDKBootstrapExtraArgs StartCDKDeploy: Type: AWS::Lambda::Function Properties: Code: ZipFile: | import json from urllib.request import Request, urlopen import boto3 import logging def handler(event, context): request_type = event["RequestType"] try: if request_type in ["Create", "Update"]: properties = event.get("ResourceProperties") project_name = properties.get("Project") codebuild = boto3.client("codebuild") args = [ "CDK_DEPLOY_EXTRA_ARGS", "CDK_TOOLKIT_STACK_NAME", "PUPPET_ACCOUNT_ID", "CDK_DEPLOY_PARAMETER_ARGS", "CDK_DEPLOY_REQUIRE_APPROVAL", "NAME", "VERSION", ] evo = [ { "name": "ON_COMPLETE_URL", "value": properties.get("Handle"), "type": "PLAINTEXT", }, ] + [ {"name": p, "type": "PLAINTEXT", "value": properties.get(p)} for p in args ] print(evo) bootstrapper_build = codebuild.start_build( projectName=project_name, environmentVariablesOverride=evo, ).get("build") build_status = bootstrapper_build.get("buildStatus") build_id = bootstrapper_build.get("id") send_response( event, context, "SUCCESS", { "Message": f"{request_type} successful. Build status: {build_status}", "BuildId": build_id, }, ) else: send_response( event, context, "SUCCESS", {"Message": f"{request_type} successful",}, ) except Exception as ex: print(logging.traceback.format_exc()) send_response(event, context, "FAILED", {"Message": f"Exception {ex}"}) def send_response(e, c, status, data): print(e, c, status, data) r = json.dumps( { "Status": status, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": data, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) FunctionName: servicecatalog-tools--StartCDKDeploy Handler: index.handler MemorySize: 128 Role: !Sub "arn:aws:iam::${AWS::AccountId}:role${IAMRolePaths}${StartCDKDeployLambdaExecutionRoleName}" Runtime: python3.7 Timeout: 30 GetOutputsForGivenCodebuildId: Type: AWS::Lambda::Function Properties: Code: ZipFile: | import json from urllib.request import Request, urlopen import boto3 import logging from botocore.exceptions import ClientError import time def handler(event, context): request_type = event["RequestType"] try: if request_type in ["Create", "Update"]: properties = event.get("ResourceProperties") bucket_name = properties.get("BucketName") code_build_build_id = properties.get("CodeBuildBuildId") object_key_prefix = properties.get("ObjectKeyPrefix") object_key = f"{object_key_prefix}/scf_outputs-{code_build_build_id}.json" client = boto3.client('s3') print(bucket_name) print(object_key) response = None while response is None: try: response = client.get_object( Bucket=bucket_name, Key=object_key, ) except ClientError as ex: if ex.response['Error']['Code'] == 'NoSuchKey': print("Not yet found outputs file") time.sleep(3) else: raise print("Found the outputs file") artifact = json.loads( response.get('Body').read() ) data = { "Message": f"{request_type} successful", **artifact } send_response( event, context, "SUCCESS", data, ) else: send_response( event, context, "SUCCESS", {"Message": f"{request_type} successful", }, ) except Exception as ex: print(logging.traceback.format_exc()) send_response(event, context, "FAILED", {"Message": f"Exception {ex}"}) def send_response(e, c, rs, rd): print("send_response", e, c, rs, rd) r = json.dumps( { "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": rd, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) FunctionName: servicecatalog-tools--GetOutputsForGivenCodebuildId Handler: index.handler MemorySize: 128 Role: !Sub "arn:aws:iam::${AWS::AccountId}:role${IAMRolePaths}${StartCDKDeployLambdaExecutionRoleName}" Runtime: python3.7 Timeout: 90 CDKDeploy: Properties: Artifacts: Location: !Sub 'sc-factory-artifacts-${PuppetAccountId}-${AWS::Region}' Name: cdk-1.0.0-artifacts NamespaceType: BUILD_ID Type: S3 Description: !Sub 'Run CDK deploy for given source code' Environment: ComputeType: !Ref 'CDKDeployComputeType' EnvironmentVariables: - Name: CDK_DEPLOY_REQUIRE_APPROVAL Type: PLAINTEXT Value: CHANGE_ME - Name: CDK_DEPLOY_EXTRA_ARGS Type: PLAINTEXT Value: CHANGE_ME - Name: CDK_TOOLKIT_STACK_NAME Type: PLAINTEXT Value: CHANGE_ME - Name: UId Type: PLAINTEXT Value: CHANGE_ME - Name: PUPPET_ACCOUNT_ID Type: PLAINTEXT Value: CHANGE_ME - Name: REGION Type: PLAINTEXT Value: !Ref 'AWS::Region' - Name: CDK_DEPLOY_PARAMETER_ARGS Type: PLAINTEXT Value: CHANGE_ME - Name: ON_COMPLETE_URL Type: PLAINTEXT Value: CHANGE_ME - Name: NAME Type: PLAINTEXT Value: CHANGE_ME - Name: VERSION Type: PLAINTEXT Value: CHANGE_ME Image: !Ref 'CDKDeployImage' Type: LINUX_CONTAINER Name: ServiceCatalogFactory-RUN-CDK-DEPLOY ServiceRole: !Sub "arn:aws:iam::${AWS::AccountId}:role${IAMRolePaths}${CDKDeployRoleName}" Source: BuildSpec: !Sub | version: 0.2 artifacts: files: - '*' - '**/*' name: CDKDeploy phases: install: commands: - aws s3 cp s3://sc-factory-artifacts-$PUPPET_ACCOUNT_ID-$REGION/cdk/1.0.0/$NAME/$VERSION/$NAME-$VERSION.zip $NAME-$VERSION.zip - unzip $NAME-$VERSION.zip pre_build: on-failure: CONTINUE commands: - npm install build: on-failure: CONTINUE commands: - echo "building" - | if [ "$CODEBUILD_BUILD_SUCCEEDING" = "1" ]; then npm run cdk deploy -- \ --toolkit-stack-name $CDK_TOOLKIT_STACK_NAME \ --require-approval $CDK_DEPLOY_REQUIRE_APPROVAL \ --outputs-file scf_outputs.json \ $CDK_DEPLOY_EXTRA_ARGS $CDK_DEPLOY_PARAMETER_ARGS '*' aws s3 cp scf_outputs.json s3://sc-cdk-artifacts-${AWS::AccountId}/cdk/1.0.0/$NAME/$VERSION/scf_outputs-$CODEBUILD_BUILD_ID.json fi post_build: commands: - | if [ "$CODEBUILD_BUILD_SUCCEEDING" = "1" ]; then curl -X PUT -H 'Content-Type:' --data-binary '{"Status" : "SUCCESS", "Reason" : "Deploy completed", "UniqueId" : "$CODEBUILD_BUILD_ID", "Data" : "'"$CODEBUILD_BUILD_ID"'"}' "$ON_COMPLETE_URL" else curl -X PUT -H 'Content-Type:' --data-binary '{"Status" : "FAILURE", "Reason" : "Deploy failed", "UniqueId" : "'"$CODEBUILD_BUILD_ID"'", "Data" : "'"$CODEBUILD_BUILD_ID"'"}' "$ON_COMPLETE_URL" fi Type: NO_SOURCE TimeoutInMinutes: 480 Type: AWS::CodeBuild::Project Outputs: StartCDKDeployFunctionArn: Value: !GetAtt StartCDKDeploy.Arn GetOutputsForGivenCodebuildIdFunctionArn: Value: !GetAtt GetOutputsForGivenCodebuildId.Arn CDKDeployProject: Value: !Ref CDKDeploy ================================================ FILE: unsorted/cdk-support/bootstrap/v3/product.template.yaml ================================================ # Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: "2010-09-09" Description: | Bootstrap for CDK support in SCT {"framework": "servicecatalog-products", "role": "product", "product-set": "cdk-support", "product": "bootstrap", "version": "v3"} Parameters: CDKSupportCDKBootstrapVersion: Type: "String" Default: "1.94.1" CDKSupportCDKBootstrapComputeType: Type: "String" Default: "BUILD_GENERAL1_SMALL" CDKSupportCDKBootstrapImage: Type: "String" Default: "aws/codebuild/standard:4.0" CDKSupportCDKToolkitStackName: Type: "String" Default: "CDKToolkit" CDKSupportCDKBootstrapExtraArgs: Type: "String" Default: "" CDKSupportIAMRolePaths: Type: "String" Default: "/servicecatalog-factory-cdk-support/" CDKSupportCDKInitialiserRoleName: Type: "String" Default: "CDKInitialiserRoleName" CDKSupportCDKStartInstallRoleName: Type: "String" Default: "CDKStartInstallRoleName" CDKSupportStartCDKDeployLambdaExecutionRoleName: Type: "String" Default: "StartCDKDeployLambdaExecutionRoleName" PuppetAccountId: Type: "String" Resources: InitialiserProject: Type: AWS::CodeBuild::Project Properties: Name: servicecatalog-factory-cdk-bootstrap-initialiser Description: "Initialiser for the cdk support" ServiceRole: !Sub "arn:aws:iam::${AWS::AccountId}:role${CDKSupportIAMRolePaths}${CDKSupportCDKInitialiserRoleName}" Artifacts: Type: NO_ARTIFACTS Environment: Type: linuxContainer ComputeType: !Ref CDKSupportCDKBootstrapComputeType Image: !Ref CDKSupportCDKBootstrapImage EnvironmentVariables: - Name: CDK_VERSION Type: PLAINTEXT Value: !Ref CDKSupportCDKBootstrapVersion - Name: CDK_TOOLKIT_STACK_NAME Type: PLAINTEXT Value: !Ref CDKSupportCDKToolkitStackName - Name: CDK_BOOTSTRAP_EXTRA_ARGS Type: PLAINTEXT Value: !Ref CDKSupportCDKBootstrapExtraArgs - Name: ACCOUNT_ID Type: PLAINTEXT Value: !Ref AWS::AccountId - Name: REGION Type: PLAINTEXT Value: !Ref AWS::Region Source: Type: NO_SOURCE BuildSpec: | version: 0.2 phases: install: commands: - npm install -g aws-cdk@$CDK_VERSION build: commands: - cdk bootstrap --toolkit-stack-name $CDK_TOOLKIT_STACK_NAME $CDK_BOOTSTRAP_EXTRA_ARGS aws://$ACCOUNT_ID/$REGION TimeoutInMinutes: 60 Tags: - Key: "ServiceCatalogFactory:Actor" Value: "Framework" StartInstallLambda: Type: AWS::Lambda::Function Properties: Role: !Sub "arn:aws:iam::${AWS::AccountId}:role${CDKSupportIAMRolePaths}${CDKSupportCDKStartInstallRoleName}" Handler: "index.handler" Description: Lambda for starting cdk bootstrap CodeBuild Job Runtime: python3.7 Timeout: 900 Code: ZipFile: | import boto3 import json import logging import time from urllib.request import Request, urlopen logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event['RequestType'] codebuild_projectname = event.get('ResourceProperties').get('ProjectName') try: logger.info(request_type) if request_type in ['Create', 'Update']: codebuild_client = boto3.client('codebuild') logger.info("Starting CodeBuild Job: {}".format(codebuild_projectname)) codebuild_response = codebuild_client.start_build( projectName = codebuild_projectname ) build_id = codebuild_response.get('build').get('id') build_status = 'IN_PROGRESS' while build_status == 'IN_PROGRESS': time.sleep(5) build = codebuild_client.batch_get_builds(ids=[build_id]).get('builds')[0] build_status = build.get('buildStatus') if build_status != 'SUCCEEDED': raise Exception(f"Build did not SUCCEED. Status: {build_status}") send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == 'Delete': send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) send_response(event, context,"FAILED", {"Message": "Exception"}) def send_response(e, c, rs, rd): r = json.dumps({ "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e['StackId'], "RequestId": e['RequestId'], "LogicalResourceId": e['LogicalResourceId'], "Data": rd }) d = str.encode(r) h = { 'content-type': '', 'content-length': str(len(d)) } req = Request(e['ResponseURL'], data=d, method='PUT', headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) StartInstall: Type: Custom::CustomResource DependsOn: InitialiserProject Properties: ServiceToken: !GetAtt StartInstallLambda.Arn ProjectName: !Ref InitialiserProject UpdateNonce: !Join - "," - - !Ref CDKSupportCDKBootstrapVersion - !Ref CDKSupportCDKBootstrapComputeType - !Ref CDKSupportCDKBootstrapImage - !Ref CDKSupportCDKToolkitStackName - !Ref CDKSupportCDKBootstrapExtraArgs - !Ref CDKSupportIAMRolePaths - !Ref CDKSupportCDKInitialiserRoleName - !Ref CDKSupportCDKStartInstallRoleName - !Ref CDKSupportStartCDKDeployLambdaExecutionRoleName - !Ref PuppetAccountId StartCDKDeploy: Type: AWS::Lambda::Function Properties: Code: ZipFile: | import json from urllib.request import Request, urlopen import boto3 import logging def handler(event, context): request_type = event["RequestType"] try: properties = event.get("ResourceProperties") codebuild = boto3.client("codebuild") args = [ "CDK_DEPLOY_EXTRA_ARGS", "CDK_TOOLKIT_STACK_NAME", "PUPPET_ACCOUNT_ID", "CDK_DEPLOY_PARAMETER_ARGS", "CDK_DEPLOY_REQUIRE_APPROVAL", "NAME", "VERSION", ] evo = [ { "name": "ON_COMPLETE_URL", "value": properties.get("Handle"), "type": "PLAINTEXT", }, ] + [ {"name": p, "type": "PLAINTEXT", "value": properties.get(p)} for p in args ] print(evo) if request_type in ["Create", "Update", "Delete"]: if request_type in ["Create", "Update"]: project_name = properties.get("CreateUpdateProject") else: project_name = properties.get("DeleteProject") bootstrapper_build = codebuild.start_build( projectName=project_name, environmentVariablesOverride=evo, ).get("build") build_status = bootstrapper_build.get("buildStatus") build_id = bootstrapper_build.get("id") send_response( event, context, "SUCCESS", { "Message": f"{request_type} successful. Build status: {build_status}", "BuildId": build_id, }, ) else: send_response( event, context, "SUCCESS", {"Message": f"{request_type} successful",}, ) except Exception as ex: print(logging.traceback.format_exc()) send_response(event, context, "FAILED", {"Message": f"Exception {ex}"}) def send_response(e, c, status, data): print(e, c, status, data) r = json.dumps( { "Status": status, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": data, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) FunctionName: servicecatalog-tools--StartCDKDeploy Handler: index.handler MemorySize: 128 Role: !Sub "arn:aws:iam::${AWS::AccountId}:role${CDKSupportIAMRolePaths}${CDKSupportStartCDKDeployLambdaExecutionRoleName}" Runtime: python3.7 Timeout: 30 GetOutputsForGivenCodebuildId: Type: AWS::Lambda::Function Properties: Code: ZipFile: | import json from urllib.request import Request, urlopen import boto3 import logging from botocore.exceptions import ClientError import time def handler(event, context): request_type = event["RequestType"] try: if request_type in ["Create", "Update"]: properties = event.get("ResourceProperties") bucket_name = properties.get("BucketName") code_build_build_id = properties.get("CodeBuildBuildId") object_key_prefix = properties.get("ObjectKeyPrefix") object_key = f"{object_key_prefix}/scf_outputs-{code_build_build_id}.json" client = boto3.client('s3') print(bucket_name) print(object_key) response = None while response is None: try: response = client.get_object( Bucket=bucket_name, Key=object_key, ) except ClientError as ex: if ex.response['Error']['Code'] == 'NoSuchKey': print("Not yet found outputs file") time.sleep(3) else: raise print("Found the outputs file") artifact = json.loads( response.get('Body').read() ) data = dict() for stack in artifact.keys(): data.update(artifact.get(stack)) data["Message"] = f"{request_type} successful" send_response( event, context, "SUCCESS", data, ) else: send_response( event, context, "SUCCESS", {"Message": f"{request_type} successful", }, ) except Exception as ex: print(logging.traceback.format_exc()) send_response(event, context, "FAILED", {"Message": f"Exception {ex}"}) def send_response(e, c, rs, rd): print("send_response", e, c, rs, rd) r = json.dumps( { "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": rd, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) FunctionName: servicecatalog-tools--GetOutputsForGivenCodebuildId Handler: index.handler MemorySize: 128 Role: !Sub "arn:aws:iam::${AWS::AccountId}:role${CDKSupportIAMRolePaths}${CDKSupportStartCDKDeployLambdaExecutionRoleName}" Runtime: python3.7 Timeout: 90 Outputs: CDKSupportStartCDKDeployFunctionArn: Value: !GetAtt StartCDKDeploy.Arn CDKSupportGetOutputsForGivenCodebuildIdFunctionArn: Value: !GetAtt GetOutputsForGivenCodebuildId.Arn ================================================ FILE: unsorted/cdk-support/bootstrap/v4/product.template.yaml ================================================ # Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: "2010-09-09" Transform: AWS::Serverless-2016-10-31 Description: | Bootstrap for CDK support in SCT {"framework": "servicecatalog-products", "role": "product", "product-set": "cdk-support", "product": "bootstrap", "version": "v4"} Parameters: CDKSupportCDKBootstrapVersion: Type: "String" Default: "1.94.1" CDKSupportCDKBootstrapComputeType: Type: "String" Default: "BUILD_GENERAL1_SMALL" CDKSupportCDKBootstrapImage: Type: "String" Default: "aws/codebuild/standard:4.0" CDKSupportCDKToolkitStackName: Type: "String" Default: "CDKToolkit" CDKSupportCDKBootstrapExtraArgs: Type: "String" Default: "" CDKSupportIAMRolePaths: Type: "String" Default: "/servicecatalog-factory-cdk-support/" CDKSupportCDKInitialiserRoleName: Type: "String" Default: "CDKInitialiserRoleName" CDKSupportCDKStartInstallRoleName: Type: "String" Default: "CDKStartInstallRoleName" CDKSupportStartCDKDeployLambdaExecutionRoleName: Type: "String" Default: "StartCDKDeployLambdaExecutionRoleName" PuppetAccountId: Type: "String" Resources: InitialiserProject: Type: AWS::CodeBuild::Project Properties: Name: servicecatalog-factory-cdk-bootstrap-initialiser Description: "Initialiser for the cdk support" ServiceRole: !Sub "arn:aws:iam::${AWS::AccountId}:role${CDKSupportIAMRolePaths}${CDKSupportCDKInitialiserRoleName}" Artifacts: Type: NO_ARTIFACTS Environment: Type: linuxContainer ComputeType: !Ref CDKSupportCDKBootstrapComputeType Image: !Ref CDKSupportCDKBootstrapImage EnvironmentVariables: - Name: CDK_VERSION Type: PLAINTEXT Value: !Ref CDKSupportCDKBootstrapVersion - Name: CDK_TOOLKIT_STACK_NAME Type: PLAINTEXT Value: !Ref CDKSupportCDKToolkitStackName - Name: CDK_BOOTSTRAP_EXTRA_ARGS Type: PLAINTEXT Value: !Ref CDKSupportCDKBootstrapExtraArgs - Name: ACCOUNT_ID Type: PLAINTEXT Value: !Ref AWS::AccountId - Name: REGION Type: PLAINTEXT Value: !Ref AWS::Region Source: Type: NO_SOURCE BuildSpec: | version: 0.2 phases: install: commands: - npm install -g aws-cdk@$CDK_VERSION build: commands: - cdk bootstrap --toolkit-stack-name $CDK_TOOLKIT_STACK_NAME $CDK_BOOTSTRAP_EXTRA_ARGS aws://$ACCOUNT_ID/$REGION TimeoutInMinutes: 60 Tags: - Key: "ServiceCatalogFactory:Actor" Value: "Framework" StartInstallLambda: Type: AWS::Lambda::Function Properties: Role: !Sub "arn:aws:iam::${AWS::AccountId}:role${CDKSupportIAMRolePaths}${CDKSupportCDKStartInstallRoleName}" Handler: "index.handler" Description: Lambda for starting cdk bootstrap CodeBuild Job Runtime: python3.7 Timeout: 900 Code: ZipFile: | import boto3 import json import logging import time from urllib.request import Request, urlopen logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event['RequestType'] codebuild_projectname = event.get('ResourceProperties').get('ProjectName') try: logger.info(request_type) if request_type in ['Create', 'Update']: codebuild_client = boto3.client('codebuild') logger.info("Starting CodeBuild Job: {}".format(codebuild_projectname)) codebuild_response = codebuild_client.start_build( projectName = codebuild_projectname ) build_id = codebuild_response.get('build').get('id') build_status = 'IN_PROGRESS' while build_status == 'IN_PROGRESS': time.sleep(5) build = codebuild_client.batch_get_builds(ids=[build_id]).get('builds')[0] build_status = build.get('buildStatus') if build_status != 'SUCCEEDED': raise Exception(f"Build did not SUCCEED. Status: {build_status}") send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == 'Delete': send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) send_response(event, context,"FAILED", {"Message": "Exception"}) def send_response(e, c, rs, rd): r = json.dumps({ "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e['StackId'], "RequestId": e['RequestId'], "LogicalResourceId": e['LogicalResourceId'], "Data": rd }) d = str.encode(r) h = { 'content-type': '', 'content-length': str(len(d)) } req = Request(e['ResponseURL'], data=d, method='PUT', headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) StartInstall: Type: Custom::CustomResource DependsOn: InitialiserProject Properties: ServiceToken: !GetAtt StartInstallLambda.Arn ProjectName: !Ref InitialiserProject UpdateNonce: !Join - "," - - !Ref CDKSupportCDKBootstrapVersion - !Ref CDKSupportCDKBootstrapComputeType - !Ref CDKSupportCDKBootstrapImage - !Ref CDKSupportCDKToolkitStackName - !Ref CDKSupportCDKBootstrapExtraArgs - !Ref CDKSupportIAMRolePaths - !Ref CDKSupportCDKInitialiserRoleName - !Ref CDKSupportCDKStartInstallRoleName - !Ref CDKSupportStartCDKDeployLambdaExecutionRoleName - !Ref PuppetAccountId StartCDKDeploy: Type: AWS::Serverless::Function Properties: CodeUri: ./start_cdk_deploy/src Handler: handler.handler FunctionName: servicecatalog-tools--StartCDKDeploy MemorySize: 128 Role: !Sub "arn:aws:iam::${AWS::AccountId}:role${CDKSupportIAMRolePaths}${CDKSupportStartCDKDeployLambdaExecutionRoleName}" Runtime: python3.7 Timeout: 30 GetOutputsForGivenCodebuildId: Type: AWS::Lambda::Function Properties: Code: ZipFile: | import json from urllib.request import Request, urlopen import boto3 import logging from botocore.exceptions import ClientError import time def handler(event, context): request_type = event["RequestType"] try: if request_type in ["Create", "Update"]: properties = event.get("ResourceProperties") bucket_name = properties.get("BucketName") code_build_build_id = properties.get("CodeBuildBuildId") object_key_prefix = properties.get("ObjectKeyPrefix") object_key = f"{object_key_prefix}/scf_outputs-{code_build_build_id}.json" client = boto3.client('s3') print(bucket_name) print(object_key) response = None while response is None: try: response = client.get_object( Bucket=bucket_name, Key=object_key, ) except ClientError as ex: if ex.response['Error']['Code'] == 'NoSuchKey': print("Not yet found outputs file") time.sleep(3) else: raise print("Found the outputs file") artifact = json.loads( response.get('Body').read() ) data = dict() for stack in artifact.keys(): data.update(artifact.get(stack)) data["Message"] = f"{request_type} successful" send_response( event, context, "SUCCESS", data, ) else: send_response( event, context, "SUCCESS", {"Message": f"{request_type} successful", }, ) except Exception as ex: print(logging.traceback.format_exc()) send_response(event, context, "FAILED", {"Message": f"Exception {ex}"}) def send_response(e, c, rs, rd): print("send_response", e, c, rs, rd) r = json.dumps( { "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": rd, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) FunctionName: servicecatalog-tools--GetOutputsForGivenCodebuildId Handler: index.handler MemorySize: 128 Role: !Sub "arn:aws:iam::${AWS::AccountId}:role${CDKSupportIAMRolePaths}${CDKSupportStartCDKDeployLambdaExecutionRoleName}" Runtime: python3.7 Timeout: 90 Outputs: CDKSupportStartCDKDeployFunctionArn: Value: !GetAtt StartCDKDeploy.Arn CDKSupportGetOutputsForGivenCodebuildIdFunctionArn: Value: !GetAtt GetOutputsForGivenCodebuildId.Arn ================================================ FILE: unsorted/cdk-support/bootstrap/v4/start_cdk_deploy/requirements.txt ================================================ crhelper==2.0.9 ================================================ FILE: unsorted/cdk-support/bootstrap/v4/start_cdk_deploy/src/handler.py ================================================ import boto3 import logging from crhelper import CfnResource logger = logging.getLogger(__name__) helper = CfnResource(polling_interval=1) try: pass except Exception as e: helper.init_failure(e) def start_build(project_name, environment_variables_override): codebuild = boto3.client("codebuild") bootstrapper_build = codebuild.start_build( projectName=project_name, environmentVariablesOverride=environment_variables_override, ).get("build") return bootstrapper_build.get("id") def get_details_needed_for_build(event): request_type = event["RequestType"] properties = event.get("ResourceProperties") if request_type in ["Create", "Update"]: project_name = properties.get("CreateUpdateProject") else: project_name = properties.get("DeleteProject") args = [ "CDK_DEPLOY_EXTRA_ARGS", "CDK_TOOLKIT_STACK_NAME", "PUPPET_ACCOUNT_ID", "CDK_DEPLOY_PARAMETER_ARGS", "CDK_DEPLOY_REQUIRE_APPROVAL", "NAME", "VERSION", ] environment_variables_override = [ {"name": p, "type": "PLAINTEXT", "value": properties.get(p)} for p in args ] return project_name, environment_variables_override def get_build_status_for(codebuild_build_id): client = boto3.client('codebuild') response = client.batch_get_builds( ids=[codebuild_build_id] ) return response['builds'][0]['buildStatus'] @helper.create @helper.update @helper.delete def create(event, context): logger.info(f'{event["RequestType"]}...') project_name, environment_variables_override = get_details_needed_for_build(event) logger.info(f'project_name is: {project_name}') logger.info(f'environment_variables_override is: {environment_variables_override}') codebuild_build_id = start_build(project_name, environment_variables_override) helper.Data['BuildId'] = codebuild_build_id @helper.poll_create @helper.poll_update @helper.poll_delete def poll_create(event, context): logger.info(f'Polling for {event["RequestType"]}...') codebuild_build_id = helper.Data['BuildId'] status = get_build_status_for(codebuild_build_id) if status == "SUCCEEDED": return True elif status == "IN_PROGRESS": return None else: raise Exception(f"Codebuild Job: {codebuild_build_id} has status: {status}") def handler(event, context): helper(event, context) ================================================ FILE: unsorted/cdk-support/iam/v1/product.template.yaml ================================================ # Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: "2010-09-09" Description: | Bootstrap for CDK support in SCT {"framework": "servicecatalog-products", "role": "product", "product-set": "cdk-support", "product": "iam", "version": "v1"} Parameters: CDKSupportIAMRolePaths: Type: "String" Default: "/servicecatalog-factory-cdk-support/" CDKSupportInitialiserRoleName: Type: "String" Default: "CDKInitialiserRoleName" CDKSupportStartInstallRoleName: Type: "String" Default: "CDKStartInstallRoleName" CDKSupportDeployRoleName: Type: "String" Default: "CDKDeployRoleName" CDKSupportStartCDKDeployLambdaExecutionRoleName: Type: "String" Default: "StartCDKDeployLambdaExecutionRoleName" Resources: InitialiserRole: Type: AWS::IAM::Role Properties: RoleName: !Ref CDKSupportInitialiserRoleName Path: !Ref CDKSupportIAMRolePaths AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "codebuild.amazonaws.com" Action: - "sts:AssumeRole" ManagedPolicyArns: - !Sub "arn:${AWS::Partition}:iam::aws:policy/AdministratorAccess" Tags: - Key: "ServiceCatalogFactory:Actor" Value: "Framework" StartInstallRole: Type: AWS::IAM::Role Properties: RoleName: !Ref CDKSupportStartInstallRoleName Path: !Ref CDKSupportIAMRolePaths ManagedPolicyArns: - !Sub "arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" - !Sub "arn:${AWS::Partition}:iam::aws:policy/AWSCodeBuildDeveloperAccess" AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" StartCDKDeployLambdaExecutionRole: Type: AWS::IAM::Role Properties: AssumeRolePolicyDocument: Statement: - Action: - sts:AssumeRole Effect: Allow Principal: Service: - lambda.amazonaws.com Version: '2012-10-17' ManagedPolicyArns: - !Sub 'arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole' - !Sub 'arn:${AWS::Partition}:iam::aws:policy/AdministratorAccess' Path: !Ref CDKSupportIAMRolePaths RoleName: !Ref CDKSupportStartCDKDeployLambdaExecutionRoleName Policies: - PolicyDocument: Statement: - Action: - codebuild:* Effect: Allow Resource: '*' Version: '2012-10-17' PolicyName: allowtrigger - PolicyDocument: Statement: - Action: - s3:Get* - s3:List* Effect: Allow Resource: '*' Version: '2012-10-17' PolicyName: allows3 CDKDeployRole: Type: AWS::IAM::Role Properties: AssumeRolePolicyDocument: Statement: - Action: - sts:AssumeRole Effect: Allow Principal: Service: - codebuild.amazonaws.com Version: '2012-10-17' ManagedPolicyArns: - !Sub 'arn:${AWS::Partition}:iam::aws:policy/AdministratorAccess' Path: !Ref CDKSupportIAMRolePaths RoleName: !Ref CDKSupportDeployRoleName CDKDeployStorageBucket: Type: AWS::S3::Bucket Properties: BucketName: "sc-cdk-artifacts-${AWS::AccountId}" VersioningConfiguration: Status: Enabled BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: SSEAlgorithm: AES256 PublicAccessBlockConfiguration: BlockPublicAcls: TRUE BlockPublicPolicy: TRUE IgnorePublicAcls: TRUE RestrictPublicBuckets: TRUE Outputs: CDKDeployStorageBucket: Value: !Ref CDKDeployStorageBucket ================================================ FILE: unsorted/cdk-support/iam/v2/product.template.yaml ================================================ # Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: "2010-09-09" Description: | Bootstrap for CDK support in SCT {"framework": "servicecatalog-products", "role": "product", "product-set": "cdk-support", "product": "iam", "version": "v2"} Parameters: CDKSupportIAMRolePaths: Type: "String" Default: "/servicecatalog-factory-cdk-support/" CDKSupportCDKInitialiserRoleName: Type: "String" Default: "CDKInitialiserRoleName" CDKSupportCDKStartInstallRoleName: Type: "String" Default: "CDKStartInstallRoleName" CDKSupportCDKDeployRoleName: Type: "String" Default: "CDKDeployRoleName" CDKSupportStartCDKDeployLambdaExecutionRoleName: Type: "String" Default: "StartCDKDeployLambdaExecutionRoleName" Resources: InitialiserRole: Type: AWS::IAM::Role Properties: RoleName: !Ref CDKSupportCDKInitialiserRoleName Path: !Ref CDKSupportIAMRolePaths AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "codebuild.amazonaws.com" Action: - "sts:AssumeRole" ManagedPolicyArns: - !Sub "arn:${AWS::Partition}:iam::aws:policy/AdministratorAccess" Tags: - Key: "ServiceCatalogFactory:Actor" Value: "Framework" StartInstallRole: Type: AWS::IAM::Role Properties: RoleName: !Ref CDKSupportCDKStartInstallRoleName Path: !Ref CDKSupportIAMRolePaths ManagedPolicyArns: - !Sub "arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" - !Sub "arn:${AWS::Partition}:iam::aws:policy/AWSCodeBuildDeveloperAccess" AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" StartCDKDeployLambdaExecutionRole: Type: AWS::IAM::Role Properties: AssumeRolePolicyDocument: Statement: - Action: - sts:AssumeRole Effect: Allow Principal: Service: - lambda.amazonaws.com Version: '2012-10-17' ManagedPolicyArns: - !Sub 'arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole' - !Sub 'arn:${AWS::Partition}:iam::aws:policy/AdministratorAccess' Path: !Ref CDKSupportIAMRolePaths RoleName: !Ref CDKSupportStartCDKDeployLambdaExecutionRoleName Policies: - PolicyDocument: Statement: - Action: - codebuild:* Effect: Allow Resource: '*' Version: '2012-10-17' PolicyName: allowtrigger - PolicyDocument: Statement: - Action: - s3:Get* - s3:List* Effect: Allow Resource: '*' Version: '2012-10-17' PolicyName: allows3 CDKDeployRole: Type: AWS::IAM::Role Properties: AssumeRolePolicyDocument: Statement: - Action: - sts:AssumeRole Effect: Allow Principal: Service: - codebuild.amazonaws.com Version: '2012-10-17' ManagedPolicyArns: - !Sub 'arn:${AWS::Partition}:iam::aws:policy/AdministratorAccess' Path: !Ref CDKSupportIAMRolePaths RoleName: !Ref CDKSupportCDKDeployRoleName CDKDeployStorageBucket: Type: AWS::S3::Bucket Properties: BucketName: !Sub "sc-cdk-artifacts-${AWS::AccountId}" VersioningConfiguration: Status: Enabled BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: SSEAlgorithm: AES256 PublicAccessBlockConfiguration: BlockPublicAcls: TRUE BlockPublicPolicy: TRUE IgnorePublicAcls: TRUE RestrictPublicBuckets: TRUE Outputs: CDKDeployStorageBucket: Value: !Ref CDKDeployStorageBucket ================================================ FILE: unsorted/cdk-support/manifest.yaml ================================================ # Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: cdk-support-iam: portfolio: bug-demo-portfolio product: cdk-support-iam version: v2 deploy_to: tags: - tag: role:spoke regions: default_region cdk-support-bootstrap: portfolio: bug-demo-portfolio product: cdk-support-bootstrap version: v4 depends_on: - cdk-support-iam deploy_to: tags: - tag: role:spoke regions: regions_enabled outputs: ssm: - param_name: "/cdk-support/bootstrap/${AWS::AccountId}/${AWS::Region}/StartCDKDeployFunctionArn" stack_output: "StartCDKDeployFunctionArn" - param_name: "/cdk-support/bootstrap/${AWS::AccountId}/${AWS::Region}/GetOutputsForGivenCodebuildIdFunctionArn" stack_output: "GetOutputsForGivenCodebuildIdFunctionArn" - param_name: "/cdk-support/bootstrap/${AWS::AccountId}/${AWS::Region}/CDKDeployProject" stack_output: "CDKDeployProject" ================================================ FILE: unsorted/cdk-support/portfolio.yaml ================================================ # Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: cdk-support-iam Owner: central-it@customer.com Description: run a cdk bootstrap within a given region of a given account Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/cdk-support/bootstrap Tags: - Key: product-type Value: app-dev Versions: - Name: v2 Description: Runs a CDK bootstrap in a given region of a given account Source: Provider: CodeCommit Configuration: RepositoryName: cdk-support-iam BranchName: v2 - Name: cdk-support-bootstrap Owner: central-it@customer.com Description: run a cdk bootstrap within a given region of a given account Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/cdk-support/bootstrap Tags: - Key: product-type Value: app-dev Versions: - Name: v4 Description: Runs a CDK bootstrap in a given region of a given account Source: Provider: CodeCommit Configuration: RepositoryName: cdk-support-bootstrap BranchName: v4 ================================================ FILE: unsorted/cloud-custodian/README.md ================================================ ## Cloud Custodian Cloud Custodian is an open source stateless rules engine for policy definition and enforcement. The Cloud Custodian product for Service Catalog Tools consists of the following components: - hub - spoke - codestar-connection ### Components **Hub** This product template creates all the resources needed for the custodian hub account. **Spoke** This product template creates all the resources needed within the custodian spoke account(s). **Codestar-Connection** This product template creates a Codestar Connection that is required if the repository provider type is anything other than CodeCommit. For example, if you are using Bitbucket or GitHub as your source repository provider, this product will need to be deployed into the custodian hub account in conjunction with the hub product. - Note: Once the CodeStar Connection product has been deployed, the connection is in a PENDING status by default. You will need to make sure its status is in an AVAILABLE state by updating the connection in the console. Please refer to the latest version of the [CodeStar Connection product](https://github.com/awslabs/aws-service-catalog-products/tree/master/cloud-custodian/codestar-connection) README for the step by step process on how to complete this connection. ================================================ FILE: unsorted/cloud-custodian/codestar-connection/v1/README.md ================================================ ** CodeStar Connection The AWS::CodeStarConnections::Connection resource can be used to connect external source providers with services like AWS CodePipeline. Only the following external sources are supported: - Bitbucket - GitHub - GitHubEnterpriseServer A connection created through CloudFormation is in PENDING status by default. You can make its status AVAILABLE by updating the connection in the console. **Resources** The product.template.yaml creates the following resources: - CodeStarConnection - The CodeStar Connection resource Once the CloudFormation template has successfully been created, perform the following steps to complete the connection: 1. Navigate to the CodePipeline Console. On the left-hand menu, click "Settings" and then "Connections". You should see your CodeStar Connection in a "Pending" status. 2. Click the radio button next to your connection, and click "Update pending connection". This should open a window for you to connect your third party repository provider to your connection. 3. Complete the steps required in the pop up window. 4. Once complete, your connection should show as "Available" in the CodePipeline console. ================================================ FILE: unsorted/cloud-custodian/codestar-connection/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Creates a CodeStar connection that can be given to CodePipeline so that it can access third-party code repositories. {"framework": "servicecatalog-products", "role": "product", "product-set": "cloud-custodian", "product": "codestar-connection", "version": "v1"} Parameters: ConnectionName: Type: String Description: The name of the connection ProviderType: Type: String Description: The name of your third-party code repository provider Default: "GitHub" AllowedValues: - GitHub - Bitbucket - GitHubEnterpriseServer Resources: CodeStarConnection: Type: AWS::CodeStarConnections::Connection Properties: ConnectionName: !Ref ConnectionName ProviderType: !Ref ProviderType Outputs: CodeStarConnectionArn: Description: The ARN of the CodeStar Connection Value: !Ref CodeStarConnection ================================================ FILE: unsorted/cloud-custodian/event-forwarding/v1/README.md ================================================ # product.template # Description Resourceses needed in spoke account for cloudcustodian {"framework": "servicecatalog-products", "role": "product", "product-set": "cloud-custodian", "product": "event-forwarding", "version": "v1"} ## Parameters The list of parameters for this template: ### CloudCustodianSpokeIAMRolePath Type: String Default: / ### CloudCustodianHubAccountId Type: String ### EnableLogFileValidation Type: String Description: Specifies whether log file validation is enabled ### CloudCustodianHubEventBusName Type: String Default: default Description: The arn of the event bus from the hub account where c7n policies are deployed ### CloudCustodianRuleForwarderIAMRoleName Type: String Default: CloudCustodianRuleForwarder Description: The name of the IAM service role that will put events ## Resources The list of resources this template creates: ### TrailBucket Type: AWS::S3::Bucket ### TrailBucketPolicy Type: AWS::S3::BucketPolicy ### Trail Type: AWS::CloudTrail::Trail ### ForwarderRuleRole Type: AWS::IAM::Role Description: Service IAM Role to be used when triggering the event rule ### ForwarderRule Type: AWS::Events::Rule ## Outputs The list of outputs this template exposes: ### CustodianRoleName Description: Name of the IAM role to be used by the hub account ### CustodianRoleArn Description: Arn of the IAM role to be used by the hub account ### TrailBucketName Description: Name of the s3 bucket the trail is delivering logs to ================================================ FILE: unsorted/cloud-custodian/event-forwarding/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Resourceses needed in spoke account for cloudcustodian {"framework": "servicecatalog-products", "role": "product", "product-set": "cloud-custodian", "product": "event-forwarding", "version": "v1"} Parameters: CloudCustodianSpokeIAMRolePath: Type: String Default: / CloudCustodianHubAccountId: Type: String EnableLogFileValidation: Type: String Default: false Description: Specifies whether log file validation is enabled CloudCustodianHubEventBusName: Type: String Default: default Description: The arn of the event bus from the hub account where c7n policies are deployed CloudCustodianRuleForwarderIAMRoleName: Type: String Default: CloudCustodianRuleForwarder Description: The name of the IAM service role that will put events Resources: TrailBucket: Type: AWS::S3::Bucket DeletionPolicy: Retain Properties: PublicAccessBlockConfiguration: BlockPublicAcls: True BlockPublicPolicy: True IgnorePublicAcls: True RestrictPublicBuckets: True BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: SSEAlgorithm: AES256 VersioningConfiguration: Status: Enabled TrailBucketPolicy: Type: AWS::S3::BucketPolicy Properties: Bucket: !Ref TrailBucket PolicyDocument: Version: "2012-10-17" Statement: - Sid: "AWSCloudTrailAclCheck" Effect: "Allow" Principal: Service: "cloudtrail.amazonaws.com" Action: "s3:GetBucketAcl" Resource: !Sub "arn:${AWS::Partition}:s3:::${TrailBucket}" - Sid: "AWSCloudTrailWrite" Effect: "Allow" Principal: Service: "cloudtrail.amazonaws.com" Action: "s3:PutObject" Resource: !Sub "arn:${AWS::Partition}:s3:::${TrailBucket}/AWSLogs/${AWS::AccountId}/*" Condition: StringEquals: s3:x-amz-acl: "bucket-owner-full-control" Trail: Type: AWS::CloudTrail::Trail DependsOn: - TrailBucket - TrailBucketPolicy Properties: S3BucketName: !Ref TrailBucket EnableLogFileValidation: !Ref EnableLogFileValidation IsLogging: true IsMultiRegionTrail: true IncludeGlobalServiceEvents: true ForwarderRuleRole: Type: AWS::IAM::Role Description: Service IAM Role to be used when triggering the event rule Properties: RoleName: !Ref CloudCustodianRuleForwarderIAMRoleName Path: !Ref CloudCustodianSpokeIAMRolePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Action: sts:AssumeRole Effect: Allow Principal: Service: events.amazonaws.com Policies: - PolicyName: AllowPutEvents PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - events:PutEvents Resource: !Sub "arn:${AWS::Partition}:events:${AWS::Region}:${CloudCustodianHubAccountId}:event-bus/${CloudCustodianHubEventBusName}" ForwarderRule: Type: AWS::Events::Rule Properties: Description: | AWS CloudWatch Event Rule to forward events from the spoke back to the hub for cloudtrail mode policies EventPattern: detail-type: - "AWS API Call via CloudTrail" detail: eventSource: - "cloudtrail.amazonaws.com" State: "ENABLED" Targets: - Arn: !Sub "arn:${AWS::Partition}:events:${AWS::Region}:${CloudCustodianHubAccountId}:event-bus/${CloudCustodianHubEventBusName}" Id: "CloudCustodianHubEventBusArn" RoleArn: !GetAtt ForwarderRuleRole.Arn Outputs: TrailBucketName: Value: !Ref TrailBucket Description: Name of the s3 bucket the trail is delivering logs to ================================================ FILE: unsorted/cloud-custodian/hub/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: Multi-Account Deployment of CloudCustodian Metadata: AWS::CloudFormation::Interface: ParameterGroups: - Label: default: "Environment & AWS Regions" Parameters: - SourceCodeBucketName - SourceCodeZipFileName - CloudFormationStackName - RepositoryName - Regions - Label: default: "Cloud9 Configuration" Parameters: - Cloud9InstanceType - Cloud9StopTime - Label: default: "SQS and SNS" Parameters: - SQSQueueName - SNSTopicAlertDisplayName - SNSTopicAlertTopicName ParameterLabels: #Cloud9 Configuration Cloud9InstanceType: default: Cloud9 instance type Cloud9StopTime: default: Cloud9 instance stop time #Environment & AWS Organizations & AWS Regions CloudFormationStackName: default: "Stack Name" RepositoryName: default: "What is the CodeCommit Repository Name" Regions: default: "Provide a list of Regions for CloudCustodian in the example format --region us-east-1 --region us-west-1 or --region all" SourceCodeBucketName: default: "Provide the name of the S3 Bucket Containing the Zip file of source code" SourceCodeZipFileName: default: "Provide the name of the Zip file containing the Source Code" Parameters: SourceCodeBucketName: Type: String Default: cloudcustodiandeploymentquickstart SourceCodeZipFileName: Type: String Default: cloudcustodiandeploymentquickstart.zip RepositoryName: Description: The name of the CodeCommit Repository for storing the CloudCustodian policies Type: String Default: "CloudCustodianPolicies" Cloud9InstanceType: Description: The instance type of the new Amazon EC2 instance that AWS Cloud9 will launch for the development environment. Type: String Default: t2.micro AllowedValues: - t2.micro - t2.small - m4.large - t2.nano - c4.large - t2.medium - t2.large - m4.xlarge - t2.xlarge - c4.xlarge - c4.2xlarge - m4.2xlarge - t2.2xlarge - c4.4xlarge - m4.4xlarge - c4.8xlarge - m4.10xlarge - m4.16xlarge Cloud9StopTime: Description: The number of minutes until the running instance is shut down after the environment has last been used. Type: String Default: '30' CloudFormationStackName: Type: String Default: 'CloudCustodian' CloudFormationTemplateName: Type: String Default: 'master.yml' CloudFormationTemplateConfigFileName: Type: String Default: "CloudCustodianMasterParameters.json" Regions: Type: String Default: --region us-east-1 SQSQueueName: Type: String Default: CustodianSQSMailer Description: Provide a name for the Custodian SQS Queue SNSTopicAlertDisplayName: Type: String Default: CustodianAlerts Description: Enter a descriptive name for the SNS Alerts Topic SNSTopicAlertTopicName: Type: String Default: CustodianAlerts Description: Enter a Topic Name for the SNS Alert Topic Resources: OrganizationIdLambdaFunction: Type: AWS::Lambda::Function Properties: Role: !GetAtt LambdaRole.Arn Timeout: 300 Handler: index.handler Runtime: python3.7 MemorySize: 128 Code: ZipFile: !Sub | import boto3 import json import cfnresponse import logging logging.basicConfig(level=logging.DEBUG) log = logging.getLogger(__name__) def handler(event, context): log.info(event) try: client = boto3.client('organizations') org_id = client.describe_organization()['Organization']['Id'] log.info(org_id) except Exception: log.exception('get org_id has failed') request_type = event['RequestType'] responseValue = org_id responseData = {} responseData['OrgId'] = responseValue log.info(responseData) physicalResourceId = {} try: if request_type == 'Create': cfnresponse.send(event, context, cfnresponse.SUCCESS, responseData, physicalResourceId ) elif request_type == 'Update': cfnresponse.send(event, context, cfnresponse.SUCCESS, {"Message": "Updated"}, physicalResourceId) elif request_type == 'Delete': cfnresponse.send(event, context, cfnresponse.SUCCESS, {"Message": "Deleted"}, physicalResourceId) else: cfnresponse.send(event, context, cfnresponse.FAILED, {"Message": "Unexpected"}, physicalResourceId) except Exception: #sending FAILED signal to CloudFormation cfnresponse.send(event, context, cfnresponse.FAILED, responseData, physicalResourceId ) log.exception('The cloudformation signal has failed') LambdaRole: Type: AWS::IAM::Role Properties: AssumeRolePolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Principal: Service: lambda.amazonaws.com Action: sts:AssumeRole ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole - arn:aws:iam::aws:policy/AWSOrganizationsReadOnlyAccess GetOrgID: Type: 'Custom::GetOrgID' Properties: ServiceToken: !GetAtt OrganizationIdLambdaFunction.Arn Cloud9Instance: Type: AWS::Cloud9::EnvironmentEC2 Properties: Name: !Ref 'AWS::StackName' Description: !Sub '${AWS::AccountId}-${AWS::Region}-${AWS::StackName}' AutomaticStopTimeMinutes: !Ref 'Cloud9StopTime' InstanceType: !Ref 'Cloud9InstanceType' Repositories: - PathComponent: !Sub '/${RepositoryName}' RepositoryUrl: !Sub https://git-codecommit.${AWS::Region}.amazonaws.com/v1/repos/${RepositoryName} #Cloud9 Role Provides full access to AWS services and resources, but does not allow managment of Users and groups. Cloud9Role: Type: AWS::IAM::Role Properties: AssumeRolePolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Principal: Service: ec2.amazonaws.com Action: sts:AssumeRole ManagedPolicyArns: - arn:aws:iam::aws:policy/PowerUserAccess Cloud9InstanceProfile: Type: AWS::IAM::InstanceProfile DependsOn: 'Cloud9Instance' Properties: Path: / Roles: - !Ref Cloud9Role EventBusPolicy: Type: AWS::Events::EventBusPolicy Properties: Action: events:PutEvents Principal: "*" StatementId: OrganizationAccounts Condition: Type: "StringEquals" Key: "aws:PrincipalOrgID" Value: !GetAtt GetOrgID.OrgId SQSMailer: Type: AWS::SQS::Queue Properties: QueueName: !Ref SQSQueueName SNSAlertsTopic: Type: AWS::SNS::Topic Properties: DisplayName: !Ref SNSTopicAlertDisplayName TopicName: !Ref SNSTopicAlertTopicName CloudCustodianAdminRole: Type: 'AWS::IAM::Role' Properties: AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Action: sts:AssumeRole Effect: Allow Principal: Service: - lambda.amazonaws.com - codebuild.amazonaws.com - Effect: "Allow" Principal: AWS: !Join - '' - - 'arn:' - !Ref 'AWS::Partition' - ':iam::' - !Ref 'AWS::AccountId' - ':root' Action: - "sts:AssumeRole" - Effect: "Allow" Principal: AWS: !GetAtt CloudCustodianDeploymentPipelineRole.Arn Action: - "sts:AssumeRole" ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess RoleName: CloudCustodianAdminRole CloudCustodianMailerRole: Type: 'AWS::IAM::Role' Properties: AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Action: sts:AssumeRole Effect: Allow Principal: Service: lambda.amazonaws.com - Effect: "Allow" Principal: AWS: !Join - '' - - 'arn:' - !Ref 'AWS::Partition' - ':iam::' - !Ref 'AWS::AccountId' - ':root' Action: - "sts:AssumeRole" ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole CloudCustodianMailerRolePolicy: Type: "AWS::IAM::Policy" Properties: PolicyName: "MailerRolePolicy" PolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Action: - sqs:DeleteMessage - sqs:GetQueueUrl - sqs:ListDeadLetterSourceQueues - sqs:ChangeMessageVisibility - sns:Publish - sqs:DeleteMessageBatch - sqs:SendMessageBatch - sqs:ReceiveMessage - sqs:SendMessage - sqs:GetQueueAttributes - sqs:ListQueueTags - sqs:ChangeMessageVisibilityBatch Resource: !GetAtt SQSMailer.Arn - Effect: "Allow" Action: - ses:SendEmail - ses:SendRawEmail Resource: "*" Roles: - Ref: "CloudCustodianMailerRole" CloudCustodianBackup: Type: AWS::S3::Bucket Properties: PublicAccessBlockConfiguration: BlockPublicAcls: True BlockPublicPolicy: True IgnorePublicAcls: True RestrictPublicBuckets: True BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: SSEAlgorithm: AES256 VersioningConfiguration: Status: Enabled CloudFormationRole: Type: AWS::IAM::Role Properties: AssumeRolePolicyDocument: Statement: - Action: ['sts:AssumeRole'] Effect: Allow Principal: Service: [cloudformation.amazonaws.com] Version: '2012-10-17' Path: / Policies: - PolicyName: CloudFormationPolicy PolicyDocument: Version: '2012-10-17' Statement: - Action: - 's3:*' - 'iam:*' - 'codepipeline:*' - 'codecommit:*' - 'codebuild:*' - 'cloudwatch:*' - 'events:*' - 'sqs:*' - 'sns:*' - 'cloud9:*' - 'lambda:*' Effect: Allow Resource: '*' CloudCustodianDeploymentPipelineRole: Type: 'AWS::IAM::Role' Properties: AssumeRolePolicyDocument: Statement: - Action: 'sts:AssumeRole' Effect: Allow Principal: Service: codepipeline.amazonaws.com Version: 2012-10-17 CloudCustodianDeploymentPipelineRolePolicy: Type: 'AWS::IAM::Policy' Properties: PolicyDocument: Statement: - Action: - 'cloudformation:CreateStack' - 'cloudformation:DescribeStacks' - 'cloudformation:DeleteStack' - 'cloudformation:UpdateStack' - 'cloudformation:CreateChangeSet' - 'cloudformation:ExecuteChangeSet' - 'cloudformation:DeleteChangeSet' - 'cloudformation:DescribeChangeSet' - 'cloudformation:SetStackPolicy' - 'iam:PassRole' Effect: Allow Resource: '*' - Action: - 'codecommit:CancelUploadArchive' - 'codecommit:GetBranch' - 'codecommit:GetCommit' - 'codecommit:GetUploadArchiveStatus' - 'codecommit:UploadArchive' Effect: Allow Resource: !Sub 'arn:${AWS::Partition}:codecommit:${AWS::Region}:${AWS::AccountId}:${CloudCustodianPoliciesRepo.Name}' - Action: - 's3:*' - 's3:PutObject' Effect: Allow Resource: - '*' - !GetAtt ArtifactsBucket.Arn - !Sub '${ArtifactsBucket.Arn}/*' - Action: - 'codebuild:BatchGetBuilds' - 'codebuild:StartBuild' - 'codebuild:StopBuild' Effect: Allow Resource: - !GetAtt CloudCustodianPolicyValidationProject.Arn - !GetAtt CloudCustodianPolicyCleanupDryRunProject.Arn - !GetAtt CloudCustodianPolicyCleanupProject.Arn - !GetAtt CloudCustodianPolicyDeploymentDryRunProject.Arn - !GetAtt CloudCustodianPolicyDeploymentProject.Arn - !GetAtt CloudCustodianPolicyDeploymentOrgProject.Arn - !GetAtt BackupOfCloudCustodianToS3Project.Arn - Action: - 'lambda:GetFunction' Effect: Allow Resource: - !Sub 'arn:${AWS::Partition}:lambda:${AWS::Region}:${AWS::AccountId}:function:cloud-custodian-mailer' - Action: - 'ec2:DescribeRegions' Effect: Allow Resource: '*' Version: 2012-10-17 PolicyName: CloudCustodianDeploymentPipelineRolePolicy Roles: - !Ref CloudCustodianDeploymentPipelineRole CloudCustodianDeploymentQuickStart: Type: 'AWS::CodePipeline::Pipeline' Properties: Name: CloudCustodianDeploymentQuickstart RoleArn: !GetAtt CloudCustodianDeploymentPipelineRole.Arn Stages: - Name: Source Actions: - Name: RetrieveCodeAction ActionTypeId: Category: Source Owner: AWS Version: "1" Provider: CodeCommit Configuration: RepositoryName: !Sub '${CloudCustodianPoliciesRepo.Name}' BranchName: master InputArtifacts: [] RunOrder: 1 OutputArtifacts: - Name: source - Name: CreateStack Actions: - Name: CreateStack ActionTypeId: Category: Deploy Owner: AWS Provider: CloudFormation Version: "1" InputArtifacts: - Name: source Configuration: ActionMode: CREATE_UPDATE Capabilities: CAPABILITY_NAMED_IAM RoleArn: !GetAtt [CloudFormationRole, Arn] StackName: !Ref CloudFormationStackName TemplateConfiguration: !Sub "source::${CloudFormationTemplateConfigFileName}" TemplatePath: !Sub "source::${CloudFormationTemplateName}" RunOrder: 1 - Name: ValidatePolicies Actions: - Name: CustodianPolicyValidation ActionTypeId: Category: Test Owner: AWS Provider: CodeBuild Version: '1' Configuration: ProjectName: !Ref CloudCustodianPolicyValidationProject InputArtifacts: - Name: source OutputArtifacts: [] RunOrder: 1 - Name: DeployCloudCustodianPolicies Actions: - Name: PolicyDeploy ActionTypeId: Category: Test Owner: AWS Provider: CodeBuild Version: '1' Configuration: ProjectName: !Ref CloudCustodianPolicyDeploymentProject InputArtifacts: - Name: source OutputArtifacts: [] RunOrder: 1 - Name: PolicyCleanup ActionTypeId: Category: Test Owner: AWS Provider: CodeBuild Version: '1' Configuration: ProjectName: !Ref CloudCustodianPolicyCleanupProject InputArtifacts: - Name: source OutputArtifacts: [] RunOrder: 1 - Name: Backup Actions: - Name: BackupToS3 ActionTypeId: Category: Test Owner: AWS Provider: CodeBuild Version: '1' Configuration: ProjectName: !Ref BackupOfCloudCustodianToS3Project InputArtifacts: - Name: source OutputArtifacts: [] RunOrder: 1 ArtifactStore: Location: !Ref ArtifactsBucket Type: S3 RestartExecutionOnUpdate: true DependsOn: - CloudCustodianDeploymentPipelineRolePolicy CloudCustodianPoliciesRepo: Type: 'AWS::CodeCommit::Repository' Properties: Code: S3: Bucket: !Ref SourceCodeBucketName Key: !Ref SourceCodeZipFileName RepositoryName: !Ref RepositoryName ArtifactsBucket: Type: 'AWS::S3::Bucket' CloudCustodianDeploymentQuickStartProjectRole: Type: 'AWS::IAM::Role' Properties: AssumeRolePolicyDocument: Statement: - Action: 'sts:AssumeRole' Effect: Allow Principal: Service: codebuild.amazonaws.com Version: 2012-10-17 RoleName: CloudCustodianPolicyValidationProjectRole CloudCustodianDeploymentQuickstartProjectPolicy: Type: 'AWS::IAM::Policy' Properties: PolicyDocument: Statement: - Action: - 'logs:CreateLogGroup' - 'logs:CreateLogStream' - 'logs:PutLogEvents' - 'logs:DescribeLogGroups' Effect: Allow Resource: - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:/aws/codebuild/${CloudCustodianPolicyValidationProject}' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:/aws/codebuild/${CloudCustodianPolicyValidationProject}:*' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:/aws/codebuild/${CloudCustodianPolicyCleanupDryRunProject}' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:/aws/codebuild/${CloudCustodianPolicyCleanupDryRunProject}:*' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:/aws/codebuild/${CloudCustodianPolicyCleanupProject}' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:/aws/codebuild/${CloudCustodianPolicyCleanupProject}:*' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:/aws/codebuild/${CloudCustodianPolicyDeploymentDryRunProject}' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:/aws/codebuild/${CloudCustodianPolicyDeploymentDryRunProject}:*' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:/aws/codebuild/${CloudCustodianPolicyDeploymentProject}' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:/aws/codebuild/${CloudCustodianPolicyDeploymentProject}:*' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:/aws/codebuild/${CloudCustodianPolicyDeploymentOrgProject}' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:/aws/codebuild/${CloudCustodianPolicyDeploymentOrgProject}:*' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:/cloud-custodian/policies' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:/cloud-custodian/policies:*' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:*:log-stream' - !Sub 'arn:${AWS::Partition}:logs:*:${AWS::AccountId}:log-group:*:log-stream:*' - Action: 's3:GetObject' Effect: Allow Resource: !Sub '${ArtifactsBucket.Arn}/*' - Action: - 'lambda:GetFunction' - 'lambda:CreateFunction' - 'lambda:UpdateFunctionCode' - 'lambda:AddPermission' Effect: Allow Resource: - !Sub 'arn:${AWS::Partition}:lambda:${AWS::Region}:${AWS::AccountId}:function:cloud-custodian-mailer' - Action: - 'iam:PassRole' Effect: Allow Resource: - !GetAtt CloudCustodianAdminRole.Arn - !GetAtt CloudCustodianMailerRole.Arn - Action: 's3:GetObject' Effect: Allow Resource: !Sub '${ArtifactsBucket.Arn}/*' - Action: 'sts:AssumeRole' Effect: Allow Resource: !Sub 'arn:${AWS::Partition}:iam::${AWS::AccountId}:role/CloudCustodianAdminRole' - Action: 's3:*' Effect: Allow Resource: - !GetAtt CloudCustodianBackup.Arn - !Sub ${CloudCustodianBackup.Arn}/* - Action: - 'events:DescribeRule' - 'events:PutRule' - 'events:ListTargetsByRule' - 'events:PutTargets' Effect: Allow Resource: - !Sub 'arn:${AWS::Partition}:events:${AWS::Region}:${AWS::AccountId}:role/cloud-custodian-mailer' Version: 2012-10-17 PolicyName: CloudCustodianPolicyValidationProjectRolePolicy Roles: - !Ref CloudCustodianDeploymentQuickStartProjectRole # CodeBuild Projects CloudCustodianPolicyValidationProject: Type: 'AWS::CodeBuild::Project' Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:2.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianDeploymentQuickStartProjectRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.7 commands: - if [ -d "c7n-policies" ] || [ -d "c7n-org-policies" ]; then pip install c7n; fi - if [ -d "c7n-policies" ] || [ -d "c7n-org-policies" ]; then pip install c7n-mailer; fi build: commands: - if [ -d "c7n-policies" ]; then custodian validate c7n-policies/*; fi - if [ -d "c7n-org-policies" ]; then custodian validate c7n-org-policies/*; fi - if [ ! -d "c7n-policies"]; then echo "WARNING - The c7n-policies directory does not exist, create a directory called c7n-policies and add your policies to this directory"; fi - if [ ! -d "c7n-org-policies" ]; then echo "WARNING - The c7n-org-policies directory does not exist, create a directory called c7n-org-policies and add your policies to this directory"; fi Type: NO_SOURCE CloudCustodianPolicyCleanupDryRunProject: Type: 'AWS::CodeBuild::Project' Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:2.0 PrivilegedMode: false Type: LINUX_CONTAINER Name: CloudCustodianPolicyCleanupDryRunProject ServiceRole: !GetAtt CloudCustodianDeploymentQuickStartProjectRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.7 commands: - if [ ! -d "archive-policies" ]; then echo "INFO - There is no archive-policies directory, move policies from the c7n-policies directoy to the archive-policies directory";fi - if [ -d "archive-policies" ]; then pip install c7n; fi build: commands: - if [ -d "archive-policies" ]; then curl -LO https://github.com/cloud-custodian/cloud-custodian/blob/master/tools/ops/mugc.py;fi - if [ -d "archive-policies" ]; then python mugc.py --dryrun --assume arn:aws:iam::${AWS::AccountId}:role/CloudCustodianAdminRole -c c7n-policies/*;fi artifacts: base-directory: output files: '**/*' Type: NO_SOURCE CloudCustodianPolicyCleanupProject: Type: 'AWS::CodeBuild::Project' Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:2.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianDeploymentQuickStartProjectRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.7 commands: - DIR="c7n-policies" - pip install c7n build: commands: - | if [ "$(ls -A $DIR)" ] then curl -LO https://github.com/cloud-custodian/cloud-custodian/blob/master/tools/ops/mugc.py && python mugc.py ${Regions} --assume arn:aws:iam::${AWS::AccountId}:role/CloudCustodianAdminRole -c c7n-policies/* else echo "c7n-policies directory is empty, nothing to do" fi artifacts: base-directory: output files: '**/*' Type: NO_SOURCE CloudCustodianPolicyDeploymentDryRunProject: Type: 'AWS::CodeBuild::Project' Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:2.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianDeploymentQuickStartProjectRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.7 commands: - if [ -d "c7n-policies" ]; then pip install c7n; fi - if [ -d "c7n_mailer_config" ]; then pip install c7n-mailer; fi - if [ -d "c7n-org-policies" ]; then pip install c7n-org; fi - if [ ! -d "c7n-policies" ]; then echo "INFO - The c7n-policies directory does not exist. Create this and add cloudtrail policies to this directory to deploy"; fi - if [ ! -d "c7n-org-policies" ]; then echo "INFO - The c7n-org-policies directory does not exist create this directory and add policies you want to deploy locally in the individual accounts"; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi build: commands: #- c7n-mailer --config c7n_mailer_config/mailer.yml --templates c7n_mailer_config/templates/ --update-lambda - if [ -d "c7n-policies" ]; then custodian run --dryrun --assume arn:aws:iam::${AWS::AccountId}:role/CloudCustodianAdminRole --output-dir output/logs c7n-policies/* -m aws -l /cloud-custodian/policies; fi - if [ -d "c7n-org-policies" ]; then c7n-org run --dryrun -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions} --verbose; fi - if [ ! -d "c7n-policies" ]; then echo "INFO - The c7n-policies directory does not exist. Create this and add cloudtrail policies to this directory to deploy"; fi - if [ ! -d "c7n-org-policies" ]; then echo "INFO - The c7n-org-policies directory does not exist create this directory and add policies you want to deploy locally in the individual accounts"; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi artifacts: base-directory: output files: '**/*' Type: NO_SOURCE CloudCustodianPolicyDeploymentProject: Type: 'AWS::CodeBuild::Project' Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:2.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianDeploymentQuickStartProjectRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.7 commands: - if [ -d "c7n-policies" ]; then pip install c7n; fi - if [ -d "c7n_mailer_config" ]; then pip install c7n-mailer; fi - if [ -d "c7n-org-policies" ]; then pip install c7n-org; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi build: commands: #- c7n-mailer --config c7n_mailer_config/mailer.yml --templates c7n_mailer_config/templates/ --update-lambda - if [ -d "c7n-policies" ]; then custodian run ${Regions} --assume arn:aws:iam::${AWS::AccountId}:role/CloudCustodianAdminRole --output-dir output/logs c7n-policies/*; fi - if [ -d "c7n-org-policies" ]; then c7n-org run -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions} --verbose; fi - if [ ! -d "c7n-org-policies" ]; then echo "The c7n-org-policies directory does not exist, nothing to do"; fi - if [ ! -d "c7n-policies" ]; then echo "The c7n-policies directory does not exist, nothing to do"; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi artifacts: base-directory: output files: '**/*' Type: NO_SOURCE CloudCustodianPolicyDeploymentOrgProject: Type: 'AWS::CodeBuild::Project' Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:2.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianDeploymentQuickStartProjectRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.7 commands: - if [ -d "c7n-org-policies" ]; then pip install c7n; fi - if [ -d "c7n-org-policies" ]; then pip install c7n-mailer; fi - if [ -d "c7n-org-policies" ]; then pip install c7n-org; fi build: commands: - if [ -d "c7n-org-policies" ]; then c7n-org run -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions} --verbose; fi - if [ -d "c7n-org-policies" ]; then c7n-org report -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions}; fi - if [ ! -d "c7n-org-policies" ]; then echo "The c7n-org-policies directory does not exist, recommended removing this action from the pipeline."; fi artifacts: base-directory: output files: '**/*' Type: NO_SOURCE # Backup of CloudCustodian to S3 BackupOfCloudCustodianToS3Project: Type: AWS::CodeBuild::Project Properties: Artifacts: Type: NO_ARTIFACTS Description: Creates a zip file backup of all the code and policies and saves to a versioned S3 bucket Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/python:3.6.5 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianDeploymentQuickStartProjectRole.Arn LogsConfig: CloudWatchLogs: Status: ENABLED Source: BuildSpec: !Sub | version: '0.2' phases: install: commands: - ls -al build: commands: - tar -cf cloudcustodianpolicies.tar.gz ./ - aws s3 cp cloudcustodianpolicies.tar.gz s3://${CloudCustodianBackup} Type: NO_SOURCE Outputs: OrgId: Description: Organization Id Value: !GetAtt GetOrgID.OrgId AlertsTopicARN: Description: ARN of the Alerts SNS Topic Value: Ref: SNSAlertsTopic SQSMailer: Description: URL of the SQS queue to be used in c7n_mailer_config/mailer.yml Value: Ref: SQSMailer CustodianMailerRole: Description: ARN of the CustodianMailerRole Value: !Ref CloudCustodianMailerRole Cloud9Instance: Description: Cloud9 Instance Name Value: !Ref 'Cloud9Instance' Cloud9InstanceProfileName: Description: Cloud9 Instance Profile Name Value: !Ref 'Cloud9InstanceProfile' Cloud9InstanceProfileArn: Description: Cloud9 Instance Profile Arn Value: !GetAtt 'Cloud9InstanceProfile.Arn' IDEStackName: Description: CloudFormation Stack Name Value: !Ref 'AWS::StackName' ================================================ FILE: unsorted/cloud-custodian/hub/v2/README.md ================================================ # product.template # Description Resources needed for custodian hub account {"framework": "servicecatalog-products", "role": "product", "product-set": "cloud-custodian", "product": "hub", "version": "v2"} ## Parameters The list of parameters for this template: ### C7NVersion Type: String Default: 0.9.6 Description: which version of cloud custodian should be used ### C7NMailerVersion Type: String Default: 0.6.5 Description: which version of cloud custodian mailer should be used ### C7NOrgVersion Type: String Default: 0.3.1 Description: which version of cloud custodian c7n orgs should be used ### AWSOrgID Type: String Description: Organization Id for the current AWS Organization ### CloudCustodianHubIAMRolePath Type: String Default: /cloudcustodian/ Description: Path to use for all IAM roles created in this template ### CloudCustodianHubIAMRoleName Type: String Default: CustodianHub ### CloudCustodianSQSMailerQueueName Type: String Default: CustodianSQSMailer Description: Provide a name for the Custodian SQS Queue ### CloudCustodianSNSTopicDisplayName Type: String Default: CustodianAlerts Description: Enter a descriptive name for the SNS Alerts Topic ### CloudCustodianSNSTopicName Type: String Default: CustodianAlerts Description: Enter a Topic Name for the SNS Alert Topic ### CloudCustodianPoliciesCodeCommitRepoName Type: String Default: CloudCustodianPolicies Description: Name to give the codecommit repo to use for the custodian policies ### Regions Type: String Default: --region us-east-1 ## Resources The list of resources this template creates: ### EventBusPolicy Type: AWS::Events::EventBusPolicy Description: Grants perms for the given org to putevents ### CloudCustodianSQSMailer Type: AWS::SQS::Queue Description: SQS Queue to be used by c7n ### CloudCustodianSNSTopic Type: AWS::SNS::Topic Description: SNS Topic to be used by c7n ### CloudCustodianAdminRole Type: AWS::IAM::Role Description: IAM Role to be used by c7n to run in the hub account ### CloudCustodianCodeBuildRole Type: AWS::IAM::Role Description: IAM Role for codebuild to use when provisioning and cleaning up c7n policies ### CloudCustodianDeploymentPipelineRole Type: AWS::IAM::Role Description: IAM Role to be used by the pipeline to orchestrate the provisioning and clean up of c7n policies ### CloudCustodianPoliciesRepo Type: AWS::CodeCommit::Repository Description: git repo for the policies ### CloudCustodianPipelineArtifactStore Type: AWS::S3::Bucket Description: Bucket for artifacts from the pipeline ### CloudCustodianPipeline Type: AWS::CodePipeline::Pipeline Description: Pipeline used to provision and clean up c7n policies ### CloudCustodianPolicyValidationProject Type: AWS::CodeBuild::Project Description: Will validate policies in c7n-policies ### CloudCustodianPolicyCleanupDryRunProject Type: AWS::CodeBuild::Project Description: Will run mugc dry-run policies for archive-policies ### CloudCustodianPolicyCleanupProject Type: AWS::CodeBuild::Project Description: If you have a c7n-policies directory this will run mugc using them ### CloudCustodianPolicyDeploymentDryRunProject Type: AWS::CodeBuild::Project Description: If you have a c7n-policies directory this will dry-run them, if you have c7n-org-policies directory it will dry-run them ### CloudCustodianPolicyDeploymentProject Type: AWS::CodeBuild::Project Description: If you have a c7n-policies directory this will run them, if you have c7n-org-policies directory it will run them ### CloudCustodianPolicyDeploymentOrgProject Type: AWS::CodeBuild::Project Description: if you have a c7n-org-policies directory this will run c7-org for you ## Outputs The list of outputs this template exposes: ### CloudCustodianSNSTopicArn Description: ARN of the Alerts SNS Topic ### CloudCustodianSNSTopicName Description: Topic Name of the Alerts SNS Topic ### CloudCustodianSQSMailerUrl Description: URL of the SQS queue ### CloudCustodianSQSMailerUrlArn Description: Arn of the SQS queue ### CloudCustodianSQSMailerUrlQueueName Description: QueueName of the SQS queue ================================================ FILE: unsorted/cloud-custodian/hub/v2/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Resources needed for custodian hub account {"framework": "servicecatalog-products", "role": "product", "product-set": "cloud-custodian", "product": "hub", "version": "v2"} Parameters: C7NVersion: Type: String Description: which version of cloud custodian should be used Default: "0.9.6" C7NMailerVersion: Type: String Description: which version of cloud custodian mailer should be used Default: "0.6.5" C7NOrgVersion: Type: String Description: which version of cloud custodian c7n orgs should be used Default: "0.3.1" AWSOrgID: Type: String Description: Organization Id for the current AWS Organization AllowedPattern: o-[a-z0-9]{10,32} CloudCustodianHubIAMRolePath: Type: String Description: Path to use for all IAM roles created in this template Default: "/cloudcustodian/" CloudCustodianHubIAMRoleName: Type: String Default: CustodianHub CloudCustodianSQSMailerQueueName: Type: String Default: CustodianSQSMailer Description: Provide a name for the Custodian SQS Queue CloudCustodianSNSTopicDisplayName: Type: String Default: CustodianAlerts Description: Enter a descriptive name for the SNS Alerts Topic CloudCustodianSNSTopicName: Type: String Default: CustodianAlerts Description: Enter a Topic Name for the SNS Alert Topic CloudCustodianPoliciesCodeCommitRepoName: Type: String Description: Name to give the codecommit repo to use for the custodian policies Default: CloudCustodianPolicies Regions: Type: String Default: --region us-east-1 Resources: EventBusPolicy: Type: AWS::Events::EventBusPolicy Description: Grants perms for the given org to putevents Properties: Action: events:PutEvents Principal: "*" StatementId: OrganizationAccounts Condition: Type: "StringEquals" Key: "aws:PrincipalOrgID" Value: !Ref AWSOrgID CloudCustodianSQSMailer: Type: AWS::SQS::Queue Description: SQS Queue to be used by c7n Properties: QueueName: !Ref CloudCustodianSQSMailerQueueName CloudCustodianSNSTopic: Type: AWS::SNS::Topic Description: SNS Topic to be used by c7n Properties: DisplayName: !Ref CloudCustodianSNSTopicDisplayName TopicName: !Ref CloudCustodianSNSTopicName CloudCustodianAdminRole: Type: AWS::IAM::Role Description: IAM Role to be used by c7n to run in the hub account Properties: RoleName: !Ref CloudCustodianHubIAMRoleName Path: !Ref CloudCustodianHubIAMRolePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Action: sts:AssumeRole Effect: Allow Principal: Service: lambda.amazonaws.com - Effect: "Allow" Principal: AWS: !Sub "arn:${AWS::Partition}:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" ManagedPolicyArns: - !Sub "arn:aws:iam::${AWS::Partition}:policy/AdministratorAccess" CloudCustodianCodeBuildRole: Type: AWS::IAM::Role Description: IAM Role for codebuild to use when provisioning and cleaning up c7n policies Properties: Path: !Ref CloudCustodianHubIAMRolePath AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Action: sts:AssumeRole Effect: Allow Principal: Service: - codebuild.amazonaws.com Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !GetAtt CloudCustodianAdminRole.Arn ManagedPolicyArns: - arn:aws:iam::aws:policy/AWSCodeBuildAdminAccess - arn:aws:iam::aws:policy/CloudWatchLogsFullAccess - arn:aws:iam::aws:policy/AmazonS3FullAccess CloudCustodianDeploymentPipelineRole: Type: 'AWS::IAM::Role' Description: IAM Role to be used by the pipeline to orchestrate the provisioning and clean up of c7n policies Properties: Path: !Ref CloudCustodianHubIAMRolePath AssumeRolePolicyDocument: Statement: - Action: 'sts:AssumeRole' Effect: Allow Principal: Service: codepipeline.amazonaws.com Version: 2012-10-17 ManagedPolicyArns: - arn:aws:iam::aws:policy/AWSCodePipelineFullAccess - arn:aws:iam::aws:policy/AWSCodeCommitFullAccess - arn:aws:iam::aws:policy/AmazonS3FullAccess - arn:aws:iam::aws:policy/AWSCodeBuildAdminAccess - arn:aws:iam::aws:policy/CloudWatchLogsFullAccess CloudCustodianPoliciesRepo: Type: AWS::CodeCommit::Repository Description: git repo for the policies Properties: RepositoryName: !Ref CloudCustodianPoliciesCodeCommitRepoName CloudCustodianPipelineArtifactStore: Type: AWS::S3::Bucket Description: Bucket for artifacts from the pipeline Properties: PublicAccessBlockConfiguration: BlockPublicAcls: True BlockPublicPolicy: True IgnorePublicAcls: True RestrictPublicBuckets: True BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: SSEAlgorithm: AES256 VersioningConfiguration: Status: Enabled CloudCustodianPipeline: Type: AWS::CodePipeline::Pipeline Description: Pipeline used to provision and clean up c7n policies Properties: ArtifactStore: Type: S3 Location: Ref: CloudCustodianPipelineArtifactStore RoleArn: !GetAtt CloudCustodianDeploymentPipelineRole.Arn Stages: - Name: Source Actions: - Name: RetrieveCodeAction ActionTypeId: Category: Source Owner: AWS Version: "1" Provider: CodeCommit Configuration: RepositoryName: !GetAtt CloudCustodianPoliciesRepo.Name BranchName: master RunOrder: 1 OutputArtifacts: - Name: source - Name: ValidatePolicies Actions: - Name: CustodianPolicyValidation ActionTypeId: Category: Test Owner: AWS Provider: CodeBuild Version: '1' Configuration: ProjectName: !Ref CloudCustodianPolicyValidationProject InputArtifacts: - Name: source OutputArtifacts: [] RunOrder: 1 - Name: DeployCloudCustodianPolicies Actions: - Name: PolicyDeploy ActionTypeId: Category: Build Owner: AWS Provider: CodeBuild Version: '1' Configuration: ProjectName: !Ref CloudCustodianPolicyDeploymentProject InputArtifacts: - Name: source OutputArtifacts: - Name: deploymentArtifacts RunOrder: 1 - Name: PolicyCleanup ActionTypeId: Category: Build Owner: AWS Provider: CodeBuild Version: '1' Configuration: ProjectName: !Ref CloudCustodianPolicyCleanupProject InputArtifacts: - Name: source OutputArtifacts: - Name: cleanupArtifacts RunOrder: 1 CloudCustodianPolicyValidationProject: Type: AWS::CodeBuild::Project Description: "Will validate policies in c7n-policies" Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: "CloudCustodianCodeBuildRole" Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ -d "c7n-policies" ] || [ -d "c7n-org-policies" ]; then pip install c7n==${C7NVersion}; fi - if [ -d "c7n-policies" ] || [ -d "c7n-org-policies" ]; then pip install c7n-mailer==${C7NMailerVersion}; fi build: commands: - if [ -d "c7n-policies" ]; then custodian validate c7n-policies/*; fi - if [ -d "c7n-org-policies" ]; then custodian validate c7n-org-policies/*; fi - if [ ! -d "c7n-policies"]; then echo "WARNING - The c7n-policies directory does not exist, create a directory called c7n-policies and add your policies to this directory"; fi - if [ ! -d "c7n-org-policies" ]; then echo "WARNING - The c7n-org-policies directory does not exist, create a directory called c7n-org-policies and add your policies to this directory"; fi Type: NO_SOURCE CloudCustodianPolicyCleanupDryRunProject: Type: AWS::CodeBuild::Project Description: "Will run mugc dry-run policies for archive-policies" Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: "CloudCustodianCodeBuildRole" Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ ! -d "archive-policies" ]; then echo "INFO - There is no archive-policies directory, move policies from the c7n-policies directoy to the archive-policies directory";fi - if [ -d "archive-policies" ]; then pip install c7n==${C7NVersion}; fi build: commands: - if [ -d "archive-policies" ]; then curl -LO curl https://raw.githubusercontent.com/cloud-custodian/cloud-custodian/$(custodian version).0/tools/ops/mugc.py ;fi - if [ -d "archive-policies" ]; then python mugc.py --dryrun --assume ${CloudCustodianAdminRole.Arn} -c c7n-policies/*;fi artifacts: files: - '**/*' Type: NO_SOURCE CloudCustodianPolicyCleanupProject: Type: AWS::CodeBuild::Project Description: "If you have a c7n-policies directory this will run mugc using them" Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: "CloudCustodianCodeBuildRole" Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - pip install c7n==${C7NVersion} build: commands: - curl -LO https://raw.githubusercontent.com/cloud-custodian/cloud-custodian/$(custodian version).0/tools/ops/mugc.py - python mugc.py ${Regions} --assume ${CloudCustodianAdminRole.Arn} -c c7n-policies/* artifacts: files: - '**/*' Type: NO_SOURCE CloudCustodianPolicyDeploymentDryRunProject: Type: AWS::CodeBuild::Project Description: "If you have a c7n-policies directory this will dry-run them, if you have c7n-org-policies directory it will dry-run them" Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: "CloudCustodianCodeBuildRole" Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ -d "c7n-policies" ]; then pip install c7n==${C7NVersion}; fi - if [ -d "c7n_mailer_config" ]; then pip install c7n-mailer==${C7NMailerVersion}; fi - if [ -d "c7n-org-policies" ]; then pip install c7n-org==${C7NOrgVersion}; fi - if [ ! -d "c7n-policies" ]; then echo "INFO - The c7n-policies directory does not exist. Create this and add cloudtrail policies to this directory to deploy"; fi - if [ ! -d "c7n-org-policies" ]; then echo "INFO - The c7n-org-policies directory does not exist create this directory and add policies you want to deploy locally in the individual accounts"; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi build: commands: #- c7n-mailer --config c7n_mailer_config/mailer.yml --templates c7n_mailer_config/templates/ --update-lambda - if [ -d "c7n-policies" ]; then custodian run --dryrun --assume ${CloudCustodianAdminRole.Arn} --output-dir output/logs c7n-policies/* -m aws -l /cloud-custodian/policies; fi - if [ -d "c7n-org-policies" ]; then c7n-org run --dryrun -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions} --verbose; fi - if [ ! -d "c7n-policies" ]; then echo "INFO - The c7n-policies directory does not exist. Create this and add cloudtrail policies to this directory to deploy"; fi - if [ ! -d "c7n-org-policies" ]; then echo "INFO - The c7n-org-policies directory does not exist create this directory and add policies you want to deploy locally in the individual accounts"; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi artifacts: files: - '**/*' Type: NO_SOURCE CloudCustodianPolicyDeploymentProject: Type: AWS::CodeBuild::Project Description: "If you have a c7n-policies directory this will run them, if you have c7n-org-policies directory it will run them" Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: "CloudCustodianCodeBuildRole" Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ -d "c7n-policies" ]; then pip install c7n==${C7NVersion}; fi - if [ -d "c7n_mailer_config" ]; then pip install c7n-mailer==${C7NMailerVersion}; fi - if [ -d "c7n-org-policies" ]; then pip install c7n-org==${C7NOrgVersion}; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi build: commands: #- c7n-mailer --config c7n_mailer_config/mailer.yml --templates c7n_mailer_config/templates/ --update-lambda - if [ -d "c7n-policies" ]; then custodian run ${Regions} --assume ${CloudCustodianAdminRole.Arn} --output-dir output/logs c7n-policies/*; fi - if [ -d "c7n-org-policies" ]; then c7n-org run -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions} --verbose; fi - if [ ! -d "c7n-org-policies" ]; then echo "The c7n-org-policies directory does not exist, nothing to do"; fi - if [ ! -d "c7n-policies" ]; then echo "The c7n-policies directory does not exist, nothing to do"; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi artifacts: files: - '**/*' Type: NO_SOURCE CloudCustodianPolicyDeploymentOrgProject: Type: AWS::CodeBuild::Project Description: "if you have a c7n-org-policies directory this will run c7-org for you" Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: "CloudCustodianCodeBuildRole" Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ -d "c7n-policies" ]; then pip install c7n==${C7NVersion}; fi - if [ -d "c7n_mailer_config" ]; then pip install c7n-mailer==${C7NMailerVersion}; fi - if [ -d "c7n-org-policies" ]; then pip install c7n-org==${C7NOrgVersion}; fi build: commands: - if [ -d "c7n-org-policies" ]; then c7n-org run -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions} --verbose; fi - if [ -d "c7n-org-policies" ]; then c7n-org report -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions}; fi - if [ ! -d "c7n-org-policies" ]; then echo "The c7n-org-policies directory does not exist, recommended removing this action from the pipeline."; fi artifacts: files: - '**/*' Type: NO_SOURCE Outputs: CloudCustodianSNSTopicArn: Description: ARN of the Alerts SNS Topic Value: !Ref CloudCustodianSNSTopic CloudCustodianSNSTopicName: Description: Topic Name of the Alerts SNS Topic Value: !GetAtt CloudCustodianSNSTopic.TopicName CloudCustodianSQSMailerUrl: Description: URL of the SQS queue Value: !Ref CloudCustodianSQSMailer CloudCustodianSQSMailerUrlArn: Description: Arn of the SQS queue Value: !GetAtt CloudCustodianSQSMailer.Arn CloudCustodianSQSMailerUrlQueueName: Description: QueueName of the SQS queue Value: !GetAtt CloudCustodianSQSMailer.QueueName ================================================ FILE: unsorted/cloud-custodian/hub/v3/README.md ================================================ # product.template # Description Resources needed for custodian hub account {"framework": "servicecatalog-products", "role": "product", "product-set": "cloud-custodian", "product": "hub", "version": "v2"} ## Parameters The list of parameters for this template: ### C7NVersion Type: String Default: 0.9.6 Description: which version of cloud custodian should be used ### C7NMailerVersion Type: String Default: 0.6.5 Description: which version of cloud custodian mailer should be used ### C7NOrgVersion Type: String Default: 0.3.1 Description: which version of cloud custodian c7n orgs should be used ### AWSOrgID Type: String Description: Organization Id for the current AWS Organization ### CloudCustodianHubIAMRolePath Type: String Default: /cloudcustodian/ Description: Path to use for all IAM roles created in this template ### CloudCustodianHubIAMRoleName Type: String Default: CustodianHub ### CloudCustodianSQSMailerQueueName Type: String Default: CustodianSQSMailer Description: Provide a name for the Custodian SQS Queue ### CloudCustodianSNSTopicDisplayName Type: String Default: CustodianAlerts Description: Enter a descriptive name for the SNS Alerts Topic ### CloudCustodianSNSTopicName Type: String Default: CustodianAlerts Description: Enter a Topic Name for the SNS Alert Topic ### RepositoryProviderType Type: String Default: CodeCommit Description: The name of your code repository provider ### CloudCustodianPoliciesCodeCommitRepoName Type: String Default: CloudCustodianPolicies Description: Name to give the codecommit repo to use for the custodian policies ### CodeStarConnectionArn: Type: String Description: The ARN of the CodeStar Connection needed for third party repo integration Default: "" ### ProviderRepositoryId: Type: String Description: The owner and name of the repository where source changes are to be detected Default: "(Ex: user/repository-name)" ### ProviderRepositoryBranchName: Type: String Description: The name of the branch where source changes are to be detected. Default: "master" ### Regions Type: String Default: --region us-east-1 ## Resources The list of resources this template creates: ### EventBusPolicy Type: AWS::Events::EventBusPolicy Description: Grants perms for the given org to putevents ### CloudCustodianSQSMailer Type: AWS::SQS::Queue Description: SQS Queue to be used by c7n ### CloudCustodianSNSTopic Type: AWS::SNS::Topic Description: SNS Topic to be used by c7n ### CloudCustodianAdminRole Type: AWS::IAM::Role Description: IAM Role to be used by c7n to run in the hub account ### CloudCustodianCodeBuildRole Type: AWS::IAM::Role Description: IAM Role for codebuild to use when provisioning and cleaning up c7n policies ### CloudCustodianDeploymentPipelineRole Type: AWS::IAM::Role Description: IAM Role to be used by the pipeline to orchestrate the provisioning and clean up of c7n policies ### CloudCustodianPoliciesRepo Type: AWS::CodeCommit::Repository Description: git repo for the policies ### CloudCustodianPipelineArtifactStore Type: AWS::S3::Bucket Description: Bucket for artifacts from the pipeline ### CloudCustodianPipeline Type: AWS::CodePipeline::Pipeline Description: Pipeline used to provision and clean up c7n policies ### CloudCustodianPolicyValidationProject Type: AWS::CodeBuild::Project Description: Will validate policies in c7n-policies ### CloudCustodianPolicyCleanupDryRunProject Type: AWS::CodeBuild::Project Description: Will run mugc dry-run policies for archive-policies ### CloudCustodianPolicyCleanupProject Type: AWS::CodeBuild::Project Description: If you have a c7n-policies directory this will run mugc using them ### CloudCustodianPolicyDeploymentDryRunProject Type: AWS::CodeBuild::Project Description: If you have a c7n-policies directory this will dry-run them, if you have c7n-org-policies directory it will dry-run them ### CloudCustodianPolicyDeploymentProject Type: AWS::CodeBuild::Project Description: If you have a c7n-policies directory this will run them, if you have c7n-org-policies directory it will run them ### CloudCustodianPolicyDeploymentOrgProject Type: AWS::CodeBuild::Project Description: if you have a c7n-org-policies directory this will run c7-org for you ## Outputs The list of outputs this template exposes: ### CloudCustodianSNSTopicArn Description: ARN of the Alerts SNS Topic ### CloudCustodianSNSTopicName Description: Topic Name of the Alerts SNS Topic ### CloudCustodianSQSMailerUrl Description: URL of the SQS queue ### CloudCustodianSQSMailerUrlArn Description: Arn of the SQS queue ### CloudCustodianSQSMailerUrlQueueName Description: QueueName of the SQS queue ================================================ FILE: unsorted/cloud-custodian/hub/v3/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Resources needed for custodian hub account {"framework": "servicecatalog-products", "role": "product", "product-set": "cloud-custodian", "product": "hub", "version": "v3"} Parameters: C7NVersion: Type: String Description: which version of cloud custodian should be used Default: "0.9.6" C7NMailerVersion: Type: String Description: which version of cloud custodian mailer should be used Default: "0.6.5" C7NOrgVersion: Type: String Description: which version of cloud custodian c7n orgs should be used Default: "0.3.1" AWSOrgID: Type: String Description: Organization Id for the current AWS Organization AllowedPattern: o-[a-z0-9]{10,32} CloudCustodianHubIAMRolePath: Type: String Description: Path to use for all IAM roles created in this template Default: "/cloudcustodian/" CloudCustodianHubIAMRoleName: Type: String Default: CustodianHub CloudCustodianSQSMailerQueueName: Type: String Default: CustodianSQSMailer Description: Provide a name for the Custodian SQS Queue CloudCustodianSNSTopicDisplayName: Type: String Default: CustodianAlerts Description: Enter a descriptive name for the SNS Alerts Topic CloudCustodianSNSTopicName: Type: String Default: CustodianAlerts Description: Enter a Topic Name for the SNS Alert Topic RepositoryProviderType: Type: String Description: The name of your code repository provider Default: "CodeCommit" AllowedValues: - CodeCommit - GitHub - Bitbucket - GitHubEnterpriseServer CloudCustodianPoliciesCodeCommitRepoName: Type: String Description: Name to give the codecommit repo to use for the custodian policies Default: CloudCustodianPolicies CodeStarConnectionArn: Type: String Description: The ARN of the CodeStar Connection needed for third party repo integration Default: "" ProviderRepositoryId: Type: String Description: The owner and name of the repository where source changes are to be detected Default: "(Ex: user/repository-name)" ProviderRepositoryBranchName: Type: String Description: The name of the branch where source changes are to be detected. Default: "master" Regions: Type: String Default: --region us-east-1 Conditions: IsProviderCodeCommit: !Equals [ !Ref RepositoryProviderType, CodeCommit ] Resources: EventBusPolicy: Type: AWS::Events::EventBusPolicy Description: Grants perms for the given org to putevents Properties: Action: events:PutEvents Principal: "*" StatementId: OrganizationAccounts Condition: Type: "StringEquals" Key: "aws:PrincipalOrgID" Value: !Ref AWSOrgID CloudCustodianSQSMailer: Type: AWS::SQS::Queue Description: SQS Queue to be used by c7n Properties: QueueName: !Ref CloudCustodianSQSMailerQueueName CloudCustodianSNSTopic: Type: AWS::SNS::Topic Description: SNS Topic to be used by c7n Properties: DisplayName: !Ref CloudCustodianSNSTopicDisplayName TopicName: !Ref CloudCustodianSNSTopicName CloudCustodianAdminRole: Type: AWS::IAM::Role Description: IAM Role to be used by c7n to run in the hub account Properties: RoleName: !Ref CloudCustodianHubIAMRoleName Path: !Ref CloudCustodianHubIAMRolePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Action: sts:AssumeRole Effect: Allow Principal: Service: lambda.amazonaws.com - Effect: "Allow" Principal: AWS: !Sub "arn:${AWS::Partition}:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" ManagedPolicyArns: - !Sub "arn:aws:iam::${AWS::Partition}:policy/AdministratorAccess" CloudCustodianCodeBuildRole: Type: AWS::IAM::Role Description: IAM Role for codebuild to use when provisioning and cleaning up c7n policies Properties: Path: !Ref CloudCustodianHubIAMRolePath AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Action: sts:AssumeRole Effect: Allow Principal: Service: - codebuild.amazonaws.com Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !GetAtt CloudCustodianAdminRole.Arn ManagedPolicyArns: - arn:aws:iam::aws:policy/AWSCodeBuildAdminAccess - arn:aws:iam::aws:policy/CloudWatchLogsFullAccess - arn:aws:iam::aws:policy/AmazonS3FullAccess CloudCustodianDeploymentPipelineRole: Type: 'AWS::IAM::Role' Description: IAM Role to be used by the pipeline to orchestrate the provisioning and clean up of c7n policies Properties: Path: !Ref CloudCustodianHubIAMRolePath AssumeRolePolicyDocument: Statement: - Action: 'sts:AssumeRole' Effect: Allow Principal: Service: codepipeline.amazonaws.com Version: 2012-10-17 ManagedPolicyArns: - arn:aws:iam::aws:policy/AWSCodePipelineFullAccess - arn:aws:iam::aws:policy/AWSCodeCommitFullAccess - arn:aws:iam::aws:policy/AmazonS3FullAccess - arn:aws:iam::aws:policy/AWSCodeBuildAdminAccess - arn:aws:iam::aws:policy/CloudWatchLogsFullAccess - !Ref CloudCustodianDeploymentPipelineCustomPolicy CloudCustodianDeploymentPipelineCustomPolicy: Type: AWS::IAM::ManagedPolicy Properties: PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - codestar-connections:* Resource: - !Sub arn:${AWS::Partition}:codestar-connections:${AWS::Region}:${AWS::AccountId}:connection/* CloudCustodianPoliciesRepo: Type: AWS::CodeCommit::Repository Description: git repo for the policies Condition: IsProviderCodeCommit Properties: RepositoryName: !Ref CloudCustodianPoliciesCodeCommitRepoName CloudCustodianPipelineArtifactStore: Type: AWS::S3::Bucket Description: Bucket for artifacts from the pipeline Properties: PublicAccessBlockConfiguration: BlockPublicAcls: True BlockPublicPolicy: True IgnorePublicAcls: True RestrictPublicBuckets: True BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: SSEAlgorithm: AES256 VersioningConfiguration: Status: Enabled CloudCustodianPipeline: Type: AWS::CodePipeline::Pipeline Description: Pipeline used to provision and clean up c7n policies Properties: ArtifactStore: Type: S3 Location: Ref: CloudCustodianPipelineArtifactStore RoleArn: !GetAtt CloudCustodianDeploymentPipelineRole.Arn Stages: - Name: Source Actions: - Name: RetrieveCodeAction ActionTypeId: Category: Source Owner: AWS Version: "1" Provider: Fn::If: - IsProviderCodeCommit - CodeCommit - CodeStarSourceConnection Configuration: RepositoryName: Fn::If: - IsProviderCodeCommit - !GetAtt CloudCustodianPoliciesRepo.Name - !Ref AWS::NoValue ConnectionArn: Fn::If: - IsProviderCodeCommit - !Ref AWS::NoValue - !Ref CodeStarConnectionArn FullRepositoryId: Fn::If: - IsProviderCodeCommit - !Ref AWS::NoValue - !Ref ProviderRepositoryId BranchName: !Ref ProviderRepositoryBranchName OutputArtifactFormat: Fn::If: - IsProviderCodeCommit - !Ref AWS::NoValue - CODE_ZIP RunOrder: 1 OutputArtifacts: - Name: source - Name: ValidatePolicies Actions: - Name: CustodianPolicyValidation ActionTypeId: Category: Test Owner: AWS Provider: CodeBuild Version: '1' Configuration: ProjectName: !Ref CloudCustodianPolicyValidationProject InputArtifacts: - Name: source OutputArtifacts: [] RunOrder: 1 - Name: DeployCloudCustodianPolicies Actions: - Name: PolicyDeploy ActionTypeId: Category: Build Owner: AWS Provider: CodeBuild Version: '1' Configuration: ProjectName: !Ref CloudCustodianPolicyDeploymentProject InputArtifacts: - Name: source OutputArtifacts: - Name: deploymentArtifacts RunOrder: 1 - Name: PolicyCleanup ActionTypeId: Category: Build Owner: AWS Provider: CodeBuild Version: '1' Configuration: ProjectName: !Ref CloudCustodianPolicyCleanupProject InputArtifacts: - Name: source OutputArtifacts: - Name: cleanupArtifacts RunOrder: 1 CloudCustodianPolicyValidationProject: Type: AWS::CodeBuild::Project Description: "Will validate policies in c7n-policies" DependsOn: [ CloudCustodianCodeBuildRole ] Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianCodeBuildRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ -d "c7n-policies" ] || [ -d "c7n-org-policies" ]; then pip install c7n==${C7NVersion}; fi - if [ -d "c7n-policies" ] || [ -d "c7n-org-policies" ]; then pip install c7n-mailer==${C7NMailerVersion}; fi build: commands: - if [ -d "c7n-policies" ]; then custodian validate c7n-policies/*; fi - if [ -d "c7n-org-policies" ]; then custodian validate c7n-org-policies/*; fi - if [ ! -d "c7n-policies"]; then echo "WARNING - The c7n-policies directory does not exist, create a directory called c7n-policies and add your policies to this directory"; fi - if [ ! -d "c7n-org-policies" ]; then echo "WARNING - The c7n-org-policies directory does not exist, create a directory called c7n-org-policies and add your policies to this directory"; fi Type: NO_SOURCE CloudCustodianPolicyCleanupDryRunProject: Type: AWS::CodeBuild::Project Description: "Will run mugc dry-run policies for archive-policies" DependsOn: [ CloudCustodianCodeBuildRole ] Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianCodeBuildRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ ! -d "archive-policies" ]; then echo "INFO - There is no archive-policies directory, move policies from the c7n-policies directoy to the archive-policies directory";fi - if [ -d "archive-policies" ]; then pip install c7n==${C7NVersion}; fi build: commands: - if [ -d "archive-policies" ]; then curl -LO curl https://raw.githubusercontent.com/cloud-custodian/cloud-custodian/$(custodian version).0/tools/ops/mugc.py ;fi - if [ -d "archive-policies" ]; then python mugc.py --dryrun --assume ${CloudCustodianAdminRole.Arn} -c c7n-policies/*;fi artifacts: files: - '**/*' Type: NO_SOURCE CloudCustodianPolicyCleanupProject: Type: AWS::CodeBuild::Project Description: "If you have a c7n-policies directory this will run mugc using them" DependsOn: [ CloudCustodianCodeBuildRole ] Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianCodeBuildRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - pip install c7n==${C7NVersion} build: commands: - curl -LO https://raw.githubusercontent.com/cloud-custodian/cloud-custodian/$(custodian version).0/tools/ops/mugc.py - python mugc.py ${Regions} --assume ${CloudCustodianAdminRole.Arn} -c c7n-policies/* artifacts: files: - '**/*' Type: NO_SOURCE CloudCustodianPolicyDeploymentDryRunProject: Type: AWS::CodeBuild::Project Description: "If you have a c7n-policies directory this will dry-run them, if you have c7n-org-policies directory it will dry-run them" DependsOn: [ CloudCustodianCodeBuildRole ] Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianCodeBuildRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ -d "c7n-policies" ]; then pip install c7n==${C7NVersion}; fi - if [ -d "c7n_mailer_config" ]; then pip install c7n-mailer==${C7NMailerVersion}; fi - if [ -d "c7n-org-policies" ]; then pip install c7n-org==${C7NOrgVersion}; fi - if [ ! -d "c7n-policies" ]; then echo "INFO - The c7n-policies directory does not exist. Create this and add cloudtrail policies to this directory to deploy"; fi - if [ ! -d "c7n-org-policies" ]; then echo "INFO - The c7n-org-policies directory does not exist create this directory and add policies you want to deploy locally in the individual accounts"; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi build: commands: #- c7n-mailer --config c7n_mailer_config/mailer.yml --templates c7n_mailer_config/templates/ --update-lambda - if [ -d "c7n-policies" ]; then custodian run --dryrun --assume ${CloudCustodianAdminRole.Arn} --output-dir output/logs c7n-policies/* -m aws -l /cloud-custodian/policies; fi - if [ -d "c7n-org-policies" ]; then c7n-org run --dryrun -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions} --verbose; fi - if [ ! -d "c7n-policies" ]; then echo "INFO - The c7n-policies directory does not exist. Create this and add cloudtrail policies to this directory to deploy"; fi - if [ ! -d "c7n-org-policies" ]; then echo "INFO - The c7n-org-policies directory does not exist create this directory and add policies you want to deploy locally in the individual accounts"; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi artifacts: files: - '**/*' Type: NO_SOURCE CloudCustodianPolicyDeploymentProject: Type: AWS::CodeBuild::Project Description: "If you have a c7n-policies directory this will run them, if you have c7n-org-policies directory it will run them" DependsOn: [ CloudCustodianCodeBuildRole ] Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianCodeBuildRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ -d "c7n-policies" ]; then pip install c7n==${C7NVersion}; fi - if [ -d "c7n_mailer_config" ]; then pip install c7n-mailer==${C7NMailerVersion}; fi - if [ -d "c7n-org-policies" ]; then pip install c7n-org==${C7NOrgVersion}; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi build: commands: #- c7n-mailer --config c7n_mailer_config/mailer.yml --templates c7n_mailer_config/templates/ --update-lambda - if [ -d "c7n-policies" ]; then custodian run ${Regions} --assume ${CloudCustodianAdminRole.Arn} --output-dir output/logs c7n-policies/*; fi - if [ -d "c7n-org-policies" ]; then c7n-org run -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions} --verbose; fi - if [ ! -d "c7n-org-policies" ]; then echo "The c7n-org-policies directory does not exist, nothing to do"; fi - if [ ! -d "c7n-policies" ]; then echo "The c7n-policies directory does not exist, nothing to do"; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi artifacts: files: - '**/*' Type: NO_SOURCE CloudCustodianPolicyDeploymentOrgProject: Type: AWS::CodeBuild::Project Description: "if you have a c7n-org-policies directory this will run c7-org for you" DependsOn: [ CloudCustodianCodeBuildRole ] Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianCodeBuildRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ -d "c7n-policies" ]; then pip install c7n==${C7NVersion}; fi - if [ -d "c7n_mailer_config" ]; then pip install c7n-mailer==${C7NMailerVersion}; fi - if [ -d "c7n-org-policies" ]; then pip install c7n-org==${C7NOrgVersion}; fi build: commands: - if [ -d "c7n-org-policies" ]; then c7n-org run -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions} --verbose; fi - if [ -d "c7n-org-policies" ]; then c7n-org report -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions}; fi - if [ ! -d "c7n-org-policies" ]; then echo "The c7n-org-policies directory does not exist, recommended removing this action from the pipeline."; fi artifacts: files: - '**/*' Type: NO_SOURCE Outputs: CloudCustodianSNSTopicArn: Description: ARN of the Alerts SNS Topic Value: !Ref CloudCustodianSNSTopic CloudCustodianSNSTopicName: Description: Topic Name of the Alerts SNS Topic Value: !GetAtt CloudCustodianSNSTopic.TopicName CloudCustodianSQSMailerUrl: Description: URL of the SQS queue Value: !Ref CloudCustodianSQSMailer CloudCustodianSQSMailerUrlArn: Description: Arn of the SQS queue Value: !GetAtt CloudCustodianSQSMailer.Arn CloudCustodianSQSMailerUrlQueueName: Description: QueueName of the SQS queue Value: !GetAtt CloudCustodianSQSMailer.QueueName ================================================ FILE: unsorted/cloud-custodian/hub/v4/README.md ================================================ # product.template # Description Resources needed for custodian hub account {"framework": "servicecatalog-products", "role": "product", "product-set": "cloud-custodian", "product": "hub", "version": "v4"} ## Parameters The list of parameters for this template: ### AWSOrgID Type: String Description: Organization Id for the current AWS Organization ## Resources The list of resources this template creates: ### EventBusPolicy Type: AWS::Events::EventBusPolicy Description: Grants perms for the given org to putevents ## Outputs The list of outputs this template exposes: ================================================ FILE: unsorted/cloud-custodian/hub/v4/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Resources needed for custodian hub account {"framework": "servicecatalog-products", "role": "product", "product-set": "cloud-custodian", "product": "hub", "version": "v4"} Parameters: AWSOrgID: Type: String Description: Organization Id for the current AWS Organization AllowedPattern: o-[a-z0-9]{10,32} Resources: EventBusPolicy: Type: AWS::Events::EventBusPolicy Description: Grants perms for the given org to putevents Properties: Action: events:PutEvents Principal: "*" StatementId: OrganizationAccounts Condition: Type: "StringEquals" Key: "aws:PrincipalOrgID" Value: !Ref AWSOrgID ================================================ FILE: unsorted/cloud-custodian/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: codestar-connection: portfolio: demo-central-it-team-portfolio product: cloud-custodian-hub version: v4 parameters: ConnectionName: Default: SET_ME ProviderType: Default: SET_ME deploy_to: tags: - regions: default_region tag: scope:cloud-custodian-hub event-forwarding: portfolio: demo-central-it-team-portfolio product: event-forwarding version: v1 parameters: CloudCustodianSpokeIAMRolePath: Default: / CloudCustodianHubAccountId: Default: SET_ME EnableLogFileValidation: Default: false CloudCustodianHubEventBusName: Default: default CloudCustodianRuleForwarderIAMRoleName: Default: CloudCustodianRuleForwarder deploy_to: tags: - regions: enabled_regions tag: scope:cloud-custodian-spoke hub: portfolio: demo-central-it-team-portfolio product: hub version: v4 parameters: AWSOrgID: Default: SET_ME deploy_to: tags: - regions: enabled_regions tag: scope:cloud-custodian-hub pipeline: portfolio: demo-central-it-team-portfolio product: pipeline version: v1 parameters: C7NVersion: Default: "0.9.6" C7NMailerVersion: Default: "0.6.5" C7NOrgVersion: Default: "0.3.1" CloudCustodianHubIAMRolePath: Default: "/cloudcustodian/" CloudCustodianHubIAMRoleName: Default: CustodianHub CloudCustodianSQSMailerQueueName: Default: CustodianSQSMailer CloudCustodianSNSTopicDisplayName: Default: CustodianAlerts CloudCustodianSNSTopicName: Default: CustodianAlerts RepositoryProviderType: Default: "CodeCommit" CloudCustodianPoliciesCodeCommitRepoName: Default: CloudCustodianPolicies CodeStarConnectionArn: Default: SET_ME ProviderRepositoryId: Default: SET_ME ProviderRepositoryBranchName: Default: "master" Regions: Default: --region us-east-1 deploy_to: tags: - regions: default_region tag: scope:cloud-custodian-hub cloud-custodian-spoke: portfolio: demo-central-it-team-portfolio product: cloud-custodian-spoke version: v2 parameters: CloudCustodianSpokeIAMRoleName: Default: Custodian CloudCustodianSpokeIAMRolePath: Default: / CloudCustodianHubAccountId: Default: CloudCustodianHubAccountId deploy_to: tags: - regions: default_region tag: scope:cloud-custodian-spoke ================================================ FILE: unsorted/cloud-custodian/pipeline/v1/README.md ================================================ # product.template # Description Resources needed for custodian hub account {"framework": "servicecatalog-products", "role": "product", "product-set": "cloud-custodian", "product": "pipeline", "version": "v1"} ## Parameters The list of parameters for this template: ### C7NVersion Type: String Default: 0.9.6 Description: which version of cloud custodian should be used ### C7NMailerVersion Type: String Default: 0.6.5 Description: which version of cloud custodian mailer should be used ### C7NOrgVersion Type: String Default: 0.3.1 Description: which version of cloud custodian c7n orgs should be used ### CloudCustodianHubIAMRolePath Type: String Default: /cloudcustodian/ Description: Path to use for all IAM roles created in this template ### CloudCustodianHubIAMRoleName Type: String Default: CustodianHub ### CloudCustodianSQSMailerQueueName Type: String Default: CustodianSQSMailer Description: Provide a name for the Custodian SQS Queue ### CloudCustodianSNSTopicDisplayName Type: String Default: CustodianAlerts Description: Enter a descriptive name for the SNS Alerts Topic ### CloudCustodianSNSTopicName Type: String Default: CustodianAlerts Description: Enter a Topic Name for the SNS Alert Topic ### RepositoryProviderType Type: String Default: CodeCommit Description: The name of your code repository provider ### CloudCustodianPoliciesCodeCommitRepoName Type: String Default: CloudCustodianPolicies Description: Name to give the codecommit repo to use for the custodian policies ### CodeStarConnectionArn Type: String Description: The ARN of the CodeStar Connection needed for third party repo integration ### ProviderRepositoryId Type: String Default: (Ex: user/repository-name) Description: The owner and name of the repository where source changes are to be detected ### ProviderRepositoryBranchName Type: String Default: master Description: The name of the branch where source changes are to be detected. ### Regions Type: String Default: --region us-east-1 ## Resources The list of resources this template creates: ### CloudCustodianSQSMailer Type: AWS::SQS::Queue Description: SQS Queue to be used by c7n ### CloudCustodianSNSTopic Type: AWS::SNS::Topic Description: SNS Topic to be used by c7n ### CloudCustodianAdminRole Type: AWS::IAM::Role Description: IAM Role to be used by c7n to run in the hub account ### CloudCustodianCodeBuildRole Type: AWS::IAM::Role Description: IAM Role for codebuild to use when provisioning and cleaning up c7n policies ### CloudCustodianDeploymentPipelineRole Type: AWS::IAM::Role Description: IAM Role to be used by the pipeline to orchestrate the provisioning and clean up of c7n policies ### CloudCustodianDeploymentPipelineCustomPolicy Type: AWS::IAM::ManagedPolicy ### CloudCustodianPoliciesRepo Type: AWS::CodeCommit::Repository Description: git repo for the policies ### CloudCustodianPipelineArtifactStore Type: AWS::S3::Bucket Description: Bucket for artifacts from the pipeline ### CloudCustodianPipeline Type: AWS::CodePipeline::Pipeline Description: Pipeline used to provision and clean up c7n policies ### CloudCustodianPolicyValidationProject Type: AWS::CodeBuild::Project Description: Will validate policies in c7n-policies ### CloudCustodianPolicyCleanupDryRunProject Type: AWS::CodeBuild::Project Description: Will run mugc dry-run policies for archive-policies ### CloudCustodianPolicyCleanupProject Type: AWS::CodeBuild::Project Description: If you have a c7n-policies directory this will run mugc using them ### CloudCustodianPolicyDeploymentDryRunProject Type: AWS::CodeBuild::Project Description: If you have a c7n-policies directory this will dry-run them, if you have c7n-org-policies directory it will dry-run them ### CloudCustodianPolicyDeploymentProject Type: AWS::CodeBuild::Project Description: If you have a c7n-policies directory this will run them, if you have c7n-org-policies directory it will run them ### CloudCustodianPolicyDeploymentOrgProject Type: AWS::CodeBuild::Project Description: if you have a c7n-org-policies directory this will run c7-org for you ## Outputs The list of outputs this template exposes: ### CloudCustodianSNSTopicArn Description: ARN of the Alerts SNS Topic ### CloudCustodianSNSTopicName Description: Topic Name of the Alerts SNS Topic ### CloudCustodianSQSMailerUrl Description: URL of the SQS queue ### CloudCustodianSQSMailerUrlArn Description: Arn of the SQS queue ### CloudCustodianSQSMailerUrlQueueName Description: QueueName of the SQS queue ================================================ FILE: unsorted/cloud-custodian/pipeline/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Resources needed for custodian hub account {"framework": "servicecatalog-products", "role": "product", "product-set": "cloud-custodian", "product": "pipeline", "version": "v1"} Parameters: C7NVersion: Type: String Description: which version of cloud custodian should be used Default: "0.9.6" C7NMailerVersion: Type: String Description: which version of cloud custodian mailer should be used Default: "0.6.5" C7NOrgVersion: Type: String Description: which version of cloud custodian c7n orgs should be used Default: "0.3.1" CloudCustodianHubIAMRolePath: Type: String Description: Path to use for all IAM roles created in this template Default: "/cloudcustodian/" CloudCustodianHubIAMRoleName: Type: String Default: CustodianHub CloudCustodianSQSMailerQueueName: Type: String Default: CustodianSQSMailer Description: Provide a name for the Custodian SQS Queue CloudCustodianSNSTopicDisplayName: Type: String Default: CustodianAlerts Description: Enter a descriptive name for the SNS Alerts Topic CloudCustodianSNSTopicName: Type: String Default: CustodianAlerts Description: Enter a Topic Name for the SNS Alert Topic RepositoryProviderType: Type: String Description: The name of your code repository provider Default: "CodeCommit" AllowedValues: - CodeCommit - GitHub - Bitbucket - GitHubEnterpriseServer CloudCustodianPoliciesCodeCommitRepoName: Type: String Description: Name to give the codecommit repo to use for the custodian policies Default: CloudCustodianPolicies CodeStarConnectionArn: Type: String Description: The ARN of the CodeStar Connection needed for third party repo integration Default: "" ProviderRepositoryId: Type: String Description: The owner and name of the repository where source changes are to be detected Default: "(Ex: user/repository-name)" ProviderRepositoryBranchName: Type: String Description: The name of the branch where source changes are to be detected. Default: "master" Regions: Type: String Default: --region us-east-1 Conditions: IsProviderCodeCommit: !Equals [ !Ref RepositoryProviderType, CodeCommit ] Resources: CloudCustodianSQSMailer: Type: AWS::SQS::Queue Description: SQS Queue to be used by c7n Properties: QueueName: !Ref CloudCustodianSQSMailerQueueName CloudCustodianSNSTopic: Type: AWS::SNS::Topic Description: SNS Topic to be used by c7n Properties: DisplayName: !Ref CloudCustodianSNSTopicDisplayName TopicName: !Ref CloudCustodianSNSTopicName CloudCustodianAdminRole: Type: AWS::IAM::Role Description: IAM Role to be used by c7n to run in the hub account Properties: RoleName: !Ref CloudCustodianHubIAMRoleName Path: !Ref CloudCustodianHubIAMRolePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Action: sts:AssumeRole Effect: Allow Principal: Service: lambda.amazonaws.com - Effect: "Allow" Principal: AWS: !Sub "arn:${AWS::Partition}:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" ManagedPolicyArns: - !Sub "arn:aws:iam::${AWS::Partition}:policy/AdministratorAccess" CloudCustodianCodeBuildRole: Type: AWS::IAM::Role Description: IAM Role for codebuild to use when provisioning and cleaning up c7n policies Properties: Path: !Ref CloudCustodianHubIAMRolePath AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Action: sts:AssumeRole Effect: Allow Principal: Service: - codebuild.amazonaws.com Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !GetAtt CloudCustodianAdminRole.Arn ManagedPolicyArns: - arn:aws:iam::aws:policy/AWSCodeBuildAdminAccess - arn:aws:iam::aws:policy/CloudWatchLogsFullAccess - arn:aws:iam::aws:policy/AmazonS3FullAccess CloudCustodianDeploymentPipelineRole: Type: 'AWS::IAM::Role' Description: IAM Role to be used by the pipeline to orchestrate the provisioning and clean up of c7n policies Properties: Path: !Ref CloudCustodianHubIAMRolePath AssumeRolePolicyDocument: Statement: - Action: 'sts:AssumeRole' Effect: Allow Principal: Service: codepipeline.amazonaws.com Version: 2012-10-17 ManagedPolicyArns: - arn:aws:iam::aws:policy/AWSCodePipelineFullAccess - arn:aws:iam::aws:policy/AWSCodeCommitFullAccess - arn:aws:iam::aws:policy/AmazonS3FullAccess - arn:aws:iam::aws:policy/AWSCodeBuildAdminAccess - arn:aws:iam::aws:policy/CloudWatchLogsFullAccess - !Ref CloudCustodianDeploymentPipelineCustomPolicy CloudCustodianDeploymentPipelineCustomPolicy: Type: AWS::IAM::ManagedPolicy Properties: PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - codestar-connections:* Resource: - !Sub arn:${AWS::Partition}:codestar-connections:${AWS::Region}:${AWS::AccountId}:connection/* CloudCustodianPoliciesRepo: Type: AWS::CodeCommit::Repository Description: git repo for the policies Condition: IsProviderCodeCommit Properties: RepositoryName: !Ref CloudCustodianPoliciesCodeCommitRepoName CloudCustodianPipelineArtifactStore: Type: AWS::S3::Bucket Description: Bucket for artifacts from the pipeline Properties: PublicAccessBlockConfiguration: BlockPublicAcls: True BlockPublicPolicy: True IgnorePublicAcls: True RestrictPublicBuckets: True BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: SSEAlgorithm: AES256 VersioningConfiguration: Status: Enabled CloudCustodianPipeline: Type: AWS::CodePipeline::Pipeline Description: Pipeline used to provision and clean up c7n policies Properties: ArtifactStore: Type: S3 Location: Ref: CloudCustodianPipelineArtifactStore RoleArn: !GetAtt CloudCustodianDeploymentPipelineRole.Arn Stages: - Name: Source Actions: - Name: RetrieveCodeAction ActionTypeId: Category: Source Owner: AWS Version: "1" Provider: Fn::If: - IsProviderCodeCommit - CodeCommit - CodeStarSourceConnection Configuration: RepositoryName: Fn::If: - IsProviderCodeCommit - !GetAtt CloudCustodianPoliciesRepo.Name - !Ref AWS::NoValue ConnectionArn: Fn::If: - IsProviderCodeCommit - !Ref AWS::NoValue - !Ref CodeStarConnectionArn FullRepositoryId: Fn::If: - IsProviderCodeCommit - !Ref AWS::NoValue - !Ref ProviderRepositoryId BranchName: !Ref ProviderRepositoryBranchName OutputArtifactFormat: Fn::If: - IsProviderCodeCommit - !Ref AWS::NoValue - CODE_ZIP RunOrder: 1 OutputArtifacts: - Name: source - Name: ValidatePolicies Actions: - Name: CustodianPolicyValidation ActionTypeId: Category: Test Owner: AWS Provider: CodeBuild Version: '1' Configuration: ProjectName: !Ref CloudCustodianPolicyValidationProject InputArtifacts: - Name: source OutputArtifacts: [] RunOrder: 1 - Name: DeployCloudCustodianPolicies Actions: - Name: PolicyDeploy ActionTypeId: Category: Build Owner: AWS Provider: CodeBuild Version: '1' Configuration: ProjectName: !Ref CloudCustodianPolicyDeploymentProject InputArtifacts: - Name: source OutputArtifacts: - Name: deploymentArtifacts RunOrder: 1 - Name: PolicyCleanup ActionTypeId: Category: Build Owner: AWS Provider: CodeBuild Version: '1' Configuration: ProjectName: !Ref CloudCustodianPolicyCleanupProject InputArtifacts: - Name: source OutputArtifacts: - Name: cleanupArtifacts RunOrder: 1 CloudCustodianPolicyValidationProject: Type: AWS::CodeBuild::Project Description: "Will validate policies in c7n-policies" DependsOn: [ CloudCustodianCodeBuildRole ] Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianCodeBuildRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ -d "c7n-policies" ] || [ -d "c7n-org-policies" ]; then pip install c7n==${C7NVersion}; fi - if [ -d "c7n-policies" ] || [ -d "c7n-org-policies" ]; then pip install c7n-mailer==${C7NMailerVersion}; fi build: commands: - if [ -d "c7n-policies" ]; then custodian validate c7n-policies/*; fi - if [ -d "c7n-org-policies" ]; then custodian validate c7n-org-policies/*; fi - if [ ! -d "c7n-policies"]; then echo "WARNING - The c7n-policies directory does not exist, create a directory called c7n-policies and add your policies to this directory"; fi - if [ ! -d "c7n-org-policies" ]; then echo "WARNING - The c7n-org-policies directory does not exist, create a directory called c7n-org-policies and add your policies to this directory"; fi Type: NO_SOURCE CloudCustodianPolicyCleanupDryRunProject: Type: AWS::CodeBuild::Project Description: "Will run mugc dry-run policies for archive-policies" DependsOn: [ CloudCustodianCodeBuildRole ] Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianCodeBuildRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ ! -d "archive-policies" ]; then echo "INFO - There is no archive-policies directory, move policies from the c7n-policies directoy to the archive-policies directory";fi - if [ -d "archive-policies" ]; then pip install c7n==${C7NVersion}; fi build: commands: - if [ -d "archive-policies" ]; then curl -LO curl https://raw.githubusercontent.com/cloud-custodian/cloud-custodian/$(custodian version).0/tools/ops/mugc.py ;fi - if [ -d "archive-policies" ]; then python mugc.py --dryrun --assume ${CloudCustodianAdminRole.Arn} -c c7n-policies/*;fi artifacts: files: - '**/*' Type: NO_SOURCE CloudCustodianPolicyCleanupProject: Type: AWS::CodeBuild::Project Description: "If you have a c7n-policies directory this will run mugc using them" DependsOn: [ CloudCustodianCodeBuildRole ] Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianCodeBuildRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - pip install c7n==${C7NVersion} build: commands: - curl -LO https://raw.githubusercontent.com/cloud-custodian/cloud-custodian/$(custodian version).0/tools/ops/mugc.py - python mugc.py ${Regions} --assume ${CloudCustodianAdminRole.Arn} -c c7n-policies/* artifacts: files: - '**/*' Type: NO_SOURCE CloudCustodianPolicyDeploymentDryRunProject: Type: AWS::CodeBuild::Project Description: "If you have a c7n-policies directory this will dry-run them, if you have c7n-org-policies directory it will dry-run them" DependsOn: [ CloudCustodianCodeBuildRole ] Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianCodeBuildRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ -d "c7n-policies" ]; then pip install c7n==${C7NVersion}; fi - if [ -d "c7n_mailer_config" ]; then pip install c7n-mailer==${C7NMailerVersion}; fi - if [ -d "c7n-org-policies" ]; then pip install c7n-org==${C7NOrgVersion}; fi - if [ ! -d "c7n-policies" ]; then echo "INFO - The c7n-policies directory does not exist. Create this and add cloudtrail policies to this directory to deploy"; fi - if [ ! -d "c7n-org-policies" ]; then echo "INFO - The c7n-org-policies directory does not exist create this directory and add policies you want to deploy locally in the individual accounts"; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi build: commands: #- c7n-mailer --config c7n_mailer_config/mailer.yml --templates c7n_mailer_config/templates/ --update-lambda - if [ -d "c7n-policies" ]; then custodian run --dryrun --assume ${CloudCustodianAdminRole.Arn} --output-dir output/logs c7n-policies/* -m aws -l /cloud-custodian/policies; fi - if [ -d "c7n-org-policies" ]; then c7n-org run --dryrun -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions} --verbose; fi - if [ ! -d "c7n-policies" ]; then echo "INFO - The c7n-policies directory does not exist. Create this and add cloudtrail policies to this directory to deploy"; fi - if [ ! -d "c7n-org-policies" ]; then echo "INFO - The c7n-org-policies directory does not exist create this directory and add policies you want to deploy locally in the individual accounts"; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi artifacts: files: - '**/*' Type: NO_SOURCE CloudCustodianPolicyDeploymentProject: Type: AWS::CodeBuild::Project Description: "If you have a c7n-policies directory this will run them, if you have c7n-org-policies directory it will run them" DependsOn: [ CloudCustodianCodeBuildRole ] Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianCodeBuildRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ -d "c7n-policies" ]; then pip install c7n==${C7NVersion}; fi - if [ -d "c7n_mailer_config" ]; then pip install c7n-mailer==${C7NMailerVersion}; fi - if [ -d "c7n-org-policies" ]; then pip install c7n-org==${C7NOrgVersion}; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi build: commands: #- c7n-mailer --config c7n_mailer_config/mailer.yml --templates c7n_mailer_config/templates/ --update-lambda - if [ -d "c7n-policies" ]; then custodian run ${Regions} --assume ${CloudCustodianAdminRole.Arn} --output-dir output/logs c7n-policies/*; fi - if [ -d "c7n-org-policies" ]; then c7n-org run -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions} --verbose; fi - if [ ! -d "c7n-org-policies" ]; then echo "The c7n-org-policies directory does not exist, nothing to do"; fi - if [ ! -d "c7n-policies" ]; then echo "The c7n-policies directory does not exist, nothing to do"; fi - if [ ! -f "c7n-org-policies/accounts.yml" ]; then echo "INFO - There is no accounts.yml file in the c7n-org-policies directory. This configuration file is required to use c7n-org"; fi artifacts: files: - '**/*' Type: NO_SOURCE CloudCustodianPolicyDeploymentOrgProject: Type: AWS::CodeBuild::Project Description: "if you have a c7n-org-policies directory this will run c7-org for you" DependsOn: [ CloudCustodianCodeBuildRole ] Properties: Artifacts: Type: NO_ARTIFACTS Environment: ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 PrivilegedMode: false Type: LINUX_CONTAINER ServiceRole: !GetAtt CloudCustodianCodeBuildRole.Arn Source: BuildSpec: !Sub | version: '0.2' phases: install: runtime-versions: python: 3.x commands: - if [ -d "c7n-policies" ]; then pip install c7n==${C7NVersion}; fi - if [ -d "c7n_mailer_config" ]; then pip install c7n-mailer==${C7NMailerVersion}; fi - if [ -d "c7n-org-policies" ]; then pip install c7n-org==${C7NOrgVersion}; fi build: commands: - if [ -d "c7n-org-policies" ]; then c7n-org run -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions} --verbose; fi - if [ -d "c7n-org-policies" ]; then c7n-org report -c c7n-org-policies/accounts.yml -s output -u c7n-org-policies/* ${Regions}; fi - if [ ! -d "c7n-org-policies" ]; then echo "The c7n-org-policies directory does not exist, recommended removing this action from the pipeline."; fi artifacts: files: - '**/*' Type: NO_SOURCE Outputs: CloudCustodianSNSTopicArn: Description: ARN of the Alerts SNS Topic Value: !Ref CloudCustodianSNSTopic CloudCustodianSNSTopicName: Description: Topic Name of the Alerts SNS Topic Value: !GetAtt CloudCustodianSNSTopic.TopicName CloudCustodianSQSMailerUrl: Description: URL of the SQS queue Value: !Ref CloudCustodianSQSMailer CloudCustodianSQSMailerUrlArn: Description: Arn of the SQS queue Value: !GetAtt CloudCustodianSQSMailer.Arn CloudCustodianSQSMailerUrlQueueName: Description: QueueName of the SQS queue Value: !GetAtt CloudCustodianSQSMailer.QueueName ================================================ FILE: unsorted/cloud-custodian/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: cloud-custodian-codestar-connection Owner: central-it@customer.com Description: resources needed for custodian hub connections that are not codecommit Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/cloud-custodian/codestar-connection Tags: - Key: product-type Value: iam Versions: - Name: v1 Description: resources needed for custodian hub connections that are not codecommit Active: True Source: Provider: CodeCommit Configuration: RepositoryName: cloud-custodian-codestar-connection BranchName: v1 - Name: cloud-custodian-event-forwarding Owner: central-it@customer.com Description: resources needed for custodian spoke event forwarding Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/cloud-custodian/event-forwarding Tags: - Key: product-type Value: iam Versions: - Name: v1 Description: resources needed for custodian spoke accounts Active: True Source: Provider: CodeCommit Configuration: RepositoryName: cloud-custodian-event-forwarding BranchName: v1 - Name: cloud-custodian-hub Owner: central-it@customer.com Description: resources needed for custodian hub account Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/cloud-custodian/hub Tags: - Key: product-type Value: iam Versions: - Name: v4 Description: resources needed for custodian hub account Active: True Source: Provider: CodeCommit Configuration: RepositoryName: cloud-custodian-hub BranchName: v4 - Name: cloud-custodian-pipeline Owner: central-it@customer.com Description: resources needed for custodian hub account cicd pipeline Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/cloud-custodian/pipeline Tags: - Key: product-type Value: iam Versions: - Name: v1 Description: resources needed for custodian hub account Active: True Source: Provider: CodeCommit Configuration: RepositoryName: cloud-custodian-pipeline BranchName: v1 - Name: cloud-custodian-spoke Owner: central-it@customer.com Description: resources needed for custodian spoke account Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/cloud-custodian/spoke Tags: - Key: product-type Value: iam Versions: - Name: v2 Description: resources needed for custodian spoke account Active: True Source: Provider: CodeCommit Configuration: RepositoryName: cloud-custodian-spoke BranchName: v2 ================================================ FILE: unsorted/cloud-custodian/spoke/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: Multi-Account Deployment of CloudCustodian Parameters: CloudCustodianSpokeRoleName: Type: String Default: CloudCustodian CloudCustodianSpokePath: Type: String Default: / CloudCustodianHubAccountId: Type: String Default: / Resources: LambdaRole: Type: AWS::IAM::Role Properties: RoleName: !Ref CloudCustodianSpokeRoleName Path: !Ref CloudCustodianSpokePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${CloudCustodianHubAccountId}:root" Action: - "sts:AssumeRole" ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess ================================================ FILE: unsorted/cloud-custodian/spoke/v2/README.md ================================================ # product.template # Description Resourceses needed in spoke account for cloudcustodian ## Parameters The list of parameters for this template: ### CloudCustodianSpokeIAMRoleName Type: String Default: Custodian ### CloudCustodianSpokeIAMRolePath Type: String Default: / ### CloudCustodianHubAccountId Type: String ## Resources The list of resources this template creates: ### CustodianRole Type: AWS::IAM::Role Description: IAM Role to be assumed by the hub account for c7n to function ## Outputs The list of outputs this template exposes: ### CustodianRoleName Description: Name of the IAM role to be used by the hub account ### CustodianRoleArn Description: Arn of the IAM role to be used by the hub account ================================================ FILE: unsorted/cloud-custodian/spoke/v2/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Resourceses needed in spoke account for cloudcustodian {"framework": "servicecatalog-products", "role": "product", "product-set": "cloud-custodian", "product": "spoke", "version": "v2"} Parameters: CloudCustodianSpokeIAMRoleName: Type: String Default: Custodian CloudCustodianSpokeIAMRolePath: Type: String Default: / CloudCustodianHubAccountId: Type: String Resources: CustodianRole: Type: AWS::IAM::Role Description: IAM Role to be assumed by the hub account for c7n to function Properties: RoleName: !Ref CloudCustodianSpokeIAMRoleName Path: !Ref CloudCustodianSpokeIAMRolePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Action: sts:AssumeRole Effect: Allow Principal: Service: lambda.amazonaws.com - Effect: "Allow" Principal: AWS: !Sub "arn:${AWS::Partition}:iam::${CloudCustodianHubAccountId}:root" Action: - "sts:AssumeRole" ManagedPolicyArns: - !Sub "arn:aws:iam::${AWS::Partition}:policy/AdministratorAccess" Outputs: CustodianRoleName: Value: !Ref CustodianRole Description: Name of the IAM role to be used by the hub account CustodianRoleArn: Value: !GetAtt CustodianRole.Arn Description: Arn of the IAM role to be used by the hub account ================================================ FILE: unsorted/delete-default-networking-custom-resource/delete-default-networking-custom-resource/v1/README.md ================================================ # product.template # Description Deletes the following default networking components from AWS Accounts: 1) Deletes the internet gateway 2) Deletes the subnets 4) Deletes the network access lists 5) Deletes the security groups 6) Deletes the default VPC {"framework": "servicecatalog-products", "role": "product", "product-set": "delete-default-vpc", "product": "delete-default-vpc", "version": "v1"} ## Parameters The list of parameters for this template: ### RegionsToDeleteFrom Type: String Description: Comma separated list of AWS Regions to delete the default VPC from ## Resources The list of resources this template creates: ### DefaultVpcDeletionRole Type: AWS::IAM::Role ### CustomDefaultVpcDeletionPolicy Type: AWS::IAM::Policy ### DefaultVpcDeletionLambda Type: AWS::Lambda::Function ## Outputs The list of outputs this template exposes: ================================================ FILE: unsorted/delete-default-networking-custom-resource/delete-default-networking-custom-resource/v1/product.template.yaml ================================================ AWSTemplateFormatVersion: "2010-09-09" Description: | Deletes the following default networking components from AWS Accounts: 1) Deletes the internet gateway 2) Deletes the subnets 4) Deletes the network access lists 5) Deletes the security groups 6) Deletes the default VPC {"framework": "servicecatalog-products", "role": "product", "product-set": "delete-default-vpc", "product": "delete-default-vpc", "version": "v1"} Parameters: RegionsToDeleteFrom: Description: "Comma separated list of AWS Regions to delete the default VPC from" Type: String DeleteDefaultVPCLambdaExecutionIAMRoleName: Description: "Name of the IAM Role that will be created to execute the lambda function" Type: String Default: "DeleteDefaultVPCLambdaExecution" DeleteDefaultVPCLambdaExecutionIAMRolePath: Description: "The path for the IAM Role that will be created to execute the lambda function" Type: String Default: "/DeleteDefaultVPCLambdaExecution/" DeleteDefaultNetworkingLambdaFunctionName: Description: "The name to give the function that deletes the default networking resources" Type: String Default: "DeleteDefaultNetworking" Resources: DefaultVpcDeletionRole: Type: AWS::IAM::Role Properties: RoleName: !Ref DeleteDefaultVPCLambdaExecutionIAMRoleName Path: !Ref DeleteDefaultVPCLambdaExecutionIAMRolePath AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: sts:AssumeRole Principal: Service: lambda.amazonaws.com Policies: - PolicyName: Organizations PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - "ec2:DescribeInternetGateways" - "ec2:DetachInternetGateway" - "ec2:DeleteInternetGateway" - "ec2:DescribeSubnets" - "ec2:DeleteSubnet" - "ec2:DescribeRouteTables" - "ec2:DeleteRouteTable" - "ec2:DescribeNetworkAcls" - "ec2:DeleteNetworkAcl" - "ec2:DeleteSecurityGroup" - "ec2:DeleteVpc" - "ec2:DescribeRegions" - "ec2:DescribeAccountAttributes" - "ec2:DescribeNetworkInterfaces" - "ec2:DescribeSecurityGroups" - "ec2:DeleteSecurityGroup" - "logs:CreateLogGroup" - "logs:CreateLogStream" - "logs:PutLogEvents" Resource: '*' Function: Type: AWS::Lambda::Function Properties: FunctionName: !Ref DeleteDefaultNetworkingLambdaFunctionName Handler: index.lambda_handler Runtime: python3.7 Timeout: 600 Role: !GetAtt DefaultVpcDeletionRole.Arn Environment: Variables: REGIONS: !Ref RegionsToDeleteFrom Code: ZipFile: | import boto3, logging, traceback, os import cfnresponse logger = logging.getLogger() logger.setLevel(logging.INFO) logging.basicConfig( format='%(levelname)s %(threadName)s [%(filename)s:%(lineno)d] %(message)s', datefmt='%Y-%m-%d:%H:%M:%S', level=logging.INFO ) def delete_igw(client, vpc_id): fltr = [{'Name' : 'attachment.vpc-id', 'Values' : [ vpc_id ]}] try: igw = client.describe_internet_gateways(Filters=fltr)['InternetGateways'] if igw: igw_id = igw[0]['InternetGatewayId'] client.detach_internet_gateway(InternetGatewayId=igw_id, VpcId=vpc_id) client.delete_internet_gateway(InternetGatewayId=igw_id) return except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) raise def delete_subnets(client): try: subs = client.describe_subnets()['Subnets'] if subs: for sub in subs: sub_id = sub['SubnetId'] client.delete_subnet(SubnetId=sub_id) return except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) raise def delete_rtbs(client): try: rtbs = client.describe_route_tables()['RouteTables'] if rtbs: for rtb in rtbs: main = False for assoc in rtb['Associations']: main = assoc['Main'] if main: continue rtb_id = rtb['RouteTableId'] client.delete_route_table(RouteTableId=rtb_id) return except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) raise def delete_acls(client): try: acls = client.describe_network_acls()['NetworkAcls'] if acls: for acl in acls: default = acl['IsDefault'] if default: continue acl_id = acl['NetworkAclId'] client.delete_network_acl(NetworkAclId=acl_id) return except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) raise def delete_sgps(client): try: sgps = client.describe_security_groups()['SecurityGroups'] if sgps: for sgp in sgps: default = sgp['GroupName'] if default == 'default': continue sg_id = sgp['GroupId'] client.delete_security_group(GroupId=sg_id) return except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) raise def delete_vpc(client, vpc_id, region): try: client.delete_vpc(VpcId=vpc_id) logger.info('VPC {} has been deleted from the {} region.'.format(vpc_id, region)) return except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) raise def lambda_handler(e, c): regions = [r.strip() for r in os.getenv("REGIONS").split(",")] logger.info(f"regions {regions}") for region in regions: logger.info(f"starting {region}") ec2 = boto3.client('ec2', region_name=region) try: attribs = ec2.describe_account_attributes(AttributeNames=['default-vpc'])['AccountAttributes'] vpc_id = attribs[0]['AttributeValues'][0]['AttributeValue'] if vpc_id == 'none': logger.info('Default VPC not found in {}'.format(region)) continue # Since most resources are attached an ENI, this checks for additional resources f = [{'Name' : 'vpc-id', 'Values' : [ vpc_id ]}] eni = ec2.describe_network_interfaces(Filters=f)['NetworkInterfaces'] if eni: logger.error('VPC {} has existing resources in the {} region.'.format(vpc_id, region)) continue delete_igw(ec2, vpc_id) delete_subnets(ec2) delete_rtbs(ec2) delete_acls(ec2) delete_sgps(ec2) delete_vpc(ec2, vpc_id, region) except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) cfnresponse.send(e, c, cfnresponse.SUCCESS, {}, "") Execute: Type: Custom::Resource DeletionPolicy: Retain Properties: ServiceToken: !GetAtt Function.Arn RegionsToDeleteFrom: !Ref RegionsToDeleteFrom DeleteDefaultVPCLambdaExecutionIAMRoleName: !Ref DeleteDefaultVPCLambdaExecutionIAMRoleName DeleteDefaultVPCLambdaExecutionIAMRolePath: !Ref DeleteDefaultVPCLambdaExecutionIAMRolePath DeleteDefaultNetworkingLambdaFunctionName: !Ref DeleteDefaultNetworkingLambdaFunctionName ================================================ FILE: unsorted/delete-default-networking-custom-resource/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: delete-default-networking-function: portfolio: demo-central-it-team-portfolio product: delete-default-networking-custom-resource version: v1 parameters: RegionsToDeleteFrom: default: af-south-1, eu-north-1, ap-south-1, eu-west-3, eu-west-2, eu-south-1, eu-west-1, ap-northeast-3, ap-northeast-2, me-south-1, ap-northeast-1, sa-east-1, ca-central-1, ap-east-1, ap-southeast-1, ap-southeast-2, eu-central-1, us-east-1, us-east-2, us-west-1, us-west-2 DeleteDefaultVPCLambdaExecutionIAMRoleName: default: DeleteDefaultVPCLambdaExecution DeleteDefaultVPCLambdaExecutionIAMRolePath: default: /DeleteDefaultVPCLambdaExecution/ DeleteDefaultNetworkingLambdaFunctionName: default: DeleteDefaultNetworking deploy_to: tags: - regions: enabled_regions tag: scope:all ================================================ FILE: unsorted/delete-default-networking-custom-resource/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: delete-default-networking-custom-resource Owner: central-it@customer.com Description: iam-assume-roles-spoke product Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/delete-default-networking-custom-resource Tags: - Key: product-type Value: networking Versions: - Name: v1 Description: Deletes the AWS provided default networking using a custom resource Active: True Source: Provider: CodeCommit Configuration: RepositoryName: delete-default-networking-custom-resource BranchName: master ================================================ FILE: unsorted/governance-at-scale-account-factory/account-bootstrap-shared/v1/README.md ================================================ # account-bootstrap-shared # Description Creates, codebuild project that can be run to bootstrap an account and lambda function that can be used to back a custom resource so the codebuild project can be started from CloudFormation ## Parameters The list of parameters for this template: ### AssumableRoleArnInRootAccountForBootstrapping Type: String Description: The Arn of the assumable role from the root account ### GovernanceAtScaleAccountFactoryIAMRolePath Type: String Description: The path to use for IAM roles in this template ### GovernanceAtScaleAccountFactoryAccountBootstrapSharedBootstrapperIAMRoleName Type: String Description: The name to use for IAM role that will be used by codebuild to bootstrap spokes ### GovernanceAtScaleAccountFactoryAccountBootstrapSharedCustomResourceIAMRoleName Type: String Description: The name to use for IAM role that will be used by lambda to trigger a bootstrap ## Resources The list of resources this template creates: ### BootstrapperRole Type: AWS::IAM::Role ### BootstrapperProject Type: AWS::CodeBuild::Project Description: Wrapper project that: - installs aws-service-catalog-puppet - runs bootstrap-spoke-as ### BootstrapperProjectCustomResourceRole Type: AWS::IAM::Role ### BootstrapperProjectCustomResource Type: AWS::Serverless::Function Description: Lambda function that can be used to back a custom resource. You can get the ARN by checking the SSM Parameter ```account-vending-bootstrapper-lambda```: ```yaml Account: Type: Custom::CustomResource Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn Description: Outputs the BootstrapperProjectCustomResource Arn so others can use it ================================================ FILE: unsorted/governance-at-scale-account-factory/account-bootstrap-shared/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Creates, codebuild project that can be run to bootstrap an account and lambda function that can be used to back a custom resource so the codebuild project can be started from CloudFormation {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-bootstrap-shared", "version": "v1"} Parameters: AssumableRoleArnInRootAccountForBootstrapping: Description: The Arn of the assumable role from the root account Type: String GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String GovernanceAtScaleAccountFactoryAccountBootstrapSharedBootstrapperIAMRoleName: Description: The name to use for IAM role that will be used by codebuild to bootstrap spokes Type: String GovernanceAtScaleAccountFactoryAccountBootstrapSharedCustomResourceIAMRoleName: Description: The name to use for IAM role that will be used by lambda to trigger a bootstrap Type: String Resources: BootstrapperRole: Type: AWS::IAM::Role Properties: RoleName: !Ref GovernanceAtScaleAccountFactoryAccountBootstrapSharedBootstrapperIAMRoleName Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "codebuild.amazonaws.com" Action: - "sts:AssumeRole" BootstrapperProject: Type: AWS::CodeBuild::Project Description: | Wrapper project that: - installs aws-service-catalog-puppet - runs bootstrap-spoke-as Properties: Name: servicecatalog-puppet-single-account-bootstrapper Description: "Bootstraps an account for use with ServiceCatalog-Puppet" ServiceRole: !GetAtt BootstrapperRole.Arn Artifacts: Type: NO_ARTIFACTS Environment: Type: linuxContainer ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 EnvironmentVariables: - Name: PUPPET_ACCOUNT_ID Type: PLAINTEXT Value: CHANGE_ME - Name: ORGANIZATION_ACCOUNT_ACCESS_ROLE_ARN Type: PLAINTEXT Value: CHANGE_ME - Name: VERSION Type: PLAINTEXT Value: CHANGE_ME - Name: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT Type: PLAINTEXT Value: CHANGE_ME Source: Type: NO_SOURCE BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.x commands: - pip install aws-service-catalog-puppet==${VERSION} build: commands: - servicecatalog-puppet bootstrap-spoke-as ${PUPPET_ACCOUNT_ID} ${ASSUMABLE_ROLE_IN_ROOT_ACCOUNT} ${ORGANIZATION_ACCOUNT_ACCESS_ROLE_ARN} TimeoutInMinutes: 30 BootstrapperProjectCustomResourceRole: Type: AWS::IAM::Role Properties: RoleName: !Ref GovernanceAtScaleAccountFactoryAccountBootstrapSharedCustomResourceIAMRoleName Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" BootstrapperProjectCustomResource: Type: AWS::Serverless::Function Description: | Lambda function that can be used to back a custom resource. You can get the ARN by checking the SSM Parameter ```account-vending-bootstrapper-lambda```: ```yaml Account: Type: Custom::CustomResource Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for accepting shares Role: !GetAtt BootstrapperProjectCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: BOOTSTRAPPER_PROJECT_NAME: !Ref BootstrapperProject ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref AssumableRoleArnInRootAccountForBootstrapping Outputs: GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn: Description: | Outputs the BootstrapperProjectCustomResource Arn so others can use it Value: !GetAtt BootstrapperProjectCustomResource.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-bootstrap-shared/v1/requirements.txt ================================================ better-boto==0.6.19 ================================================ FILE: unsorted/governance-at-scale-account-factory/account-bootstrap-shared/v1/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os import traceback logger = logging.getLogger() logger.setLevel(logging.INFO) logging.basicConfig( format='%(levelname)s %(threadName)s [%(filename)s:%(lineno)d] %(message)s', datefmt='%Y-%m-%d:%H:%M:%S', level=logging.INFO ) def handler(event, context): request_type = event['RequestType'] try: logger.info(request_type) if request_type == 'Create': target_account_id = event.get('ResourceProperties').get('TargetAccountId') puppet_account_id = event.get('ResourceProperties').get('PuppetAccountId') organization_account_access_role_name = event.get('ResourceProperties').get( 'OrganizationAccountAccessRoleName') organization_account_access_role_arn = 'arn:aws:iam::{}:role/{}'.format( target_account_id, organization_account_access_role_name ) with betterboto_client.ClientContextManager('ssm') as ssm: puppet_version = ssm.get_parameter( Name='service-catalog-puppet-version' ).get('Parameter').get('Value') assumable_role_in_root_account = os.environ.get('ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN') bootstrapper_project_name = os.environ.get('BOOTSTRAPPER_PROJECT_NAME') with betterboto_client.ClientContextManager( 'codebuild', ) as codebuild: bootstrapper_build = codebuild.start_build_and_wait_for_completion( projectName=bootstrapper_project_name, environmentVariablesOverride=[ { 'name': 'ASSUMABLE_ROLE_IN_ROOT_ACCOUNT', 'value': assumable_role_in_root_account, 'type': 'PLAINTEXT' }, { 'name': 'VERSION', 'value': puppet_version, 'type': 'PLAINTEXT' }, { 'name': 'PUPPET_ACCOUNT_ID', 'value': puppet_account_id, 'type': 'PLAINTEXT' }, { 'name': 'ORGANIZATION_ACCOUNT_ACCESS_ROLE_ARN', 'value': organization_account_access_role_arn, 'type': 'PLAINTEXT' }, ], ) final_status = bootstrapper_build.get('buildStatus') if final_status == 'SUCCEEDED': puppet_run_build = codebuild.start_build_and_wait_for_completion( projectName='servicecatalog-puppet-single-account-run', environmentVariablesOverride=[ { 'name': 'SINGLE_ACCOUNT_ID', 'value': target_account_id, 'type': 'PLAINTEXT' } ], ) final_status = puppet_run_build.get('buildStatus') if final_status == 'SUCCEEDED': send_response( event, context, "SUCCESS", { "Message": "Resource creation successful!", "puppet_run_build_id": puppet_run_build.get('id'), "bootstrapper_build_id": bootstrapper_build.get('id'), } ) else: logger.error('Errored check the logs: {}'.format(puppet_run_build.get('logs').get('deepLink'))) send_response( event, context, "FAILED", { "Message": 'Pipeline errored, check the logs: {}'.format( puppet_run_build.get('logs').get('deepLink') ), } ) else: logger.error('Errored check the logs: {}'.format(bootstrapper_build.get('logs').get('deepLink'))) send_response( event, context, "FAILED", { "Message": 'Bootstrap errored, check the logs: {}'.format( bootstrapper_build.get('logs').get('deepLink') ), } ) elif request_type == 'Update': send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == 'Delete': send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) send_response( event, context, "FAILED", { "Message": "Exception" } ) def send_response(e, c, rs, rd): r = json.dumps({ "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e['StackId'], "RequestId": e['RequestId'], "LogicalResourceId": e['LogicalResourceId'], "Data": rd }) d = str.encode(r) h = { 'content-type': '', 'content-length': str(len(d)) } req = Request(e['ResponseURL'], data=d, method='PUT', headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/governance-at-scale-account-factory/account-bootstrap-shared/v2/README.md ================================================ # account-bootstrap-shared # Description Creates, codebuild project that can be run to bootstrap an account and lambda function that can be used to back a custom resource so the codebuild project can be started from CloudFormation ## Parameters The list of parameters for this template: ### AssumableRoleArnInRootAccountForBootstrapping Type: String Description: The Arn of the assumable role from the root account ### GovernanceAtScaleAccountFactoryIAMRolePath Type: String Description: The path to use for IAM roles in this template ### GovernanceAtScaleAccountFactoryAccountBootstrapSharedBootstrapperIAMRoleName Type: String Description: The name to use for IAM role that will be used by codebuild to bootstrap spokes ### GovernanceAtScaleAccountFactoryAccountBootstrapSharedCustomResourceIAMRoleName Type: String Description: The name to use for IAM role that will be used by lambda to trigger a bootstrap ## Resources The list of resources this template creates: ### BootstrapperRole Type: AWS::IAM::Role ### BootstrapperProject Type: AWS::CodeBuild::Project Description: Wrapper project that: - installs aws-service-catalog-puppet - runs bootstrap-spoke-as ### BootstrapperProjectCustomResourceRole Type: AWS::IAM::Role ### BootstrapperProjectCustomResource Type: AWS::Serverless::Function Description: Lambda function that can be used to back a custom resource. You can get the ARN by checking the SSM Parameter ```account-vending-bootstrapper-lambda```: ```yaml Account: Type: Custom::CustomResource Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn Description: Outputs the BootstrapperProjectCustomResource Arn so others can use it ================================================ FILE: unsorted/governance-at-scale-account-factory/account-bootstrap-shared/v2/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Creates, codebuild project that can be run to bootstrap an account and lambda function that can be used to back a custom resource so the codebuild project can be started from CloudFormation {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-bootstrap-shared", "version": "v2"} Parameters: AssumableRoleArnInRootAccountForBootstrapping: Description: The Arn of the assumable role from the root account Type: String GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String GovernanceAtScaleAccountFactoryAccountBootstrapSharedBootstrapperIAMRoleName: Description: The name to use for IAM role that will be used by codebuild to bootstrap spokes Type: String GovernanceAtScaleAccountFactoryAccountBootstrapSharedCustomResourceIAMRoleName: Description: The name to use for IAM role that will be used by lambda to trigger a bootstrap Type: String Resources: BootstrapperRole: Type: AWS::IAM::Role Properties: RoleName: !Ref GovernanceAtScaleAccountFactoryAccountBootstrapSharedBootstrapperIAMRoleName Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "codebuild.amazonaws.com" Action: - "sts:AssumeRole" BootstrapperProject: Type: AWS::CodeBuild::Project Description: | Wrapper project that: - installs aws-service-catalog-puppet - runs bootstrap-spoke-as Properties: Name: servicecatalog-puppet-single-account-bootstrapper Description: "Bootstraps an account for use with ServiceCatalog-Puppet" ServiceRole: !GetAtt BootstrapperRole.Arn Artifacts: Type: NO_ARTIFACTS Environment: Type: linuxContainer ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 EnvironmentVariables: - Name: PUPPET_ACCOUNT_ID Type: PLAINTEXT Value: CHANGE_ME - Name: ORGANIZATION_ACCOUNT_ACCESS_ROLE_ARN Type: PLAINTEXT Value: CHANGE_ME - Name: VERSION Type: PLAINTEXT Value: CHANGE_ME - Name: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT Type: PLAINTEXT Value: CHANGE_ME Source: Type: NO_SOURCE BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.x commands: - pip install aws-service-catalog-puppet==${VERSION} build: commands: - servicecatalog-puppet bootstrap-spoke-as ${PUPPET_ACCOUNT_ID} ${ASSUMABLE_ROLE_IN_ROOT_ACCOUNT} ${ORGANIZATION_ACCOUNT_ACCESS_ROLE_ARN} TimeoutInMinutes: 30 BootstrapperProjectCustomResourceRole: Type: AWS::IAM::Role Properties: RoleName: !Ref GovernanceAtScaleAccountFactoryAccountBootstrapSharedCustomResourceIAMRoleName Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" BootstrapperProjectCustomResource: Type: AWS::Serverless::Function Description: | Lambda function that can be used to back a custom resource. You can get the ARN by checking the SSM Parameter ```account-vending-bootstrapper-lambda```: ```yaml Account: Type: Custom::CustomResource Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName OrganizationAccountAccessRole: !Ref OrganizationAccountAccessRole IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for accepting shares Role: !GetAtt BootstrapperProjectCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: BOOTSTRAPPER_PROJECT_NAME: !Ref BootstrapperProject ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref AssumableRoleArnInRootAccountForBootstrapping Outputs: GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn: Description: | Outputs the BootstrapperProjectCustomResource Arn so others can use it Value: !GetAtt BootstrapperProjectCustomResource.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-bootstrap-shared/v2/requirements.txt ================================================ better-boto==0.6.19 ================================================ FILE: unsorted/governance-at-scale-account-factory/account-bootstrap-shared/v2/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os import traceback logger = logging.getLogger() logger.setLevel(logging.INFO) logging.basicConfig( format='%(levelname)s %(threadName)s [%(filename)s:%(lineno)d] %(message)s', datefmt='%Y-%m-%d:%H:%M:%S', level=logging.INFO ) def handler(event, context): request_type = event['RequestType'] try: logger.info(request_type) if request_type == 'Create': target_account_id = event.get('ResourceProperties').get('TargetAccountId') puppet_account_id = event.get('ResourceProperties').get('PuppetAccountId') organization_account_access_role_name = event.get('ResourceProperties').get( 'OrganizationAccountAccessRoleName') organization_account_access_role_arn = 'arn:aws:iam::{}:role/{}'.format( target_account_id, organization_account_access_role_name ) with betterboto_client.ClientContextManager('ssm') as ssm: puppet_version = ssm.get_parameter( Name='service-catalog-puppet-version' ).get('Parameter').get('Value') assumable_role_in_root_account = os.environ.get('ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN') bootstrapper_project_name = os.environ.get('BOOTSTRAPPER_PROJECT_NAME') with betterboto_client.ClientContextManager( 'codebuild', ) as codebuild: bootstrapper_build = codebuild.start_build_and_wait_for_completion( projectName=bootstrapper_project_name, environmentVariablesOverride=[ { 'name': 'ASSUMABLE_ROLE_IN_ROOT_ACCOUNT', 'value': assumable_role_in_root_account, 'type': 'PLAINTEXT' }, { 'name': 'VERSION', 'value': puppet_version, 'type': 'PLAINTEXT' }, { 'name': 'PUPPET_ACCOUNT_ID', 'value': puppet_account_id, 'type': 'PLAINTEXT' }, { 'name': 'ORGANIZATION_ACCOUNT_ACCESS_ROLE_ARN', 'value': organization_account_access_role_arn, 'type': 'PLAINTEXT' }, ], ) final_status = bootstrapper_build.get('buildStatus') if final_status == 'SUCCEEDED': puppet_run_build = codebuild.start_build( projectName='servicecatalog-puppet-single-account-run-with-callback', environmentVariablesOverride=[ { 'name': 'SINGLE_ACCOUNT_ID', 'value': target_account_id, 'type': 'PLAINTEXT' }, { 'name': 'CALLBACK_URL', 'value': event.get('ResourceProperties').get('Handle'), 'type': 'PLAINTEXT' }, ], ).get('build') send_response( event, context, "SUCCESS", { "Message": "Resource creation successful!", "puppet_run_build_id": puppet_run_build.get('id'), "bootstrapper_build_id": bootstrapper_build.get('id'), } ) else: logger.error('Errored check the logs: {}'.format(bootstrapper_build.get('logs').get('deepLink'))) send_response( event, context, "FAILED", { "Message": 'Bootstrap errored, check the logs: {}'.format( bootstrapper_build.get('logs').get('deepLink') ), } ) elif request_type == 'Update': send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == 'Delete': send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) traceback.print_tb(ex.__traceback__) send_response( event, context, "FAILED", { "Message": "Exception" } ) def send_response(e, c, rs, rd): r = json.dumps({ "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e['StackId'], "RequestId": e['RequestId'], "LogicalResourceId": e['LogicalResourceId'], "Data": rd }) d = str.encode(r) h = { 'content-type': '', 'content-length': str(len(d)) } req = Request(e['ResponseURL'], data=d, method='PUT', headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/governance-at-scale-account-factory/account-bootstrap-shared-org-bootstrap/v1/README.md ================================================ # account-bootstrap-shared-org-bootstrap # Description IAM Role needed to use AWS Organizations to bootstrap AWS Accounts. ## Parameters The list of parameters for this template: ### ServiceCatalogToolsAccountId Type: String Description: The account id you will be installing AWS Service Catalog Factory into ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: Name of the IAM role used to access cross accounts for AWS Orgs usage ### GovernanceAtScaleAccountFactoryIAMRolePath Type: String Description: The path to use for IAM roles in this template ### GovernanceAtScaleAccountFactoryAccountBootstrapSharedBootstrapperOrgIAMRoleName Type: String Description: The name to use for IAM role that will be used to list accounts for bootstrapping purposes ## Resources The list of resources this template creates: ### AssumableRoleInRootAccount Type: AWS::IAM::Role Description: IAM Role needed by the account vending machine so it can bootstrap accounts ## Outputs The list of outputs this template exposes: ### AssumableRoleArnInRootAccountForBootstrapping Description: The ARN for your Assumable role in root account ================================================ FILE: unsorted/governance-at-scale-account-factory/account-bootstrap-shared-org-bootstrap/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Description: | IAM Role needed to use AWS Organizations to bootstrap AWS Accounts. {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-bootstrap-shared-org-bootstrap", "version": "v1"} Parameters: ServiceCatalogToolsAccountId: Description: The account id you will be installing AWS Service Catalog Factory into Type: String OrganizationAccountAccessRole: Description: Name of the IAM role used to access cross accounts for AWS Orgs usage Default: OrganizationAccountAccessRole Type: String GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String GovernanceAtScaleAccountFactoryAccountBootstrapSharedBootstrapperOrgIAMRoleName: Description: The name to use for IAM role that will be used to list accounts for bootstrapping purposes Type: String Resources: AssumableRoleInRootAccount: Type: AWS::IAM::Role Description: | IAM Role needed by the account vending machine so it can bootstrap accounts Properties: RoleName: !Ref GovernanceAtScaleAccountFactoryAccountBootstrapSharedBootstrapperOrgIAMRoleName Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath Policies: - PolicyName: Organizations PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - organizations:ListRoots - organizations:ListAccounts - organizations:ListParents - organizations:DescribeCreateAccountStatus - organizations:ListOrganizationalUnitsForParent Resource: '*' - Effect: Allow Action: - sts:AssumeRole Resource: !Sub "arn:aws:iam::*:role/${OrganizationAccountAccessRole}" AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${ServiceCatalogToolsAccountId}:root" Action: - "sts:AssumeRole" Outputs: AssumableRoleArnInRootAccountForBootstrapping: Description: The ARN for your Assumable role in root account Value: !GetAtt AssumableRoleInRootAccount.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-create-update-notifier/v1/README.md ================================================ # account-create-update-notifier # Description Lambda to back a custom resource that dispatches notifications to an included SNS Topic ## Parameters The list of parameters for this template: ### GovernanceAtScaleAccountFactoryIAMRolePath Type: String Description: The path to use for IAM roles in this template ### GovernanceAtScaleAccountFactoryAccountCreateUpdateCRIAMRoleName Type: String Description: The name to use for IAM role that will be used for the lambda that backs a custom resource ## Resources The list of resources this template creates: ### SNSTopic Type: AWS::SNS::Topic Description: SNS Topic others can subscribe to so that they can find out about account creations ### Function Type: AWS::Lambda::Function Description: Lambda function to dispatch notifications to the SNSTopic ### Role Type: AWS::IAM::Role Description: IAM role needed to publish account creations to SNS. ## Outputs The list of outputs this template exposes: ### AccountCreateUpdateNotifierTopicArn Description: Outputs the SNS topic ### AccountCreateUpdateNotifierTopicName Description: Outputs the SNS topic name ### GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn Description: Arn of lambda that can be used to back custom resources to notify others that accounts have been created ================================================ FILE: unsorted/governance-at-scale-account-factory/account-create-update-notifier/v1/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Lambda to back a custom resource that dispatches notifications to an included SNS Topic {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-create-update-notifier", "version": "v1"} Parameters: GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String GovernanceAtScaleAccountFactoryAccountCreateUpdateCRIAMRoleName: Description: The name to use for IAM role that will be used for the lambda that backs a custom resource Type: String Resources: SNSTopic: Type: AWS::SNS::Topic Description: SNS Topic others can subscribe to so that they can find out about account creations Properties: TopicName: account-creations Function: Description: | Lambda function to dispatch notifications to the SNSTopic Type: AWS::Lambda::Function Properties: FunctionName: 'account-creation-notifier' Handler: index.lambda_handler Timeout: 10 Role: !GetAtt Role.Arn Runtime: python3.7 Environment: Variables: SNS_TOPIC: !Ref SNSTopic Code: ZipFile: | import cfnresponse import boto3 import os import json def construct_message(event): resource_properties = event.get('ResourceProperties') message = { 'RequestType': event.get('RequestType'), 'AccountName': resource_properties['AccountName'], 'AccountEmail': resource_properties['AccountEmail'], 'ManagedOrganizationalUnit': resource_properties['ManagedOrganizationalUnit'], 'AccountId': resource_properties['AccountId'], } if resource_properties.get('SSOUserFirstName'): message['SSOUserFirstName'] = resource_properties.get('SSOUserFirstName') message['SSOUserLastName'] = resource_properties.get('SSOUserLastName') message['SSOUserEmail'] = resource_properties.get('SSOUserEmail') return message def lambda_handler(event, context): message = construct_message(event) sns_client = boto3.client('sns') sns_client.publish( TopicArn=os.getenv('SNS_TOPIC'), Message=json.dumps(message), Subject=f"Account: {event['ResourceProperties']['AccountName']} was {event.get('RequestType')}" ) cfnresponse.send(event, context, cfnresponse.SUCCESS, {}) Role: Type: AWS::IAM::Role Description: | IAM role needed to publish account creations to SNS. Properties: RoleName: !Ref GovernanceAtScaleAccountFactoryAccountCreateUpdateCRIAMRoleName Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath Policies: - PolicyName: PublishPerms PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sns:Publish Resource: !Ref SNSTopic AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - lambda.amazonaws.com Action: - sts:AssumeRole ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Outputs: AccountCreateUpdateNotifierTopicArn: Description: | Outputs the SNS topic Value: !Ref SNSTopic AccountCreateUpdateNotifierTopicName: Description: | Outputs the SNS topic name Value: !GetAtt SNSTopic.TopicName GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn: Description: | Arn of lambda that can be used to back custom resources to notify others that accounts have been created Value: !GetAtt Function.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-create-update-notifier/v1/sample-message.json ================================================ { "Records": [ { "EventSource": "aws:sns", "EventVersion": "1.0", "EventSubscriptionArn": "arn:aws:sns:us-east-1:111111111111:account-creations:043d80d6-ffd4-4d3d-93af-382a2d1f371c", "Sns": { "Type": "Notification", "MessageId": "", "TopicArn": "arn:aws:sns:us-east-1:111111111111:account-creations", "Subject": "Account: TestAccount was created", "Message": "{\"RequestType\": \"TESTRequestType\", \"AccountName\": \"TESTAccountName\", \"AccountEmail\": \"TESTAccountEmail\", \"ManagedOrganizationalUnit\": \"TESTManagedOrganizationalUnit\", \"AccountId\": \"111122223333\", \"SSOUserFirstName\": \"TESTSSOUserFirstName\", \"SSOUserLastName\": \"TESTSSOUserLastName\", \"SSOUserEmail\": \"TESTSSOUserEmail\"}", "Timestamp": "2020-10-06T20:39:02.120Z", "SignatureVersion": "1", "Signature": "", "SigningCertUrl": "https://sns.us-east-1.amazonaws.com/SimpleNotificationService-.pem", "UnsubscribeUrl": "https://sns.us-east-1.amazonaws.com/?Action=Unsubscribe&SubscriptionArn=arn:aws:sns:us-east-1:111111111111:account-creations:", "MessageAttributes": {} } } ] } ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-notifier-cfh-handler/v1/README.md ================================================ # account-creation-notifier-cfh-handler # Description Lambda to back a custom resource that dispatches notifications to an included SNS Topic ## Parameters The list of parameters for this template: ### AccountCreateUpdateNotifierTopicArn Type: String ### GovernanceAtScaleAccountFactoryIAMRolePath Type: String Description: The path to use for IAM roles in this template ### GovernanceAtScaleAccountFactoryAccountCreateUpdateCFHHandlerIAMRoleName Type: String Description: The name to use for IAM role that will be used for the lambda notifies CFH when accounts are created/updated ## Resources The list of resources this template creates: ### Function Type: AWS::Lambda::Function Description: Lambda function to call CFH ### Role Type: AWS::IAM::Role Description: IAM role needed to publish account creations to SNS. ## Outputs The list of outputs this template exposes: ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-notifier-cfh-handler/v1/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Lambda to back a custom resource that dispatches notifications to an included SNS Topic {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-creation-notifier-cfh-handler", "version": "v1"} Parameters: AccountCreateUpdateNotifierTopicArn: Type: String GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String GovernanceAtScaleAccountFactoryAccountCreateUpdateCFHHandlerIAMRoleName: Description: | The name to use for IAM role that will be used for the lambda notifies CFH when accounts are created/updated Type: String CFHAccountCreateUpdatePostUrl: Description: URL to HTTP POST to when accounts are created Type: String Resources: Subscription: Type: AWS::SNS::Subscription Properties: TopicArn: !Ref AccountCreateUpdateNotifierTopicArn Endpoint: !GetAtt Function.Arn Protocol: lambda Permission: Type: AWS::Lambda::Permission Properties: Action: lambda:InvokeFunction FunctionName: !Ref Function Principal: "sns.amazonaws.com" SourceArn: !Ref AccountCreateUpdateNotifierTopicArn Function: Description: | Lambda function to call CFH Type: AWS::Lambda::Function Properties: Handler: index.lambda_handler Timeout: 10 Role: !GetAtt Role.Arn Runtime: python3.7 Environment: Variables: POST_URL: !Ref CFHAccountCreateUpdatePostUrl Code: ZipFile: | import cfnresponse import boto3 import os import json from urllib import request, parse import json def lambda_handler(event, context): for record in event.get('Records', []): message = json.dumps(record['Sns']['Message']) b = str(message).encode('utf-8') req = request.Request(os.getenv("POST_URL"), data=b) req.add_header('Content-Type', 'application/json') resp = request.urlopen(req) print(response.read().decode('utf-8')) Role: Type: AWS::IAM::Role Description: | IAM role needed to publish account creations to SNS. Properties: RoleName: !Ref GovernanceAtScaleAccountFactoryAccountCreateUpdateCFHHandlerIAMRoleName Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - lambda.amazonaws.com Action: - sts:AssumeRole ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v1/README.md ================================================ # account-creation-shared # Description Lambda for backing custom resources to create an AWS Account ## Parameters The list of parameters for this template: ### GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn Type: String Description: The Arn of the role to be used to interact with AWS Orgs ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: The name of the IAM Role used for cross account assess for AWS Organs ## Resources The list of resources this template creates: ### AccountCustomResourceRole Type: AWS::IAM::Role ### AccountCustomResource Type: AWS::Serverless::Function Description: The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryAccountCreationCRArn Description: the Arn of the custom resource that can be used to create an account ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Lambda for backing custom resources to create an AWS Account {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-creation-shared", "version": "v1"} Parameters: GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn: Type: String Description: | The Arn of the role to be used to interact with AWS Orgs OrganizationAccountAccessRole: Type: String Default: OrganizationAccountAccessRole Description: | The name of the IAM Role used for cross account assess for AWS Organs Resources: AccountCustomResourceRole: Type: AWS::IAM::Role Properties: Path: /account-vending/ ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" AccountCustomResource: Type: AWS::Serverless::Function Description: | The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for accepting shares Role: !GetAtt AccountCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn ORGANIZATION_ACCOUNT_ACCESS_ROLE: !Ref OrganizationAccountAccessRole Outputs: GovernanceAtScaleAccountFactoryAccountCreationCRArn: Description: | the Arn of the custom resource that can be used to create an account Value: !GetAtt AccountCustomResource.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v1/requirements.txt ================================================ better-boto==0.25.0 ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v1/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os import traceback logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event['RequestType'] try: logger.info(request_type) assumable_role_in_root_account_arn = os.environ.get('ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN') organization_account_access_role = os.environ.get('ORGANIZATION_ACCOUNT_ACCESS_ROLE') with betterboto_client.CrossAccountClientContextManager( 'organizations', assumable_role_in_root_account_arn, 'assumable_org_role' ) as organizations: target_ou = event.get('ResourceProperties').get('TargetOU') account_name = event.get('ResourceProperties').get('AccountName') if request_type == 'Create': email = event.get('ResourceProperties').get('Email') iam_user_access_to_billing = event.get('ResourceProperties').get('IamUserAccessToBilling') account_id = ensure_account_created( organizations, account_name, email, iam_user_access_to_billing, assumable_role_in_root_account_arn, organization_account_access_role, ) ensure_account_is_in_correct_ou( organizations, account_id, target_ou ) send_response( event, context, "SUCCESS", { "Message": "Resource creation successful!", "account_id": account_id, } ) elif request_type == 'Update': response = organizations.list_accounts_single_page() account_id = None for account in response.get('Accounts', []): if account.get('Name') == account_name: account_id = account.get('Id') logger.info('Already created') break if account_id is None: raise Exception("Account does not exist") ensure_account_is_in_correct_ou( organizations, account_id, target_ou ) send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == 'Delete': send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) send_response( event, context, "FAILED", { "Message": "Exception" } ) def ensure_account_is_in_correct_ou(organizations, account_id, target_ou): result = organizations.list_parents_single_page(ChildId=account_id) current_ou = None if len(result.get('Parents', [])) != 1: raise Exception( f"There were unexpected parents for the account_id {account_id}: {json.dumps(result)}" ) current_ou = result.get('Parents')[1] if target_ou != "None": if current_ou and current_ou != target_ou: logger.info("Moving account to new OU") response = organizations.list_roots() if len(response.get('Roots')) != 1: raise Exception("nRoots: {}".format(len(response.get('Roots')))) if str(target_ou).startswith('/'): target = organizations.convert_path_to_ou(target_ou) else: target = target_ou organizations.move_account( AccountId=account_id, SourceParentId=response.get('Roots')[0].get('Id'), DestinationParentId=target ) def ensure_account_created( organizations, account_name, email, iam_user_access_to_billing, assumable_role_in_root_account_arn, organization_account_access_role, ): logger.info('Checking if need to create') response = organizations.list_accounts_single_page() account_id = None for account in response.get('Accounts', []): if account.get('Name') == account_name: account_id = account.get('Id') logger.info('Already created') break if account_id is None: logger.info('Creating account') response = organizations.create_account( Email=email, AccountName=account_name, RoleName=organization_account_access_role, IamUserAccessToBilling=iam_user_access_to_billing ) id = response.get('CreateAccountStatus').get('Id') logger.info('Waiting') while response.get('CreateAccountStatus').get('State') == 'IN_PROGRESS': logger.info( 'Still waiting: {}'.format(response.get('CreateAccountStatus').get('State')) ) time.sleep(5) response = organizations.describe_create_account_status(CreateAccountRequestId=id) logger.info( 'Finished: {}'.format(response.get('CreateAccountStatus').get('State')) ) if response.get('CreateAccountStatus').get('State') == 'SUCCEEDED': account_id = response.get('CreateAccountStatus').get('AccountId') counter = 20 while counter > 0: time.sleep(10) try: with betterboto_client.CrossMultipleAccountsClientContextManager( 'codebuild', [ (assumable_role_in_root_account_arn, 'assumable_role_in_root_account_arn'), (f"arn:aws:iam::{account_id}:role/{organization_account_access_role}", 'organization_account_access_role'), ] ) as spoke_codebuild: spoke_codebuild.list_projects() logger.info("Was able to assume role into the spoke and call codebuild") counter = 0 except Exception as e: counter -= 1 logger.error("type error: " + str(e)) logger.error(traceback.format_exc()) else: raise Exception( f"Account was not created correctly: {response.get('CreateAccountStatus').get('FailureReason')}") return account_id def send_response(e, c, rs, rd): r = json.dumps({ "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e['StackId'], "RequestId": e['RequestId'], "LogicalResourceId": e['LogicalResourceId'], "Data": rd }) d = str.encode(r) h = { 'content-type': '', 'content-length': str(len(d)) } req = Request(e['ResponseURL'], data=d, method='PUT', headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v2/README.md ================================================ # account-creation-shared # Description Lambda for backing custom resources to create an AWS Account ## Parameters The list of parameters for this template: ### GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn Type: String Description: The Arn of the role to be used to interact with AWS Orgs ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: The name of the IAM Role used for cross account assess for AWS Organs ## Resources The list of resources this template creates: ### AccountCustomResourceRole Type: AWS::IAM::Role ### AccountCustomResource Type: AWS::Serverless::Function Description: The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryAccountCreationCRArn Description: the Arn of the custom resource that can be used to create an account ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v2/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Lambda for backing custom resources to create an AWS Account {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-creation-shared", "version": "v2"} Parameters: GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn: Type: String Description: | The Arn of the role to be used to interact with AWS Orgs OrganizationAccountAccessRole: Type: String Default: OrganizationAccountAccessRole Description: | The name of the IAM Role used for cross account assess for AWS Organs GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String Resources: AccountCustomResourceRole: Type: AWS::IAM::Role Properties: Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" AccountCustomResource: Type: AWS::Serverless::Function Description: | The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for creating AWS accounts Role: !GetAtt AccountCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn ORGANIZATION_ACCOUNT_ACCESS_ROLE: !Ref OrganizationAccountAccessRole Outputs: GovernanceAtScaleAccountFactoryAccountCreationCRArn: Description: | the Arn of the custom resource that can be used to create an account Value: !GetAtt AccountCustomResource.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v2/requirements.txt ================================================ better-boto==0.25.0 ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v2/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event["RequestType"] try: logger.info(request_type) if request_type in ["Create", "Update"]: assumable_role_in_root_account_arn = os.environ.get( "ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN" ) organization_account_access_role = os.environ.get( "ORGANIZATION_ACCOUNT_ACCESS_ROLE" ) account_name = event.get("ResourceProperties").get("AccountName") email = event.get("ResourceProperties").get("Email") iam_user_access_to_billing = event.get("ResourceProperties").get( "IamUserAccessToBilling" ) with betterboto_client.CrossAccountClientContextManager( "organizations", assumable_role_in_root_account_arn, "assumable_org_role", ) as organizations: logger.info("Checking if need to create") response = organizations.list_accounts_single_page() for account in response.get("Accounts", []): if account.get("Name") == account_name: account_id = account.get("Id") logger.info("Already created") send_response( event, context, "SUCCESS" if account.get("Status") == "ACTIVE" else "FAILED", { "Message": "Account was already created", "account_id": account_id, }, ) logger.info("Creating account") response = organizations.create_account( Email=email, AccountName=account_name, RoleName=organization_account_access_role, IamUserAccessToBilling=iam_user_access_to_billing, ) id = response.get("CreateAccountStatus").get("Id") logger.info("Waiting") while response.get("CreateAccountStatus").get("State") == "IN_PROGRESS": logger.info( "Still waiting: {}".format( response.get("CreateAccountStatus").get("State") ) ) time.sleep(5) response = organizations.describe_create_account_status( CreateAccountRequestId=id ) state = response.get("CreateAccountStatus").get("State") logger.info(f"Finished: {state}") send_response( event, context, "SUCCESS" if state == "SUCCEEDED" else "FAILED", { "Message": "Account was created" if state == "SUCCEEDED" else f"Failed: {response.get('CreateAccountStatus').get('FailureReason')}", "account_id": account_id, }, ) elif request_type == "Update": send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == "Delete": send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) send_response(event, context, "FAILED", {"Message": "Exception"}) def send_response(e, c, rs, rd): r = json.dumps( { "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": rd, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v3/README.md ================================================ # account-creation-shared # Description Lambda for backing custom resources to create an AWS Account ## Parameters The list of parameters for this template: ### GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn Type: String Description: The Arn of the role to be used to interact with AWS Orgs ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: The name of the IAM Role used for cross account assess for AWS Organs ## Resources The list of resources this template creates: ### AccountCustomResourceRole Type: AWS::IAM::Role ### AccountCustomResource Type: AWS::Serverless::Function Description: The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryAccountCreationCRArn Description: the Arn of the custom resource that can be used to create an account ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v3/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Lambda for backing custom resources to create an AWS Account {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-creation-shared", "version": "v3"} Parameters: GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn: Type: String Description: | The Arn of the role to be used to interact with AWS Orgs OrganizationAccountAccessRole: Type: String Default: OrganizationAccountAccessRole Description: | The name of the IAM Role used for cross account assess for AWS Organs GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String Resources: AccountCustomResourceRole: Type: AWS::IAM::Role Properties: Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" AccountCustomResource: Type: AWS::Serverless::Function Description: | The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for creating AWS accounts Role: !GetAtt AccountCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn ORGANIZATION_ACCOUNT_ACCESS_ROLE: !Ref OrganizationAccountAccessRole Outputs: GovernanceAtScaleAccountFactoryAccountCreationCRArn: Description: | the Arn of the custom resource that can be used to create an account Value: !GetAtt AccountCustomResource.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v3/requirements.txt ================================================ better-boto==0.25.0 ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v3/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event["RequestType"] try: logger.info(request_type) if request_type in ["Create", "Update"]: assumable_role_in_root_account_arn = os.environ.get( "ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN" ) organization_account_access_role = os.environ.get( "ORGANIZATION_ACCOUNT_ACCESS_ROLE" ) account_name = event.get("ResourceProperties").get("AccountName") email = event.get("ResourceProperties").get("Email") iam_user_access_to_billing = event.get("ResourceProperties").get( "IamUserAccessToBilling" ) with betterboto_client.CrossAccountClientContextManager( "organizations", assumable_role_in_root_account_arn, "assumable_org_role", ) as organizations: logger.info("Checking if need to create") response = organizations.list_accounts_single_page() for account in response.get("Accounts", []): if account.get("Name") == account_name: account_id = account.get("Id") logger.info("Already created") send_response( event, context, "SUCCESS" if account.get("Status") == "ACTIVE" else "FAILED", { "Message": "Account was already created", "account_id": account_id, }, ) logger.info("Creating account") response = organizations.create_account( Email=email, AccountName=account_name, RoleName=organization_account_access_role, IamUserAccessToBilling=iam_user_access_to_billing, ) id = response.get("CreateAccountStatus").get("Id") account_id = response.get("CreateAccountStatus").get("AccountId") logger.info("Waiting") while response.get("CreateAccountStatus").get("State") == "IN_PROGRESS": logger.info( "Still waiting: {}".format( response.get("CreateAccountStatus").get("State") ) ) time.sleep(5) response = organizations.describe_create_account_status( CreateAccountRequestId=id ) state = response.get("CreateAccountStatus").get("State") logger.info(f"Finished: {state}") send_response( event, context, "SUCCESS" if state == "SUCCEEDED" else "FAILED", { "Message": "Account was created" if state == "SUCCEEDED" else f"Failed: {response.get('CreateAccountStatus').get('FailureReason')}", "account_id": account_id, }, ) elif request_type == "Update": send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == "Delete": send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) send_response(event, context, "FAILED", {"Message": "Exception"}) def send_response(e, c, rs, rd): r = json.dumps( { "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": rd, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v4/README.md ================================================ # account-creation-shared # Description Lambda for backing custom resources to create an AWS Account ## Parameters The list of parameters for this template: ### GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn Type: String Description: The Arn of the role to be used to interact with AWS Orgs ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: The name of the IAM Role used for cross account assess for AWS Organs ## Resources The list of resources this template creates: ### AccountCustomResourceRole Type: AWS::IAM::Role ### AccountCustomResource Type: AWS::Serverless::Function Description: The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryAccountCreationCRArn Description: the Arn of the custom resource that can be used to create an account ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v4/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Lambda for backing custom resources to create an AWS Account {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-creation-shared", "version": "v4"} Parameters: GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn: Type: String Description: | The Arn of the role to be used to interact with AWS Orgs OrganizationAccountAccessRole: Type: String Default: OrganizationAccountAccessRole Description: | The name of the IAM Role used for cross account assess for AWS Organs GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String Resources: AccountCustomResourceRole: Type: AWS::IAM::Role Properties: Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" AccountCustomResource: Type: AWS::Serverless::Function Description: | The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for creating AWS accounts Role: !GetAtt AccountCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn ORGANIZATION_ACCOUNT_ACCESS_ROLE: !Ref OrganizationAccountAccessRole Outputs: GovernanceAtScaleAccountFactoryAccountCreationCRArn: Description: | the Arn of the custom resource that can be used to create an account Value: !GetAtt AccountCustomResource.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v4/requirements.txt ================================================ better-boto==0.25.0 ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared/v4/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event["RequestType"] try: logger.info(request_type) if request_type in ["Create", "Update"]: assumable_role_in_root_account_arn = os.environ.get( "ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN" ) organization_account_access_role = os.environ.get( "ORGANIZATION_ACCOUNT_ACCESS_ROLE" ) account_name = event.get("ResourceProperties").get("AccountName") email = event.get("ResourceProperties").get("Email") iam_user_access_to_billing = event.get("ResourceProperties").get( "IamUserAccessToBilling" ) with betterboto_client.CrossAccountClientContextManager( "organizations", assumable_role_in_root_account_arn, "assumable_org_role", ) as organizations: logger.info("Checking if need to create") response = organizations.list_accounts_single_page() for account in response.get("Accounts", []): if account.get("Name") == account_name: account_id = account.get("Id") logger.info("Already created") send_response( event, context, "SUCCESS" if account.get("Status") == "ACTIVE" else "FAILED", { "Message": "Account was already created", "account_id": account_id, }, ) logger.info("Creating account") response = organizations.create_account( Email=email, AccountName=account_name, RoleName=organization_account_access_role, IamUserAccessToBilling=iam_user_access_to_billing, ) id = response.get("CreateAccountStatus").get("Id") logger.info("Waiting") while response.get("CreateAccountStatus").get("State") == "IN_PROGRESS": logger.info( "Still waiting: {}".format( response.get("CreateAccountStatus").get("State") ) ) time.sleep(5) response = organizations.describe_create_account_status( CreateAccountRequestId=id ) state = response.get("CreateAccountStatus").get("State") account_id = response.get("CreateAccountStatus").get("AccountId") logger.info(f"Finished: {state}") send_response( event, context, "SUCCESS" if state == "SUCCEEDED" else "FAILED", { "Message": "Account was created" if state == "SUCCEEDED" else f"Failed: {response.get('CreateAccountStatus').get('FailureReason')}", "account_id": account_id, }, ) elif request_type == "Update": send_response(event, context, "SUCCESS", {"Message": "Updated"}) elif request_type == "Delete": send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) send_response(event, context, "FAILED", {"Message": "Exception"}) def send_response(e, c, rs, rd): r = json.dumps( { "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": rd, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared-org-bootstrap/v1/README.md ================================================ # account-creation-shared-org-bootstrap # Description IAM Role needed to use AWS Organizations to create AWS Accounts. ## Parameters The list of parameters for this template: ### ServiceCatalogToolsAccountId Type: String Description: The account you will be installing AWS Service Catalog Factory into ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: Name of the IAM role used to access cross accounts for AWS Orgs usage ### GovernanceAtScaleAccountFactoryIAMRolePath Type: String Description: The path to use for IAM roles in this template ### GovernanceAtScaleAccountFactoryAccountCreationSharedOrgIAMRoleName Type: String Description: The name to use for IAM role that will be used to list accounts for bootstrapping purposes ## Resources The list of resources this template creates: ### AssumableRoleInRootAccount Type: AWS::IAM::Role Description: IAM Role needed by the account vending machine so it can create and move accounts ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn Description: The ARN for your Assumable role in root account ================================================ FILE: unsorted/governance-at-scale-account-factory/account-creation-shared-org-bootstrap/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Description: | IAM Role needed to use AWS Organizations to create AWS Accounts. {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-creation-shared-org-bootstrap", "version": "v1"} Parameters: ServiceCatalogToolsAccountId: Description: The account you will be installing AWS Service Catalog Factory into Type: String OrganizationAccountAccessRole: Description: Name of the IAM role used to access cross accounts for AWS Orgs usage Default: OrganizationAccountAccessRole Type: String GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String GovernanceAtScaleAccountFactoryAccountCreationSharedOrgIAMRoleName: Description: The name to use for IAM role that will be used to list accounts for bootstrapping purposes Type: String Resources: AssumableRoleInRootAccount: Type: AWS::IAM::Role Description: | IAM Role needed by the account vending machine so it can create and move accounts Properties: RoleName: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgIAMRoleName Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath Policies: - PolicyName: Organizations PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - organizations:ListRoots - organizations:ListAccounts - organizations:ListParents - organizations:MoveAccount - organizations:CreateAccount - organizations:DescribeCreateAccountStatus - organizations:ListOrganizationalUnitsForParent Resource: '*' - Effect: Allow Action: - sts:AssumeRole Resource: !Sub "arn:aws:iam::*:role/${OrganizationAccountAccessRole}" AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${ServiceCatalogToolsAccountId}:root" Action: - "sts:AssumeRole" Outputs: GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn: Description: The ARN for your Assumable role in root account Value: !GetAtt AssumableRoleInRootAccount.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-details/v1/README.md ================================================ # account-details # Description Takes the given 'AccountName' and returns the account details ## Parameters The list of parameters for this template: ### GovernanceAtScaleAccountFactoryAccountDetailsOrgRoleArn Type: String Description: AWS IAM Role in the Organizations root account that is assumable from the account where this is provisoned ### GovernanceAtScaleAccountFactoryIAMRolePath Type: String Description: The path to use for IAM roles in this template ### GovernanceAtScaleAccountFactoryAccountDetailsCRIAMRoleName Type: String Description: The name to use for IAM role that will be used for lambda when backing the account details custom resource ## Resources The list of resources this template creates: ### Function Type: AWS::Lambda::Function Description: Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids ### Role Type: AWS::IAM::Role Description: IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryAccountDetailsCRArn Description: Outputs the Function Arn so others can use it ================================================ FILE: unsorted/governance-at-scale-account-factory/account-details/v1/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Takes the given 'AccountName' and returns the account details {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-details", "version": "v1"} Parameters: GovernanceAtScaleAccountFactoryAccountDetailsOrgRoleArn: Type: String Description: | AWS IAM Role in the Organizations root account that is assumable from the account where this is provisoned GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String GovernanceAtScaleAccountFactoryAccountDetailsCRIAMRoleName: Description: The name to use for IAM role that will be used for lambda when backing the account details custom resource Type: String Resources: Function: Description: | Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids Type: AWS::Lambda::Function Properties: FunctionName: 'account-details-to-aws-account-id' Handler: index.lambda_handler Timeout: 10 Role: !GetAtt Role.Arn Runtime: python3.7 Environment: Variables: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref GovernanceAtScaleAccountFactoryAccountDetailsOrgRoleArn Code: ZipFile: | import logging import boto3 import cfnresponse import os from boto3.session import Session logger = logging.getLogger() logger.setLevel(logging.INFO) ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN = os.getenv('ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN') def lambda_handler(event, context): logger.info('got event {}'.format(event)) response_data = {} if event['RequestType'] in ['Create', 'Update']: account_name = event['ResourceProperties'].get('AccountName') client = boto3.client('sts') response = client.assume_role(RoleArn=ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN, RoleSessionName="RoleInRoot") credentials = response.get('Credentials') org_client = Session().client( service_name='organizations', aws_access_key_id=credentials['AccessKeyId'], aws_secret_access_key=credentials['SecretAccessKey'], aws_session_token=credentials['SessionToken'], ) a = False p = {} while a is False: response = org_client.list_accounts(**p) for account in response.get('Accounts', []): if account.get('Name') == account_name: a = account p['NextToken'] = response.get('NextToken', False) if a is False and p['NextToken'] is False: raise Exception("Could not find account") response_data = org_client.describe_account(AccountId=a.get('Id')).get('Account') del response_data['JoinedTimestamp'] else: # delete / update pass logger.info('response_data {}'.format(response_data)) cfnresponse.send(event, context, cfnresponse.SUCCESS, response_data, response_data['Id']) Role: Type: AWS::IAM::Role Description: | IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. Properties: RoleName: !Ref GovernanceAtScaleAccountFactoryAccountDetailsCRIAMRoleName Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref GovernanceAtScaleAccountFactoryAccountDetailsOrgRoleArn AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - lambda.amazonaws.com Action: - sts:AssumeRole ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Outputs: GovernanceAtScaleAccountFactoryAccountDetailsCRArn: Description: | Outputs the Function Arn so others can use it Value: !GetAtt Function.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-details-org-bootstrap/v1/README.md ================================================ # account-details-org-bootstrap # Description IAM Role needed to use AWS Organizations to list AWS Accounts. ## Parameters The list of parameters for this template: ### ServiceCatalogToolsAccountId Type: String Description: The account where you have installed the Service Catalog tools. ### GovernanceAtScaleAccountFactoryIAMRolePath Type: String Description: The path to use for IAM roles in this template ### GovernanceAtScaleAccountFactoryAccountDetailsOrgIAMRoleName Type: String Description: The name to use for IAM role that will be used to list accounts for bootstrapping purposes ## Resources The list of resources this template creates: ### AccountCreationDetailsAssumableRole Type: AWS::IAM::Role Description: IAM Role needed so we can list accounts ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryAccountDetailsOrgRoleArn Description: The ARN for your Assumable role in root account ================================================ FILE: unsorted/governance-at-scale-account-factory/account-details-org-bootstrap/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Description: | IAM Role needed to use AWS Organizations to list AWS Accounts. {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-details-org-bootstrap", "version": "v1"} Parameters: ServiceCatalogToolsAccountId: Description: The account where you have installed the Service Catalog tools. Type: String GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String GovernanceAtScaleAccountFactoryAccountDetailsOrgIAMRoleName: Description: The name to use for IAM role that will be used to list accounts for bootstrapping purposes Type: String Resources: AccountCreationDetailsAssumableRole: Type: AWS::IAM::Role Description: | IAM Role needed so we can list accounts Properties: RoleName: !Ref GovernanceAtScaleAccountFactoryAccountDetailsOrgIAMRoleName Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath Policies: - PolicyName: Organizations PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - organizations:ListAccounts - organizations:DescribeAccount Resource: '*' AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${ServiceCatalogToolsAccountId}:root" Action: - "sts:AssumeRole" Outputs: GovernanceAtScaleAccountFactoryAccountDetailsOrgRoleArn: Description: The ARN for your Assumable role in root account Value: !GetAtt AccountCreationDetailsAssumableRole.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-type-to-organizational-unit-chooser/v1/README.md ================================================ # account-type-to-organizational-unit-chooser # Description Takes the given account type and returns the organizational unit it should be assigned to ## Parameters The list of parameters for this template: ### GovernanceAtScaleAccountFactoryIAMRolePath Type: String Description: The path to use for IAM roles in this template ### GovernanceAtScaleAccountFactoryAccountTypeChooserCRIAMRoleName Type: String Description: The name to use for IAM role that will be used to list accounts for bootstrapping purposes ## Resources The list of resources this template creates: ### Function Type: AWS::Lambda::Function Description: Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids ### Role Type: AWS::IAM::Role Description: IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn Description: Outputs the Function Arn so others can use it ================================================ FILE: unsorted/governance-at-scale-account-factory/account-type-to-organizational-unit-chooser/v1/product.template.yaml ================================================ # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Takes the given account type and returns the organizational unit it should be assigned to {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-type-to-organizational-unit-chooser", "version": "v1"} Parameters: GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String GovernanceAtScaleAccountFactoryAccountTypeChooserCRIAMRoleName: Description: The name to use for IAM role that will be used to list accounts for bootstrapping purposes Type: String Resources: Function: Description: | Lambda function to back an AWS CloudFormation custom resource. This expects a ResourceProperty of AccountType and will return an organizational_unit_id based on the dict organizational_unit_ids Type: AWS::Lambda::Function Properties: FunctionName: 'account-type-to-organizational-unit-id' Handler: index.lambda_handler Timeout: 3 Role: !GetAtt Role.Arn Runtime: python3.7 Code: ZipFile: | import logging import cfnresponse logger = logging.getLogger() logger.setLevel(logging.INFO) DEFAULT_OU_NAME = 'Root' organizational_unit_names = { 'infra': { 'dev': 'ou-iexample1', 'test': 'ou-iexample2', 'pre-prod': 'ou-iexample3', 'prod': 'ou-iexample4', }, 'security': { 'dev': 'ou-sexample1', 'test': 'ou-sexample2', 'pre-prod': 'ou-sexample3', 'prod': 'ou-sexample4', }, 'workloads': { 'dev': 'ou-wexample1', 'test': 'ou-wexample2', 'pre-prod': 'ou-wexample3', 'prod': 'ou-wexample4', }, } def lambda_handler(event, context): logger.info('got event {}'.format(event)) response_data = {} if event['RequestType'] == 'Create': account_type = event['ResourceProperties'].get('AccountType') account_group = event['ResourceProperties'].get('AccountGroup') organizational_unit_name = organizational_unit_names.get(account_group, {}).get(account_type, DEFAULT_OU_NAME) response_data['OrganizationalUnitName'] = organizational_unit_name else: # delete / update pass logger.info('response_data {}'.format(response_data)) cfnresponse.send(event, context, cfnresponse.SUCCESS, response_data, response_data['OrganizationalUnitName']) Role: Type: AWS::IAM::Role Description: | IAM role needed to execute account-type-to-organizational-unit-id. Only needs basic access. Properties: RoleName: !Ref GovernanceAtScaleAccountFactoryAccountTypeChooserCRIAMRoleName Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - lambda.amazonaws.com Action: - sts:AssumeRole ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Outputs: GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn: Description: | Outputs the Function Arn so others can use it Value: !GetAtt Function.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-waiter/v1/README.md ================================================ # account-creation-shared # Description Lambda for backing custom resources to create an AWS Account ## Parameters The list of parameters for this template: ### GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn Type: String Description: The Arn of the role to be used to interact with AWS Orgs ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: The name of the IAM Role used for cross account assess for AWS Organs ## Resources The list of resources this template creates: ### AccountCustomResourceRole Type: AWS::IAM::Role ### AccountCustomResource Type: AWS::Serverless::Function Description: The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryAccountCreationCRArn Description: the Arn of the custom resource that can be used to create an account ================================================ FILE: unsorted/governance-at-scale-account-factory/account-waiter/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Lambda for backing custom resources to wait for an account to become available {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-waiter", "version": "v1"} Parameters: GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn: Type: String Description: | The Arn of the role to be used to interact with AWS Orgs OrganizationAccountAccessRole: Type: String Default: OrganizationAccountAccessRole Description: | The name of the IAM Role used for cross account assess for AWS Organs GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String ServiceCatalogPuppetVersion: Type: String Description: The version of service catalog puppet in use Resources: AccountWaiterCustomResourceRole: Type: AWS::IAM::Role Properties: Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" AccountWaiterCustomResource: Type: AWS::Serverless::Function Description: | The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml AccountWaiter1: Type: Custom::Resource Description: A custom resource for waiting for an account to become active Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryAccountWaiterArn AccountId: !GetAtt Account.account_id ServiceCatalogPuppetVersion: !Ref ServiceCatalogPuppetVersion Handle: !Ref AccountWaiterConditionHandle1 ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for waiting for AWS accounts Role: !GetAtt AccountWaiterCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn ORGANIZATION_ACCOUNT_ACCESS_ROLE: !Ref OrganizationAccountAccessRole CODEBUILD_PROJECT_TO_RUN: !Ref AccountWaiterCodeBuildProject AccountWaiterCodeBuildProjectRole: Type: AWS::IAM::Role Properties: Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "codebuild.amazonaws.com" Action: - "sts:AssumeRole" ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AccountWaiterCodeBuildProject: Type: AWS::CodeBuild::Project Description: CodeBuild project used to wait for an account to become active Properties: Name: governance-at-scale-account-waiter Description: "waits for codebuild to become available in the specified account" ServiceRole: !GetAtt AccountWaiterCodeBuildProjectRole.Arn Artifacts: Type: NO_ARTIFACTS Environment: Type: linuxContainer ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 EnvironmentVariables: - Name: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN Type: PLAINTEXT Value: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn - Name: ORGANIZATION_ACCOUNT_ACCESS_ROLE Type: PLAINTEXT Value: !Ref OrganizationAccountAccessRole - Name: TARGET_ACCOUNT_ID Type: PLAINTEXT Value: CHANGE_ME - Name: RESULTS_URL Type: PLAINTEXT Value: CHANGE_ME Source: Type: NO_SOURCE BuildSpec: !Sub | version: 0.2 phases: install: runtime-versions: python: 3.x commands: - pip install aws-service-catalog-puppet==${ServiceCatalogPuppetVersion} build: commands: - servicecatalog-puppet --info wait-for-code-build-in $ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN arn:${AWS::Partition}:iam::$TARGET_ACCOUNT_ID:role/$OrganizationAccountAccessRole - > curl -X PUT -H 'Content-Type:' --data-binary '{"Status" : "SUCCESS","Reason" : "Configuration Complete","UniqueId" : "'$CODEBUILD_BUILD_NUMBER'","Data" : "Application has completed configuration."}' $RESULTS_URL TimeoutInMinutes: 480 Outputs: GovernanceAtScaleAccountFactoryAccountWaiterCRArn: Description: | the Arn of the custom resource that can be used to wait for an account to become available Value: !GetAtt AccountWaiterCustomResource.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-waiter/v1/requirements.txt ================================================ better-boto==0.25.0 ================================================ FILE: unsorted/governance-at-scale-account-factory/account-waiter/v1/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event["RequestType"] try: logger.info(request_type) if request_type in ["Create", "Update"]: codebuild_project_to_run = os.environ.get("CODEBUILD_PROJECT_TO_RUN") assumable_role_in_root_account_arn = os.environ.get( "ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN" ) organization_account_access_role = os.environ.get( "ORGANIZATION_ACCOUNT_ACCESS_ROLE" ) with betterboto_client.ClientContextManager("codebuild") as codebuild: response = codebuild.start_build( projectName=codebuild_project_to_run, environmentVariablesOverride=[ { "name": "ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN", "value": assumable_role_in_root_account_arn, "type": "PLAINTEXT", }, { "name": "ORGANIZATION_ACCOUNT_ACCESS_ROLE", "value": organization_account_access_role, "type": "PLAINTEXT", }, { "name": "TARGET_ACCOUNT_ID", "value": event.get("ResourceProperties").get("TargetAccountId"), "type": "PLAINTEXT", }, { "name": "RESULTS_URL", "value": event.get("ResourceProperties").get("Handle"), "type": "PLAINTEXT", }, ], ) build_status = response.get("build").get("buildStatus") send_response( event, context, "SUCCESS", { "Message": f"{request_type} successful. Build status: {build_status}", }, ) else: send_response( event, context, "SUCCESS", { "Message": f"{request_type} successful", }, ) except Exception as ex: logger.error(ex) send_response(event, context, "FAILED", {"Message": "Exception"}) def send_response(e, c, rs, rd): r = json.dumps( { "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": rd, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/governance-at-scale-account-factory/account-waiter/v2/README.md ================================================ # account-creation-shared # Description Lambda for backing custom resources to create an AWS Account ## Parameters The list of parameters for this template: ### GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn Type: String Description: The Arn of the role to be used to interact with AWS Orgs ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: The name of the IAM Role used for cross account assess for AWS Organs ## Resources The list of resources this template creates: ### AccountCustomResourceRole Type: AWS::IAM::Role ### AccountCustomResource Type: AWS::Serverless::Function Description: The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryAccountCreationCRArn Description: the Arn of the custom resource that can be used to create an account ================================================ FILE: unsorted/governance-at-scale-account-factory/account-waiter/v2/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Lambda for backing custom resources to wait for an account to become available {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-waiter", "version": "v2"} Parameters: GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn: Type: String Description: | The Arn of the role to be used to interact with AWS Orgs OrganizationAccountAccessRole: Type: String Default: OrganizationAccountAccessRole Description: | The name of the IAM Role used for cross account assess for AWS Organs GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String ServiceCatalogPuppetVersion: Type: String Description: The version of service catalog puppet in use Resources: AccountWaiterCustomResourceRole: Type: AWS::IAM::Role Properties: Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" AccountWaiterCustomResource: Type: AWS::Serverless::Function Description: | The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml AccountWaiter1: Type: Custom::Resource Description: A custom resource for waiting for an account to become active Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryAccountWaiterArn AccountId: !GetAtt Account.account_id ServiceCatalogPuppetVersion: !Ref ServiceCatalogPuppetVersion Handle: !Ref AccountWaiterConditionHandle1 ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for waiting for AWS accounts Role: !GetAtt AccountWaiterCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn ORGANIZATION_ACCOUNT_ACCESS_ROLE: !Ref OrganizationAccountAccessRole CODEBUILD_PROJECT_TO_RUN: !Ref AccountWaiterCodeBuildProject AccountWaiterCodeBuildProjectRole: Type: AWS::IAM::Role Properties: Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "codebuild.amazonaws.com" Action: - "sts:AssumeRole" ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AccountWaiterCodeBuildProject: Type: AWS::CodeBuild::Project Description: CodeBuild project used to wait for an account to become active Properties: Name: governance-at-scale-account-waiter Description: "waits for codebuild to become available in the specified account" ServiceRole: !GetAtt AccountWaiterCodeBuildProjectRole.Arn Artifacts: Type: NO_ARTIFACTS Environment: Type: linuxContainer ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 EnvironmentVariables: - Name: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN Type: PLAINTEXT Value: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn - Name: ORGANIZATION_ACCOUNT_ACCESS_ROLE Type: PLAINTEXT Value: !Ref OrganizationAccountAccessRole - Name: TARGET_ACCOUNT_ID Type: PLAINTEXT Value: CHANGE_ME - Name: RESULTS_URL Type: PLAINTEXT Value: CHANGE_ME Source: Type: NO_SOURCE BuildSpec: !Sub | version: 0.2 phases: install: runtime-versions: python: 3.x commands: - pip install aws-service-catalog-puppet==${ServiceCatalogPuppetVersion} build: commands: - servicecatalog-puppet --info wait-for-code-build-in $ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN arn:${AWS::Partition}:iam::$TARGET_ACCOUNT_ID:role/$ORGANIZATION_ACCOUNT_ACCESS_ROLE - > curl -X PUT -H 'Content-Type:' --data-binary '{"Status" : "SUCCESS","Reason" : "Configuration Complete","UniqueId" : "'$CODEBUILD_BUILD_NUMBER'","Data" : "Application has completed configuration."}' $RESULTS_URL TimeoutInMinutes: 480 Outputs: GovernanceAtScaleAccountFactoryAccountWaiterCRArn: Description: | the Arn of the custom resource that can be used to wait for an account to become available Value: !GetAtt AccountWaiterCustomResource.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-waiter/v2/requirements.txt ================================================ better-boto==0.25.0 ================================================ FILE: unsorted/governance-at-scale-account-factory/account-waiter/v2/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event["RequestType"] try: logger.info(request_type) if request_type in ["Create", "Update"]: codebuild_project_to_run = os.environ.get("CODEBUILD_PROJECT_TO_RUN") assumable_role_in_root_account_arn = os.environ.get( "ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN" ) organization_account_access_role = os.environ.get( "ORGANIZATION_ACCOUNT_ACCESS_ROLE" ) with betterboto_client.ClientContextManager("codebuild") as codebuild: response = codebuild.start_build( projectName=codebuild_project_to_run, environmentVariablesOverride=[ { "name": "ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN", "value": assumable_role_in_root_account_arn, "type": "PLAINTEXT", }, { "name": "ORGANIZATION_ACCOUNT_ACCESS_ROLE", "value": organization_account_access_role, "type": "PLAINTEXT", }, { "name": "TARGET_ACCOUNT_ID", "value": event.get("ResourceProperties").get("TargetAccountId"), "type": "PLAINTEXT", }, { "name": "RESULTS_URL", "value": event.get("ResourceProperties").get("Handle"), "type": "PLAINTEXT", }, ], ) build_status = response.get("build").get("buildStatus") send_response( event, context, "SUCCESS", { "Message": f"{request_type} successful. Build status: {build_status}", }, ) else: send_response( event, context, "SUCCESS", { "Message": f"{request_type} successful", }, ) except Exception as ex: logger.error(ex) send_response(event, context, "FAILED", {"Message": "Exception"}) def send_response(e, c, rs, rd): r = json.dumps( { "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": rd, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/governance-at-scale-account-factory/account-waiter/v3/README.md ================================================ # account-creation-shared # Description Lambda for backing custom resources to create an AWS Account ## Parameters The list of parameters for this template: ### GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn Type: String Description: The Arn of the role to be used to interact with AWS Orgs ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: The name of the IAM Role used for cross account assess for AWS Organs ## Resources The list of resources this template creates: ### AccountCustomResourceRole Type: AWS::IAM::Role ### AccountCustomResource Type: AWS::Serverless::Function Description: The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryAccountCreationCRArn Description: the Arn of the custom resource that can be used to create an account ================================================ FILE: unsorted/governance-at-scale-account-factory/account-waiter/v3/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Lambda for backing custom resources to wait for an account to become available {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "account-waiter", "version": "v3"} Parameters: GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn: Type: String Description: | The Arn of the role to be used to interact with AWS Orgs OrganizationAccountAccessRole: Type: String Default: OrganizationAccountAccessRole Description: | The name of the IAM Role used for cross account assess for AWS Organs GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String ServiceCatalogPuppetVersion: Type: String Description: The version of service catalog puppet in use Resources: AccountWaiterCustomResourceRole: Type: AWS::IAM::Role Properties: Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn - Effect: Allow Action: - codebuild: '*' Resource: '*' AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" AccountWaiterCustomResource: Type: AWS::Serverless::Function Description: | The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml AccountWaiter1: Type: Custom::Resource Description: A custom resource for waiting for an account to become active Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryAccountWaiterArn AccountId: !GetAtt Account.account_id ServiceCatalogPuppetVersion: !Ref ServiceCatalogPuppetVersion Handle: !Ref AccountWaiterConditionHandle1 ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for waiting for AWS accounts Role: !GetAtt AccountWaiterCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn ORGANIZATION_ACCOUNT_ACCESS_ROLE: !Ref OrganizationAccountAccessRole CODEBUILD_PROJECT_TO_RUN: !Ref AccountWaiterCodeBuildProject AccountWaiterCodeBuildProjectRole: Type: AWS::IAM::Role Properties: Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: Service: - "codebuild.amazonaws.com" Action: - "sts:AssumeRole" ManagedPolicyArns: - arn:aws:iam::aws:policy/AdministratorAccess AccountWaiterCodeBuildProject: Type: AWS::CodeBuild::Project Description: CodeBuild project used to wait for an account to become active Properties: Name: governance-at-scale-account-waiter Description: "waits for codebuild to become available in the specified account" ServiceRole: !GetAtt AccountWaiterCodeBuildProjectRole.Arn Artifacts: Type: NO_ARTIFACTS Environment: Type: linuxContainer ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:4.0 EnvironmentVariables: - Name: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN Type: PLAINTEXT Value: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn - Name: ORGANIZATION_ACCOUNT_ACCESS_ROLE Type: PLAINTEXT Value: !Ref OrganizationAccountAccessRole - Name: TARGET_ACCOUNT_ID Type: PLAINTEXT Value: CHANGE_ME - Name: RESULTS_URL Type: PLAINTEXT Value: CHANGE_ME Source: Type: NO_SOURCE BuildSpec: !Sub | version: 0.2 phases: install: runtime-versions: python: 3.x commands: - pip install aws-service-catalog-puppet==${ServiceCatalogPuppetVersion} build: commands: - servicecatalog-puppet --info wait-for-code-build-in $ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN arn:${AWS::Partition}:iam::$TARGET_ACCOUNT_ID:role/$ORGANIZATION_ACCOUNT_ACCESS_ROLE - > curl -X PUT -H 'Content-Type:' --data-binary '{"Status" : "SUCCESS","Reason" : "Configuration Complete","UniqueId" : "'$CODEBUILD_BUILD_NUMBER'","Data" : "Application has completed configuration."}' $RESULTS_URL TimeoutInMinutes: 480 Outputs: GovernanceAtScaleAccountFactoryAccountWaiterCRArn: Description: | the Arn of the custom resource that can be used to wait for an account to become available Value: !GetAtt AccountWaiterCustomResource.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/account-waiter/v3/requirements.txt ================================================ better-boto==0.25.0 ================================================ FILE: unsorted/governance-at-scale-account-factory/account-waiter/v3/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging, time from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event["RequestType"] try: logger.info(request_type) if request_type in ["Create", "Update"]: codebuild_project_to_run = os.environ.get("CODEBUILD_PROJECT_TO_RUN") assumable_role_in_root_account_arn = os.environ.get( "ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN" ) organization_account_access_role = os.environ.get( "ORGANIZATION_ACCOUNT_ACCESS_ROLE" ) with betterboto_client.ClientContextManager("codebuild") as codebuild: response = codebuild.start_build( projectName=codebuild_project_to_run, environmentVariablesOverride=[ { "name": "ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN", "value": assumable_role_in_root_account_arn, "type": "PLAINTEXT", }, { "name": "ORGANIZATION_ACCOUNT_ACCESS_ROLE", "value": organization_account_access_role, "type": "PLAINTEXT", }, { "name": "TARGET_ACCOUNT_ID", "value": event.get("ResourceProperties").get("TargetAccountId"), "type": "PLAINTEXT", }, { "name": "RESULTS_URL", "value": event.get("ResourceProperties").get("Handle"), "type": "PLAINTEXT", }, ], ) build_status = response.get("build").get("buildStatus") send_response( event, context, "SUCCESS", { "Message": f"{request_type} successful. Build status: {build_status}", }, ) else: send_response( event, context, "SUCCESS", { "Message": f"{request_type} successful", }, ) except Exception as ex: logger.error(ex) send_response(event, context, "FAILED", {"Message": "Exception"}) def send_response(e, c, rs, rd): r = json.dumps( { "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": rd, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/governance-at-scale-account-factory/aws-control-tower-account-factory/v1/README.md ================================================ # aws-control-tower-account-factory # Description Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS andreturns the account id as an output ## Parameters The list of parameters for this template: ### AccountName Type: String Description: The AWS Account Name ### AccountEmail Type: String Description: The account email. This must be unique across AWS and must already exist. ### SSOUserFirstName Type: String Description: SSO user first name. ### SSOUserLastName Type: String Description: SSO user last name. ### SSOUserEmail Type: String Description: SSO user email. A new SSO user will be created for this email, if it does not exist. This SSO user will be associated with the new managed Account. ### AccountType Type: String Description: Which stage of the SDLC is the account going to be used for ### AccountGroup Type: String Description: Which platform does the account belong to ### GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn Type: String Description: The ARN of the lambda that converts group and type to Arn ### GovernanceAtScaleAccountFactoryAccountDetailsCRArn Type: String Description: The ARN of the lambda that looks up account details for given account name ### GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn Type: String Description: The ARN of the lambda that will dispatch SNS notifications on account creation / update ### GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn Type: String Description: The ARN of the lambda that will bootstrap the created account as a spoke for SCT ## Resources The list of resources this template creates: ### OUDetails Type: Custom::Resource ### TriggerCoreAccountFactory Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct ### AccountDetails Type: Custom::Resource ### Notifier Type: Custom::Resource ### Bootstraper Type: Custom::CustomResource ## Outputs The list of outputs this template exposes: ### AccountId Description: AccountId for the newly created AWS Account ### AccountOrganizationalUnitName Description: OrganizationalUnitName for the newly created AWS Account ================================================ FILE: unsorted/governance-at-scale-account-factory/aws-control-tower-account-factory/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS andreturns the account id as an output {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "aws-control-tower-account-factory", "version": "v1"} Parameters: AccountName: Description: The AWS Account Name Type: String AllowedPattern: '[a-zA-Z0-9][a-zA-Z0-9._-]*' AccountEmail: Description: The account email. This must be unique across AWS and must already exist. Type: String AllowedPattern: '[^\s@]+@[^\s@]+\.[^\s@]+' SSOUserFirstName: Description: SSO user first name. Type: String AllowedPattern: .{3,64} SSOUserLastName: Description: SSO user last name. Type: String AllowedPattern: .{3,64} SSOUserEmail: Description: SSO user email. A new SSO user will be created for this email, if it does not exist. This SSO user will be associated with the new managed Account. Type: String AllowedPattern: '[^\s@]+@[^\s@]+\.[^\s@]+' AccountType: Type: String Description: Which stage of the SDLC is the account going to be used for AllowedValues: - dev - test - preprod - prod AccountGroup: Type: String Description: Which platform does the account belong to AllowedValues: - workloads GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn: Type: String Description: The ARN of the lambda that converts group and type to Arn GovernanceAtScaleAccountFactoryAccountDetailsCRArn: Type: String Description: The ARN of the lambda that looks up account details for given account name GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn: Type: String Description: The ARN of the lambda that will dispatch SNS notifications on account creation / update GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn: Type: String Description: The ARN of the lambda that will bootstrap the created account as a spoke for SCT Resources: OUDetails: Type: Custom::Resource DeletionPolicy: Retain Properties: ServiceToken: Ref: GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn AccountType: Ref: AccountType AccountGroup: Ref: AccountGroup TriggerCoreAccountFactory: Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct DeletionPolicy: Retain Properties: ProductName: AWS Control Tower Account Factory ProvisioningArtifactName: AWS Control Tower Account Factory ProvisionedProductName: Fn::Sub: - Account-${AccountName} - {} ProvisioningParameters: - Key: AccountName Value: Ref: AccountName - Key: AccountEmail Value: Ref: AccountEmail - Key: SSOUserFirstName Value: Ref: SSOUserFirstName - Key: SSOUserLastName Value: Ref: SSOUserLastName - Key: SSOUserEmail Value: Ref: SSOUserEmail - Key: ManagedOrganizationalUnit Value: Fn::GetAtt: - OUDetails - OrganizationalUnitName AccountDetails: Type: Custom::Resource DeletionPolicy: Retain DependsOn: TriggerCoreAccountFactory Properties: ServiceToken: Ref: GovernanceAtScaleAccountFactoryAccountDetailsCRArn AccountName: Ref: AccountName Notifier: Type: Custom::Resource DeletionPolicy: Retain Properties: ServiceToken: Ref: GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn AccountName: Ref: AccountName AccountEmail: Ref: AccountEmail SSOUserFirstName: Ref: SSOUserFirstName SSOUserLastName: Ref: SSOUserLastName SSOUserEmail: Ref: SSOUserEmail ManagedOrganizationalUnit: Fn::GetAtt: - OUDetails - OrganizationalUnitName AccountId: Fn::GetAtt: - AccountDetails - Id Bootstraper: Type: Custom::CustomResource DeletionPolicy: Retain DependsOn: TriggerCoreAccountFactory Properties: ServiceToken: Ref: GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn OrganizationAccountAccessRoleName: 'AWSControlTowerExecution' TargetAccountId: !GetAtt TriggerCoreAccountFactory.Outputs.AccountId PuppetAccountId: !Sub "${AWS::AccountId}" Outputs: AccountId: Description: "AccountId for the newly created AWS Account\n" Value: Fn::GetAtt: - AccountDetails - Id AccountOrganizationalUnitName: Description: "OrganizationalUnitName for the newly created AWS Account\n" Value: Fn::GetAtt: - OUDetails - OrganizationalUnitName ================================================ FILE: unsorted/governance-at-scale-account-factory/aws-service-catalog-account-creation/v1/README.md ================================================ # aws-service-catalog-account-creation # Description account-bootstrap-shared-product and account-creation-shared-product must both be provisioned into the same accountbefore this will work - they build some resources needed for this to work and they provision the SSM params with thecorrect ARNs so this works with no copy and pasting.Provisioning this template will create an AWS Account and bootstrap it using aws-service-catalog-puppet so you canprovision products into the account. ## Parameters The list of parameters for this template: ### Email Type: String Description: The email address to use for the account that is to be created ### AccountName Type: String Description: The name to use for the account that is to be created ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: The name of the role to be created in the account that allows Organizations access ### IamUserAccessToBilling Type: String Default: ALLOW ### AccountGroup Type: String Description: Which platform does the account belong to ### AccountType Type: String Description: Which stage of the SDLC is the account going to be used for ### GovernanceAtScaleAccountFactoryAccountCreationCRArn Type: String Default: account-vending-creation-lambda Description: The ARN of the account creation lambda ### GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn Type: String Default: account-vending-bootstrapper-lambda Description: The ARN of the account bootstrapping lambda ### GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn Type: String Description: The ARN of the lambda that converts group and type to Arn ### GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn Type: String Description: The ARN of the lambda that will dispatch SNS notifications on account creation / update ## Resources The list of resources this template creates: ### OUDetails Type: Custom::Resource ### Account Type: Custom::CustomResource Description: A custom resource representing an AWS Account ### Notifier Type: Custom::Resource ### Bootstrap Type: Custom::CustomResource ## Outputs The list of outputs this template exposes: ### AccountId ================================================ FILE: unsorted/governance-at-scale-account-factory/aws-service-catalog-account-creation/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Description: | account-bootstrap-shared-product and account-creation-shared-product must both be provisioned into the same accountbefore this will work - they build some resources needed for this to work and they provision the SSM params with thecorrect ARNs so this works with no copy and pasting.Provisioning this template will create an AWS Account and bootstrap it using aws-service-catalog-puppet so you canprovision products into the account. {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "aws-service-catalog-account-creation", "version": "v1"} Parameters: Email: Type: String Description: The email address to use for the account that is to be created AccountName: Type: String Description: The name to use for the account that is to be created OrganizationAccountAccessRole: Type: String Default: OrganizationAccountAccessRole Description: The name of the role to be created in the account that allows Organizations access IamUserAccessToBilling: Type: String Default: "ALLOW" AllowedValues: ['ALLOW', 'DENY'] AccountGroup: Type: String Description: >- Which platform does the account belong to AllowedValues: - Security - Infrastructure - Workload AccountType: Type: String Description: >- Which stage of the SDLC is the account going to be used for AllowedValues: - dev - test - preprod - prod GovernanceAtScaleAccountFactoryAccountCreationCRArn: Type: String Default: account-vending-creation-lambda Description: The ARN of the account creation lambda GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn: Type: String Default: account-vending-bootstrapper-lambda Description: The ARN of the account bootstrapping lambda GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn: Type: String Description: The ARN of the lambda that converts group and type to Arn GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn: Type: String Description: The ARN of the lambda that will dispatch SNS notifications on account creation / update Resources: OUDetails: Type: Custom::Resource DeletionPolicy: Retain Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn AccountType: !Ref AccountType AccountGroup: !Ref AccountGroup Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryAccountCreationCRArn Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !GetAtt OUDetails.OrganizationalUnitName Notifier: Type: Custom::Resource DeletionPolicy: Retain Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn AccountName: !Ref AccountName AccountEmail: !Ref Email ManagedOrganizationalUnit: !GetAtt OUDetails.OrganizationalUnitName AccountId: !GetAtt Account.account_id Bootstrap: Type: Custom::CustomResource Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn OrganizationAccountAccessRoleName: !Ref OrganizationAccountAccessRole TargetAccountId: !GetAtt Account.account_id PuppetAccountId: !Sub "${AWS::AccountId}" Outputs: AccountId: Value: !GetAtt Account.account_id ================================================ FILE: unsorted/governance-at-scale-account-factory/aws-service-catalog-account-creation/v2/README.md ================================================ # aws-service-catalog-account-creation # Description account-bootstrap-shared-product and account-creation-shared-product must both be provisioned into the same accountbefore this will work - they build some resources needed for this to work and they provision the SSM params with thecorrect ARNs so this works with no copy and pasting.Provisioning this template will create an AWS Account and bootstrap it using aws-service-catalog-puppet so you canprovision products into the account. ## Parameters The list of parameters for this template: ### Email Type: String Description: The email address to use for the account that is to be created ### AccountName Type: String Description: The name to use for the account that is to be created ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: The name of the role to be created in the account that allows Organizations access ### IamUserAccessToBilling Type: String Default: ALLOW ### AccountGroup Type: String Description: Which platform does the account belong to ### AccountType Type: String Description: Which stage of the SDLC is the account going to be used for ### GovernanceAtScaleAccountFactoryAccountCreationCRArn Type: String Default: account-vending-creation-lambda Description: The ARN of the account creation lambda ### GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn Type: String Default: account-vending-bootstrapper-lambda Description: The ARN of the account bootstrapping lambda ### GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn Type: String Description: The ARN of the lambda that converts group and type to Arn ### GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn Type: String Description: The ARN of the lambda that will dispatch SNS notifications on account creation / update ## Resources The list of resources this template creates: ### OUDetails Type: Custom::Resource ### Account Type: Custom::CustomResource Description: A custom resource representing an AWS Account ### Notifier Type: Custom::Resource ### Bootstrap Type: Custom::CustomResource ## Outputs The list of outputs this template exposes: ### AccountId ================================================ FILE: unsorted/governance-at-scale-account-factory/aws-service-catalog-account-creation/v2/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Description: | account-bootstrap-shared-product and account-creation-shared-product must both be provisioned into the same accountbefore this will work - they build some resources needed for this to work and they provision the SSM params with thecorrect ARNs so this works with no copy and pasting.Provisioning this template will create an AWS Account and bootstrap it using aws-service-catalog-puppet so you canprovision products into the account. {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "aws-service-catalog-account-creation", "version": "v1"} Parameters: Email: Type: String Description: The email address to use for the account that is to be created AccountName: Type: String Description: The name to use for the account that is to be created OrganizationAccountAccessRole: Type: String Default: OrganizationAccountAccessRole Description: The name of the role to be created in the account that allows Organizations access IamUserAccessToBilling: Type: String Default: "ALLOW" AllowedValues: ['ALLOW', 'DENY'] AccountGroup: Type: String Description: >- Which platform does the account belong to AllowedValues: - Security - Infrastructure - Workload AccountType: Type: String Description: >- Which stage of the SDLC is the account going to be used for AllowedValues: - dev - test - preprod - prod GovernanceAtScaleAccountFactoryAccountCreationCRArn: Type: String Default: account-vending-creation-lambda Description: The ARN of the account creation lambda GovernanceAtScaleAccountFactoryMoveToOUArn: Type: String Default: account-vending-move-to-ou-lambda Description: The ARN of the move to ou lambda GovernanceAtScaleAccountFactoryAccountWaiterArn: Type: String Default: account-vending-account-waiter-lambda Description: The ARN of the move to ou lambda GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn: Type: String Default: account-vending-bootstrapper-lambda Description: The ARN of the account bootstrapping lambda GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn: Type: String Description: The ARN of the lambda that converts group and type to Arn GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn: Type: String Description: The ARN of the lambda that will dispatch SNS notifications on account creation / update ServiceCatalogPuppetVersion: Type: String Description: The version of service catalog puppet in use Resources: OUDetails: Type: Custom::Resource DeletionPolicy: Retain Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn AccountType: !Ref AccountType AccountGroup: !Ref AccountGroup Account: Type: Custom::Resource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryAccountCreationCRArn Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling MoveToOU: Type: Custom::Resource Description: A custom resource for moving an account to an OU Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryMoveToOUArn AccountType: !Ref AccountType AccountGroup: !Ref AccountGroup TargetOU: !GetAtt OUDetails.OrganizationalUnitName AccountId: !GetAtt Account.account_id AccountWaiterConditionHandle1: Type: AWS::CloudFormation::WaitConditionHandle Properties: {} AccountWaiter1: Type: Custom::Resource Description: A custom resource for waiting for an account to become active Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryAccountWaiterArn AccountId: !GetAtt Account.account_id ServiceCatalogPuppetVersion: !Ref ServiceCatalogPuppetVersion Handle: !Ref AccountWaiterConditionHandle1 AccountWaiterCondition1: Type: AWS::CloudFormation::WaitCondition DependsOn: AccountWaiter1 Properties: Handle: !Ref AccountWaiterConditionHandle1 Timeout: 28800 Notifier: Type: Custom::Resource DeletionPolicy: Retain Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn AccountName: !Ref AccountName AccountEmail: !Ref Email ManagedOrganizationalUnit: !GetAtt OUDetails.OrganizationalUnitName AccountId: !GetAtt Account.account_id AccountBootstrapConditionHandle1: Type: AWS::CloudFormation::WaitConditionHandle Properties: {} Bootstrap: Type: Custom::CustomResource Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn OrganizationAccountAccessRoleName: !Ref OrganizationAccountAccessRole TargetAccountId: !GetAtt Account.account_id PuppetAccountId: !Sub "${AWS::AccountId}" Handle: !Ref AccountBootstrapConditionHandle1 AccountBootstrapCondition1: Type: AWS::CloudFormation::WaitCondition DependsOn: Bootstrap Properties: Handle: !Ref AccountBootstrapConditionHandle1 Timeout: 28800 Outputs: AccountId: Value: !GetAtt Account.account_id ================================================ FILE: unsorted/governance-at-scale-account-factory/manifest.yaml ================================================ launches: account-bootstrap-shared: depends_on: - account-bootstrap-shared-org-bootstrap deploy_to: tags: - regions: default_region tag: scope:puppet_account outputs: ssm: - param_name: /governance-at-scale-account-factory/account-bootstrap-shared/GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn stack_output: GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn parameters: AssumableRoleArnInRootAccountForBootstrapping: ssm: name: /governance-at-scale-account-factory/account-bootstrap-shared-org-bootstrap/AssumableRoleArnInRootAccountForBootstrapping GovernanceAtScaleAccountFactoryAccountBootstrapSharedBootstrapperIAMRoleName: default: AccountBootstrapSharedBootstrapperIAMRoleName GovernanceAtScaleAccountFactoryAccountBootstrapSharedCustomResourceIAMRoleName: default: AccountBootstrapSharedCustomResourceIAMRoleName GovernanceAtScaleAccountFactoryIAMRolePath: default: /AccountFactoryIAMRolePath/ portfolio: demo-central-it-team-portfolio product: account-bootstrap-shared version: v2 account-bootstrap-shared-org-bootstrap: deploy_to: tags: - regions: default_region tag: scope:org_management outputs: ssm: - param_name: /governance-at-scale-account-factory/account-bootstrap-shared-org-bootstrap/AssumableRoleArnInRootAccountForBootstrapping stack_output: AssumableRoleArnInRootAccountForBootstrapping parameters: GovernanceAtScaleAccountFactoryAccountBootstrapSharedBootstrapperOrgIAMRoleName: default: AccountBootstrapSharedBootstrapperOrgIAMRoleName GovernanceAtScaleAccountFactoryIAMRolePath: default: /AccountFactoryIAMRolePath/ OrganizationAccountAccessRole: default: OrganizationAccountAccessRole ServiceCatalogToolsAccountId: default: SET_ME portfolio: demo-central-it-team-portfolio product: account-bootstrap-shared-org-bootstrap version: v1 account-create-update-notifier: deploy_to: tags: - regions: default_region tag: scope:puppet_account outputs: ssm: - param_name: /governance-at-scale-account-factory/account-create-update-notifier/AccountCreateUpdateNotifierTopicArn stack_output: AccountCreateUpdateNotifierTopicArn - param_name: /governance-at-scale-account-factory/account-create-update-notifier/AccountCreateUpdateNotifierTopicName stack_output: AccountCreateUpdateNotifierTopicName - param_name: /governance-at-scale-account-factory/account-create-update-notifier/GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn stack_output: GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn parameters: GovernanceAtScaleAccountFactoryAccountCreateUpdateCRIAMRoleName: default: AccountCreateUpdateCRIAMRoleName GovernanceAtScaleAccountFactoryIAMRolePath: default: /AccountFactoryIAMRolePath/ portfolio: demo-central-it-team-portfolio product: account-create-update-notifier version: v1 account-creation-notifier-cfh-handler: depends_on: - account-create-update-notifier deploy_to: tags: - regions: default_region tag: scope:puppet_account parameters: AccountCreateUpdateNotifierTopicArn: ssm: name: /governance-at-scale-account-factory/account-create-update-notifier/AccountCreateUpdateNotifierTopicArn GovernanceAtScaleAccountFactoryAccountCreateUpdateCFHHandlerIAMRoleName: default: AccountCreateUpdateCFHHandlerIAMRoleName GovernanceAtScaleAccountFactoryIAMRolePath: default: /AccountFactoryIAMRolePath/ portfolio: demo-central-it-team-portfolio product: account-creation-notifier-cfh-handler version: v1 account-creation-shared: depends_on: - account-creation-shared-org-bootstrap deploy_to: tags: - regions: default_region tag: scope:puppet_account outputs: ssm: - param_name: /governance-at-scale-account-factory/account-creation-shared/GovernanceAtScaleAccountFactoryAccountCreationCRArn stack_output: GovernanceAtScaleAccountFactoryAccountCreationCRArn parameters: GovernanceAtScaleAccountFactoryIAMRolePath: default: /AccountFactoryIAMRolePath/ GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn: ssm: name: /governance-at-scale-account-factory/account-creation-shared-org-bootstrap/GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn OrganizationAccountAccessRole: default: OrganizationAccountAccessRole portfolio: demo-central-it-team-portfolio product: account-creation-shared version: v4 account-creation-shared-org-bootstrap: deploy_to: tags: - regions: default_region tag: scope:org_management outputs: ssm: - param_name: /governance-at-scale-account-factory/account-creation-shared-org-bootstrap/GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn stack_output: GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn parameters: GovernanceAtScaleAccountFactoryAccountCreationSharedOrgIAMRoleName: default: AccountCreationSharedOrgIAMRoleName GovernanceAtScaleAccountFactoryIAMRolePath: default: /AccountFactoryIAMRolePath/ OrganizationAccountAccessRole: default: OrganizationAccountAccessRole ServiceCatalogToolsAccountId: default: SET_ME portfolio: demo-central-it-team-portfolio product: account-creation-shared-org-bootstrap version: v1 account-details: depends_on: - account-details-org-bootstrap deploy_to: tags: - regions: default_region tag: scope:puppet_account outputs: ssm: - param_name: /governance-at-scale-account-factory/account-details/GovernanceAtScaleAccountFactoryAccountDetailsCRArn stack_output: GovernanceAtScaleAccountFactoryAccountDetailsCRArn parameters: GovernanceAtScaleAccountFactoryAccountDetailsCRIAMRoleName: default: AccountDetailsCRIAMRoleName GovernanceAtScaleAccountFactoryAccountDetailsOrgRoleArn: ssm: name: /governance-at-scale-account-factory/account-details-org-bootstrap/GovernanceAtScaleAccountFactoryAccountDetailsOrgRoleArn GovernanceAtScaleAccountFactoryIAMRolePath: default: /AccountFactoryIAMRolePath/ portfolio: demo-central-it-team-portfolio product: account-details version: v1 account-details-org-bootstrap: deploy_to: tags: - regions: default_region tag: scope:org_management outputs: ssm: - param_name: /governance-at-scale-account-factory/account-details-org-bootstrap/GovernanceAtScaleAccountFactoryAccountDetailsOrgRoleArn stack_output: GovernanceAtScaleAccountFactoryAccountDetailsOrgRoleArn parameters: GovernanceAtScaleAccountFactoryAccountDetailsOrgIAMRoleName: default: AccountDetailsOrgIAMRoleName GovernanceAtScaleAccountFactoryIAMRolePath: default: /AccountFactoryIAMRolePath/ ServiceCatalogToolsAccountId: default: SET_ME portfolio: demo-central-it-team-portfolio product: account-details-org-bootstrap version: v1 account-type-to-organizational-unit-chooser: deploy_to: tags: - regions: default_region tag: scope:puppet_account outputs: ssm: - param_name: /governance-at-scale-account-factory/account-type-to-organizational-unit-chooser/GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn stack_output: GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn parameters: GovernanceAtScaleAccountFactoryAccountTypeChooserCRIAMRoleName: default: AccountTypeChooserCRIAMRoleName GovernanceAtScaleAccountFactoryIAMRolePath: default: /AccountFactoryIAMRolePath/ portfolio: demo-central-it-team-portfolio product: account-type-to-organizational-unit-chooser version: v1 move-to-ou: depends_on: - account-creation-shared-org-bootstrap deploy_to: tags: - regions: default_region tag: role:puppethub parameters: GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn: ssm: name: /governance-at-scale-account-factory/account-creation-shared-org-bootstrap/GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn GovernanceAtScaleAccountFactoryIAMRolePath: default: /AccountFactoryIAMRolePath/ outputs: ssm: - param_name: /governance-at-scale-account-factory/move-to-ou/GovernanceAtScaleAccountFactoryMoveToOUCRArn stack_output: GovernanceAtScaleAccountFactoryMoveToOUCRArn portfolio: example-account-vending-account-vending product: move-to-ou version: v3 account-waiter: depends_on: - account-creation-shared-org-bootstrap deploy_to: tags: - regions: default_region tag: role:puppethub parameters: GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn: ssm: name: /governance-at-scale-account-factory/account-creation-shared-org-bootstrap/GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn GovernanceAtScaleAccountFactoryIAMRolePath: default: /AccountFactoryIAMRolePath/ outputs: ssm: - param_name: /governance-at-scale-account-factory/account-waiter/GovernanceAtScaleAccountFactoryAccountWaiterCRArn stack_output: GovernanceAtScaleAccountFactoryAccountWaiterCRArn portfolio: example-account-vending-account-vending product: account-waiter version: v3 aws-control-tower-account-factory-account: depends_on: - account-type-to-organizational-unit-chooser - account-details - account-create-update-notifier - account-bootstrap-shared deploy_to: tags: - regions: default_region tag: scope:puppet_account parameters: AccountEmail: default: emailme@example.com AccountGroup: default: workloads AccountName: default: devaccountforteamx AccountType: default: dev GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn: ssm: name: /governance-at-scale-account-factory/account-create-update-notifier/GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn GovernanceAtScaleAccountFactoryAccountDetailsCRArn: ssm: name: /governance-at-scale-account-factory/account-details/GovernanceAtScaleAccountFactoryAccountDetailsCRArn GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn: ssm: name: /governance-at-scale-account-factory/account-type-to-organizational-unit-chooser/GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn: ssm: name: /governance-at-scale-account-factory/account-bootstrap-shared/GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn SSOUserEmail: default: emailme@example.com SSOUserFirstName: default: Jane SSOUserLastName: default: Doe portfolio: demo-central-it-team-portfolio product: aws-control-tower-account-factory version: v1 aws-service-catalog-account-factory-account: depends_on: - account-type-to-organizational-unit-chooser - account-details - account-create-update-notifier - account-bootstrap-shared - account-waiter - move-to-ou deploy_to: tags: - regions: default_region tag: scope:puppet_account parameters: AccountEmail: default: emailme@example.com AccountGroup: default: workloads AccountName: default: devaccountforteamx AccountType: default: dev GovernanceAtScaleAccountFactoryAccountCreationCRArn: ssm: name: /governance-at-scale-account-factory/account-creation-shared/GovernanceAtScaleAccountFactoryAccountCreationCRArn GovernanceAtScaleAccountFactoryMoveToOUArn: ssm: name: /governance-at-scale-account-factory/move-to-ou/GovernanceAtScaleAccountFactoryMoveToOUCRArn GovernanceAtScaleAccountFactoryAccountWaiterArn: ssm: name: /governance-at-scale-account-factory/account-waiter/GovernanceAtScaleAccountFactoryAccountWaiterCRArn GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn: ssm: name: /governance-at-scale-account-factory/account-bootstrap-shared/GovernanceAtScaleAccountFactoryBootstrapperProjectCustomResourceArn GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn: ssm: name: /governance-at-scale-account-factory/account-type-to-organizational-unit-chooser/GovernanceAtScaleAccountFactoryAccountTypeToOUChooserCRArn GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn: ssm: name: /governance-at-scale-account-factory/account-create-update-notifier/GovernanceAtScaleAccountFactoryAccountCreateUpdateNotifierCRArn ServiceCatalogPuppetVersion: default: 0.89.0 SSOUserEmail: default: eamonnf+@example.com SSOUserFirstName: default: Jane SSOUserLastName: default: Doe portfolio: demo-central-it-team-portfolio product: aws-service-catalog-account-creation version: v2 schema: puppet-2019-04-01 ================================================ FILE: unsorted/governance-at-scale-account-factory/move-to-ou/v1/README.md ================================================ # account-creation-shared # Description Lambda for backing custom resources to create an AWS Account ## Parameters The list of parameters for this template: ### GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn Type: String Description: The Arn of the role to be used to interact with AWS Orgs ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: The name of the IAM Role used for cross account assess for AWS Organs ## Resources The list of resources this template creates: ### AccountCustomResourceRole Type: AWS::IAM::Role ### AccountCustomResource Type: AWS::Serverless::Function Description: The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryAccountCreationCRArn Description: the Arn of the custom resource that can be used to create an account ================================================ FILE: unsorted/governance-at-scale-account-factory/move-to-ou/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Lambda for backing custom resources to create an AWS Account {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "move-to-ou", "version": "v1"} Parameters: GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn: Type: String Description: | The Arn of the role to be used to interact with AWS Orgs GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String Resources: MoveToOUCustomResourceRole: Type: AWS::IAM::Role Properties: Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" MoveToOUCustomResource: Type: AWS::Serverless::Function Description: | The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml MoveToOU: Type: Custom::Resource Description: A custom resource for moving an account to an OU Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryMoveToOUCreationCRArn AccountType: !Ref AccountType AccountGroup: !Ref AccountGroup TargetOU: !GetAtt OUDetails.OrganizationalUnitName AccountId: !GetAtt Account.account_id ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for creating AWS accounts Role: !GetAtt MoveToOUCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn Outputs: GovernanceAtScaleAccountFactoryMoveToOUCRArn: Description: | the Arn of the custom resource that can be used to move accounts to different OUs Value: !GetAtt MoveToOUCustomResource.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/move-to-ou/v1/requirements.txt ================================================ better-boto==0.25.0 ================================================ FILE: unsorted/governance-at-scale-account-factory/move-to-ou/v1/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event["RequestType"] try: logger.info(request_type) assumable_role_in_root_account_arn = os.environ.get( "ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN" ) with betterboto_client.CrossAccountClientContextManager( "organizations", assumable_role_in_root_account_arn, "assumable_org_role" ) as organizations: if request_type in ["Create", "Update"]: target_ou = event.get("ResourceProperties").get("TargetOU") account_id = event.get("ResourceProperties").get("AccountId") result = organizations.list_parents_single_page(ChildId=account_id) if len(result.get("Parents", [])) != 1: raise Exception( f"There were unexpected parents for the account_id {account_id}: {json.dumps(result)}" ) current_ou = result.get("Parents")[0].get('Id') if str(target_ou) != "None" and current_ou != target_ou: logger.info("Moving account to new OU") response = organizations.list_roots() if len(response.get("Roots")) != 1: raise Exception("nRoots: {}".format(len(response.get("Roots")))) if str(target_ou).startswith("/"): target = organizations.convert_path_to_ou(target_ou) else: target = target_ou organizations.move_account( AccountId=account_id, SourceParentId=current_ou, DestinationParentId=target, ) send_response( event, context, "SUCCESS", { "Message": f"Moved to {target}", "account_id": account_id, }, ) elif request_type == "Delete": send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) send_response(event, context, "FAILED", {"Message": "Exception"}) def send_response(e, c, rs, rd): r = json.dumps( { "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": rd, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/governance-at-scale-account-factory/move-to-ou/v2/README.md ================================================ # account-creation-shared # Description Lambda for backing custom resources to create an AWS Account ## Parameters The list of parameters for this template: ### GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn Type: String Description: The Arn of the role to be used to interact with AWS Orgs ### OrganizationAccountAccessRole Type: String Default: OrganizationAccountAccessRole Description: The name of the IAM Role used for cross account assess for AWS Organs ## Resources The list of resources this template creates: ### AccountCustomResourceRole Type: AWS::IAM::Role ### AccountCustomResource Type: AWS::Serverless::Function Description: The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml Account: Type: Custom::CustomResource Description: A custom resource representing an AWS Account Properties: ServiceToken: !Ref AccountVendingCreationLambda Email: !Ref Email AccountName: !Ref AccountName IamUserAccessToBilling: !Ref IamUserAccessToBilling TargetOU: !Ref TargetOU ``` ## Outputs The list of outputs this template exposes: ### GovernanceAtScaleAccountFactoryAccountCreationCRArn Description: the Arn of the custom resource that can be used to create an account ================================================ FILE: unsorted/governance-at-scale-account-factory/move-to-ou/v2/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: | Lambda for backing custom resources to move an account into the correct OU {"framework": "servicecatalog-products", "role": "product", "product-set": "governance-at-scale-account-factory", "product": "move-to-ou", "version": "v2"} Parameters: GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn: Type: String Description: | The Arn of the role to be used to interact with AWS Orgs GovernanceAtScaleAccountFactoryIAMRolePath: Description: The path to use for IAM roles in this template Type: String Resources: MoveToOUCustomResourceRole: Type: AWS::IAM::Role Properties: Path: !Ref GovernanceAtScaleAccountFactoryIAMRolePath ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: ServiceCatalogActions PolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "sts:AssumeRole" - Effect: "Allow" Principal: Service: - "lambda.amazonaws.com" Action: - "sts:AssumeRole" MoveToOUCustomResource: Type: AWS::Serverless::Function Description: | The lambda function that creates an account when called using a CloudFormation Custom Resource: ```yaml MoveToOU: Type: Custom::Resource Description: A custom resource for moving an account to an OU Properties: ServiceToken: !Ref GovernanceAtScaleAccountFactoryMoveToOUCreationCRArn AccountType: !Ref AccountType AccountGroup: !Ref AccountGroup TargetOU: !GetAtt OUDetails.OrganizationalUnitName AccountId: !GetAtt Account.account_id ``` Properties: CodeUri: ./src Handler: handler.handler Description: Lambda for creating AWS accounts Role: !GetAtt MoveToOUCustomResourceRole.Arn Runtime: python3.7 Timeout: 900 Environment: Variables: ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN: !Ref GovernanceAtScaleAccountFactoryAccountCreationSharedOrgRoleArn Outputs: GovernanceAtScaleAccountFactoryMoveToOUCRArn: Description: | the Arn of the custom resource that can be used to move accounts to different OUs Value: !GetAtt MoveToOUCustomResource.Arn ================================================ FILE: unsorted/governance-at-scale-account-factory/move-to-ou/v2/requirements.txt ================================================ better-boto==0.25.0 ================================================ FILE: unsorted/governance-at-scale-account-factory/move-to-ou/v2/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import json, logging from urllib.request import Request, urlopen from betterboto import client as betterboto_client import os logger = logging.getLogger() logger.setLevel(logging.INFO) def handler(event, context): request_type = event["RequestType"] try: logger.info(request_type) assumable_role_in_root_account_arn = os.environ.get( "ASSUMABLE_ROLE_IN_ROOT_ACCOUNT_ARN" ) with betterboto_client.CrossAccountClientContextManager( "organizations", assumable_role_in_root_account_arn, "assumable_org_role" ) as organizations: if request_type in ["Create", "Update"]: target_ou = event.get("ResourceProperties").get("TargetOU") account_id = event.get("ResourceProperties").get("AccountId") result = organizations.list_parents_single_page(ChildId=account_id) if len(result.get("Parents", [])) != 1: raise Exception( f"There were unexpected parents for the account_id {account_id}: {json.dumps(result)}" ) current_ou = result.get("Parents")[0].get('Id') if current_ou == target_ou: logger.info("Nothing to do") send_response( event, context, "SUCCESS", { "Message": f"Left in {current_ou}", "account_id": account_id, }, ) elif str(target_ou) != "None" and current_ou != target_ou: logger.info("Moving account to new OU") response = organizations.list_roots() if len(response.get("Roots")) != 1: raise Exception("nRoots: {}".format(len(response.get("Roots")))) if str(target_ou).startswith("/"): target = organizations.convert_path_to_ou(target_ou) else: target = target_ou organizations.move_account( AccountId=account_id, SourceParentId=current_ou, DestinationParentId=target, ) send_response( event, context, "SUCCESS", { "Message": f"Moved to {target}", "account_id": account_id, }, ) elif request_type == "Delete": send_response(event, context, "SUCCESS", {"Message": "Deleted"}) else: send_response(event, context, "FAILED", {"Message": "Unexpected"}) except Exception as ex: logger.error(ex) send_response(event, context, "FAILED", {"Message": "Exception"}) def send_response(e, c, rs, rd): r = json.dumps( { "Status": rs, "Reason": "CloudWatch Log Stream: " + c.log_stream_name, "PhysicalResourceId": c.log_stream_name, "StackId": e["StackId"], "RequestId": e["RequestId"], "LogicalResourceId": e["LogicalResourceId"], "Data": rd, } ) d = str.encode(r) h = {"content-type": "", "content-length": str(len(d))} req = Request(e["ResponseURL"], data=d, method="PUT", headers=h) r = urlopen(req) logger.info("Status message: {} {}".format(r.msg, r.getcode())) ================================================ FILE: unsorted/governance-at-scale-account-factory/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Description: account-creation-notifier-cfh-handler Distributor: CCOE Name: account-creation-notifier-cfh-handler Owner: CCOE@Example.com Source: Configuration: RepositoryName: account-creation-notifier-cfh-handler Provider: CodeCommit SupportDescription: Find us on Slack or Wiki SupportEmail: ccoe-support@Example.com SupportUrl: https://example.com/intranet/teams/ccoe/products/account-factory Tags: [] Versions: - Description: Lambda to back a custom resource that dispatches notifications to an included SNS Topic Name: v1 Source: Provider: CodeCommit Configuration: BranchName: v1 RepositoryName: account-creation-notifier-cfh-handler - Description: account-creation-shared-org-bootstrap Distributor: CCOE Name: account-creation-shared-org-bootstrap Owner: CCOE@Example.com Source: Configuration: RepositoryName: account-creation-shared-org-bootstrap Provider: CodeCommit SupportDescription: Find us on Slack or Wiki SupportEmail: ccoe-support@Example.com SupportUrl: https://example.com/intranet/teams/ccoe/products/account-factory Tags: [] Versions: - Description: IAM Role needed to use AWS Organizations to create AWS Accounts. Name: v1 Source: Provider: CodeCommit Configuration: BranchName: v1 RepositoryName: account-creation-shared-org-bootstrap - Description: account-type-to-organizational-unit-chooser Distributor: CCOE Name: account-type-to-organizational-unit-chooser Owner: CCOE@Example.com Source: Configuration: RepositoryName: account-type-to-organizational-unit-chooser Provider: CodeCommit SupportDescription: Find us on Slack or Wiki SupportEmail: ccoe-support@Example.com SupportUrl: https://example.com/intranet/teams/ccoe/products/account-factory Tags: [] Versions: - Description: Takes the given account type and returns the organizational unit it should be assigned to Name: v1 Source: Provider: CodeCommit Configuration: BranchName: v1 RepositoryName: account-type-to-organizational-unit-chooser - Description: account-bootstrap-shared Distributor: CCOE Name: account-bootstrap-shared Owner: CCOE@Example.com Source: Configuration: RepositoryName: account-bootstrap-shared Provider: CodeCommit BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.x build: commands: - pip install -r requirements.txt -t src {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' SupportDescription: Find us on Slack or Wiki SupportEmail: ccoe-support@Example.com SupportUrl: https://example.com/intranet/teams/ccoe/products/account-factory Tags: [] Versions: - Description: Creates, codebuild project that can be run to bootstrap an account and lambda function that can be used to back a custom resource so the codebuild project can be started from CloudFormation Name: v2 Source: Provider: CodeCommit Configuration: BranchName: v2 RepositoryName: account-bootstrap-shared - Description: account-creation-shared Distributor: CCOE Name: account-creation-shared Owner: CCOE@Example.com Source: Configuration: RepositoryName: account-creation-shared Provider: CodeCommit BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.x build: commands: - pip install -r requirements.txt -t src {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' SupportDescription: Find us on Slack or Wiki SupportEmail: ccoe-support@Example.com SupportUrl: https://example.com/intranet/teams/ccoe/products/account-factory Tags: [] Versions: - Description: Lambda for backing custom resources to create an AWS Account Name: v4 Source: Provider: CodeCommit Configuration: BranchName: v4 RepositoryName: account-creation-shared - Description: account-create-update-notifier Distributor: CCOE Name: account-create-update-notifier Owner: CCOE@Example.com Source: Configuration: RepositoryName: account-create-update-notifier Provider: CodeCommit SupportDescription: Find us on Slack or Wiki SupportEmail: ccoe-support@Example.com SupportUrl: https://example.com/intranet/teams/ccoe/products/account-factory Tags: [] Versions: - Description: Lambda to back a custom resource that dispatches notifications to an included SNS Topic Name: v1 Source: Provider: CodeCommit Configuration: BranchName: v1 RepositoryName: account-create-update-notifier - Description: account-bootstrap-shared-org-bootstrap Distributor: CCOE Name: account-bootstrap-shared-org-bootstrap Owner: CCOE@Example.com Source: Configuration: RepositoryName: account-bootstrap-shared-org-bootstrap Provider: CodeCommit SupportDescription: Find us on Slack or Wiki SupportEmail: ccoe-support@Example.com SupportUrl: https://example.com/intranet/teams/ccoe/products/account-factory Tags: [] Versions: - Description: IAM Role needed to use AWS Organizations to bootstrap AWS Accounts. Name: v1 Source: Provider: CodeCommit Configuration: BranchName: v1 RepositoryName: account-bootstrap-shared-org-bootstrap - Description: account-details Distributor: CCOE Name: account-details Owner: CCOE@Example.com Source: Configuration: RepositoryName: account-details Provider: CodeCommit SupportDescription: Find us on Slack or Wiki SupportEmail: ccoe-support@Example.com SupportUrl: https://example.com/intranet/teams/ccoe/products/account-factory Tags: [] Versions: - Description: Takes the given 'AccountName' and returns the account details Name: v1 Source: Provider: CodeCommit Configuration: BranchName: v1 RepositoryName: account-details - Description: aws-control-tower-account-factory Distributor: CCOE Name: aws-control-tower-account-factory Owner: CCOE@Example.com Source: Configuration: RepositoryName: aws-control-tower-account-factory Provider: CodeCommit SupportDescription: Find us on Slack or Wiki SupportEmail: ccoe-support@Example.com SupportUrl: https://example.com/intranet/teams/ccoe/products/account-factory Tags: [] Versions: - Description: Augments AWS Control Tower Account Factory - simplifies user input, dispatches extra parameters via AWS SNS andreturns the account id as an output Name: v1 Source: Provider: CodeCommit Configuration: BranchName: v1 RepositoryName: aws-control-tower-account-factory - Description: account-details-org-bootstrap Distributor: CCOE Name: account-details-org-bootstrap Owner: CCOE@Example.com Source: Configuration: RepositoryName: account-details-org-bootstrap Provider: CodeCommit SupportDescription: Find us on Slack or Wiki SupportEmail: ccoe-support@Example.com SupportUrl: https://example.com/intranet/teams/ccoe/products/account-factory Tags: [] Versions: - Description: IAM Role needed to use AWS Organizations to list AWS Accounts. Name: v1 Source: Provider: CodeCommit Configuration: BranchName: v1 RepositoryName: account-details-org-bootstrap - Description: aws-service-catalog-account-creation Distributor: CCOE Name: aws-service-catalog-account-creation Owner: CCOE@Example.com Source: Configuration: RepositoryName: aws-service-catalog-account-creation Provider: CodeCommit SupportDescription: Find us on Slack or Wiki SupportEmail: ccoe-support@Example.com SupportUrl: https://example.com/intranet/teams/ccoe/products/account-factory Versions: - Description: account-bootstrap-shared-product and account-creation-shared-product must both be provisioned into the same accountbefore this will work - they build some resources needed for this to work and they provision the SSM params with thecorrect ARNs so this works with no copy and pasting.Provisioning this template will create an AWS Account and bootstrap it using aws-service-catalog-puppet so you canprovision products into the account. Name: v2 Source: Provider: CodeCommit Configuration: BranchName: v2 RepositoryName: aws-service-catalog-account-creation ProviderName: ccoe Tags: - Key: team Value: ccoe - Description: Lambda for backing custom resources to wait for an account to become available Distributor: CCOE Name: account-waiter Owner: CCOE@Example.com Source: Configuration: RepositoryName: account-waiter Provider: CodeCommit SupportDescription: Find us on Slack or Wiki SupportEmail: ccoe-support@Example.com SupportUrl: https://example.com/intranet/teams/ccoe/products/account-factory Versions: - Description: Lambda for backing custom resources to wait for an account to become available Name: v3 Source: Provider: CodeCommit Configuration: BranchName: v3 RepositoryName: account-waiter ProviderName: ccoe Tags: - Key: team Value: ccoe - Description: Lambda for backing custom resources to move an account into the correct OU Distributor: CCOE Name: move-to-ou Owner: CCOE@Example.com Source: Configuration: RepositoryName: move-to-ou Provider: CodeCommit SupportDescription: Find us on Slack or Wiki SupportEmail: ccoe-support@Example.com SupportUrl: https://example.com/intranet/teams/ccoe/products/account-factory Versions: - Description: Lambda for backing custom resources to move an account into the correct OU Name: v2 Source: Provider: CodeCommit Configuration: BranchName: v2 RepositoryName: move-to-ou ProviderName: ccoe Tags: - Key: team Value: ccoe Schema: factory-2019-04-01 ================================================ FILE: unsorted/mulit-account-aws-cloudtrail/README.md ================================================ # multi-account-cloudtrail-enable This will enable AWS CloudTrail in all accounts for which it is deployed to. ## Description You can choose which encryption to use for the buckets you create and you can choose whether to target all regions or not. ## Install Instructions ```bash aws codecommit create-repository --repository-name aws-cloudtrail-enable git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/aws-cloudtrail-enable svn export https://github.com/awslabs/aws-service-catalog-products/trunk/mulit-account-aws-cloudtrail/aws-cloudtrail-enable/v1 aws-cloudtrail-enable --force ``` ================================================ FILE: unsorted/mulit-account-aws-cloudtrail/aws-cloudtrail-enable/v1/README.md ================================================ # product.template # Description This template creates an AWS CloudTrail trail and an Amazon S3 bucket where logs are published. You can optionally change the behaviour: - which encryption to use for your buckets - whether CloudTrail validates the integrity of the log files - whether the trail is publishing events from global services, such as IAM, to the log files - whether the CloudTrail trail is created in the region in which you create the stack or in all regions ## Parameters The list of parameters for this template: ### EnableLogFileValidation Type: String Default: true Description: Indicates whether CloudTrail validates the integrity of log files ### IncludeGlobalEvents Type: String Default: true Description: Indicates whether the trail is publishing events from global services, such as IAM, to the log files. ### MultiRegion Type: String Default: false Description: Indicates whether the CloudTrail trail is created in the region in which you create the stack (false) or in all regions (true). ### TrailBucket Type: String Description: Bucket name for logs. ### LoggingAccountID Type: String Description: This is the account where the S3 buckets should be stored. If this is the account where the template is deployed the bucket will be created ### SSEAlgorithm Type: String Default: AES256 Description: Which S3 bucket SSE Algorithm to use when creating the logging bucket. ### KMSMasterKeyID Type: String Description: KMS key ID to use when SSE algorithm is aws:kms. ## Resources The list of resources this template creates: ### KMSTrail Type: AWS::CloudTrail::Trail Description: CloudTrail trail to use when KMS encryption is used ### AES256Trail Type: AWS::CloudTrail::Trail Description: CloudTrail trail to use when AES256 encryption is used ### SpokeTrail Type: AWS::CloudTrail::Trail Description: CloudTrail trail to use when deploying into a spoke account ### S3KmsLoggingBucket Type: AWS::S3::Bucket Description: S3 bucket to use for logging the logging bucket when KMS encryption is used ### S3KmsBucket Type: AWS::S3::Bucket Description: S3 bucket to use when KMS encryption is used for logging ### S3KmsBucketPolicy Type: AWS::S3::BucketPolicy Description: S3 bucket policy to use when KMS encryption is used for logging ### S3LoggingBucket Type: AWS::S3::Bucket Description: S3 bucket to use for logging the logging bucket when AES256 encryption is used ### S3Bucket Type: AWS::S3::Bucket Description: S3 bucket to use when KMS encryption is used for logging ### S3BucketPolicy Type: AWS::S3::BucketPolicy Description: S3 bucket policy to use when AES256 encryption is used for logging ## Outputs The list of outputs this template exposes: ================================================ FILE: unsorted/mulit-account-aws-cloudtrail/aws-cloudtrail-enable/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: | This template creates an AWS CloudTrail trail and an Amazon S3 bucket where logs are published. You can optionally change the behaviour: - which encryption to use for your buckets - whether CloudTrail validates the integrity of the log files - whether the trail is publishing events from global services, such as IAM, to the log files - whether the CloudTrail trail is created in the region in which you create the stack or in all regions Parameters: EnableLogFileValidation: Type: String Default: 'true' Description: Indicates whether CloudTrail validates the integrity of log files AllowedValues: - 'true' - 'false' IncludeGlobalEvents: Type: String Default: 'true' Description: Indicates whether the trail is publishing events from global services, such as IAM, to the log files. AllowedValues: - 'true' - 'false' MultiRegion: Type: String Default: 'false' Description: | Indicates whether the CloudTrail trail is created in the region in which you create the stack (false) or in all regions (true). AllowedValues: - 'true' - 'false' TrailBucket: Type: String Description: Bucket name for logs. LoggingAccountID: Type: String Description: | This is the account where the S3 buckets should be stored. If this is the account where the template is deployed the bucket will be created SSEAlgorithm: Type: 'String' Default: 'AES256' Description: Which S3 bucket SSE Algorithm to use when creating the logging bucket. AllowedValues: - 'AES256' - 'aws:kms' KMSMasterKeyID: Type: 'String' Description: 'KMS key ID to use when SSE algorithm is aws:kms.' Conditions: UseKMS: !Equals - !Ref SSEAlgorithm - 'aws:kms' UseAES256: !Equals - !Ref SSEAlgorithm - 'AES256' AccountMatch: !Equals - !Ref AWS::AccountId - !Ref LoggingAccountID KMSDeploy: !And - !Condition AccountMatch - !Condition UseKMS AES256Deploy: !And - !Condition AccountMatch - !Condition UseAES256 SpokeDeploy: !Not [Condition: AccountMatch] Resources: KMSTrail: Condition: KMSDeploy Description: CloudTrail trail to use when KMS encryption is used Type: AWS::CloudTrail::Trail Properties: S3BucketName: !Ref TrailBucket IsLogging: True EnableLogFileValidation: !Ref EnableLogFileValidation IncludeGlobalServiceEvents: !Ref IncludeGlobalEvents IsMultiRegionTrail: !Ref MultiRegion DependsOn: - S3KmsBucket - S3KmsBucketPolicy AES256Trail: Condition: AES256Deploy Description: CloudTrail trail to use when AES256 encryption is used Type: AWS::CloudTrail::Trail Properties: S3BucketName: !Ref TrailBucket IsLogging: True EnableLogFileValidation: !Ref EnableLogFileValidation IncludeGlobalServiceEvents: !Ref IncludeGlobalEvents IsMultiRegionTrail: !Ref MultiRegion DependsOn: - S3Bucket - S3BucketPolicy SpokeTrail: Condition: SpokeDeploy Type: AWS::CloudTrail::Trail Description: CloudTrail trail to use when deploying into a spoke account Properties: S3BucketName: !Ref TrailBucket IsLogging: True EnableLogFileValidation: !Ref EnableLogFileValidation IncludeGlobalServiceEvents: !Ref IncludeGlobalEvents IsMultiRegionTrail: !Ref MultiRegion S3KmsLoggingBucket: DeletionPolicy: Retain Condition: KMSDeploy Description: S3 bucket to use for logging the logging bucket when KMS encryption is used Type: AWS::S3::Bucket Properties: BucketName: !Sub centralised-cloudtrail-s3-access-logs-${AWS::AccountId}-${AWS::Region} AccessControl: LogDeliveryWrite VersioningConfiguration: Status: Enabled BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: KMSMasterKeyID: !Ref KMSMasterKeyID SSEAlgorithm: !Ref SSEAlgorithm S3KmsBucket: DeletionPolicy: Retain Condition: KMSDeploy Description: S3 bucket to use when KMS encryption is used for logging Type: AWS::S3::Bucket Properties: BucketName: !Ref TrailBucket VersioningConfiguration: Status: Enabled LoggingConfiguration: DestinationBucketName: !Ref S3KmsLoggingBucket BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: KMSMasterKeyID: !Ref KMSMasterKeyID SSEAlgorithm: !Ref SSEAlgorithm S3KmsBucketPolicy: Type: AWS::S3::BucketPolicy Condition: KMSDeploy Description: S3 bucket policy to use when KMS encryption is used for logging Properties: Bucket: !Ref S3KmsBucket PolicyDocument: Version: 2012-10-17 Statement: - Sid: AWSBucketPermissionsCheck Effect: Allow Principal: Service: - cloudtrail.amazonaws.com Action: s3:GetBucketAcl Resource: - !Sub "arn:aws:s3:::${S3KmsBucket}" - Sid: AWSBucketDelivery Effect: Allow Principal: Service: - cloudtrail.amazonaws.com Action: s3:PutObject Resource: - Fn::Join: - "" - - "arn:aws:s3:::" - !Ref "S3KmsBucket" - "/AWSLogs/*/*" # Create buckets using S3-SSE keys for default encryption S3LoggingBucket: DeletionPolicy: Retain Condition: AES256Deploy Description: S3 bucket to use for logging the logging bucket when AES256 encryption is used Type: AWS::S3::Bucket Properties: BucketName: !Sub centralised-cloudtrail-s3-access-logs-${AWS::AccountId}-${AWS::Region} AccessControl: LogDeliveryWrite VersioningConfiguration: Status: Enabled BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: SSEAlgorithm: !Ref SSEAlgorithm S3Bucket: DeletionPolicy: Retain Description: S3 bucket to use when KMS encryption is used for logging Condition: AES256Deploy Type: AWS::S3::Bucket Properties: BucketName: !Ref TrailBucket VersioningConfiguration: Status: Enabled LoggingConfiguration: DestinationBucketName: !Ref S3LoggingBucket BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: SSEAlgorithm: !Ref SSEAlgorithm S3BucketPolicy: Type: AWS::S3::BucketPolicy Description: S3 bucket policy to use when AES256 encryption is used for logging Condition: AES256Deploy Properties: Bucket: !Ref S3Bucket PolicyDocument: Version: 2012-10-17 Statement: - Sid: AWSBucketPermissionsCheck Effect: Allow Principal: Service: - cloudtrail.amazonaws.com - config.amazonaws.com Action: s3:GetBucketAcl Resource: - !Sub "arn:aws:s3:::${S3Bucket}" - Sid: AWSBucketDelivery Effect: Allow Principal: Service: - cloudtrail.amazonaws.com - config.amazonaws.com Action: s3:PutObject Resource: - Fn::Join: - "" - - "arn:aws:s3:::" - !Ref "S3Bucket" - "/AWSLogs/*/*" - Sid: AWSBucketRead Effect: Allow Principal: Service: - lambda.amazonaws.com Action: s3:GetObject Resource: - Fn::Join: - "" - - "arn:aws:s3:::" - !Ref "S3Bucket" - "/AWSLogs/*/*" ================================================ FILE: unsorted/mulit-account-aws-cloudtrail/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: aws-cloudtrail-enable: portfolio: demo-central-it-team-portfolio product: aws-cloudtrail-enable version: v1 ================================================ FILE: unsorted/mulit-account-aws-cloudtrail/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: aws-cloudtrail-enable Owner: central-it@customer.com Description: aws-cloudtrail-enable product Distributor: central-it-team SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/account-iam Tags: - Key: product-type Value: iam Versions: - Name: v1 Description: aws-cloudtrail-enable Active: True Source: Provider: CodeCommit Configuration: RepositoryName: aws-cloudtrail-enable BranchName: master ================================================ FILE: unsorted/multi-account-aws-guardduty/README.md ================================================ ================================================ FILE: unsorted/multi-account-aws-guardduty/guardduty-master/v1/product.template.yaml ================================================ ================================================ FILE: unsorted/multi-account-aws-guardduty/guardduty-master/v2/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: Creates an IAM Role that can be assumed by the Spoke GuardDuty Lambdas for self-registration Parameters: AWSOrganizationId: Type: String Description: The AWS Organizations ID (example o-xxxxxxx) ResourcePrefix: Description: "Groups resources under a single prefix" Type: String Default: "sc-admin-product" Resources: GuardDutyHubRole: Type: "AWS::IAM::Role" Properties: RoleName: GuardDutyHubRole Path: !Sub "/${ResourcePrefix}/" AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: - "*" Action: - "sts:AssumeRole" Condition: StringEquals: aws:PrincipalOrgID: - !Ref AWSOrganizationId Policies: - PolicyName: "Invite-Spoke" PolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Action: - guardduty:CreateMembers - guardduty:InviteMembers - guardduty:ListDetectors - guardduty:CreateDetector - iam:CreateServiceLinkedRole Resource: "*" Outputs: GuardDutyHubRoleArn: Description: ARN of the GuardDutyHubRole to be assumed by spoke accounts in the org Value: !GetAtt GuardDutyHubRole.Arn ================================================ FILE: unsorted/multi-account-aws-guardduty/guardduty-org-bootstrap/v1/README.md ================================================ ================================================ FILE: unsorted/multi-account-aws-guardduty/guardduty-org-bootstrap/v1/product.template.yaml ================================================ ================================================ FILE: unsorted/multi-account-aws-guardduty/guardduty-org-bootstrap/v2/README.md ================================================ ================================================ FILE: unsorted/multi-account-aws-guardduty/guardduty-org-bootstrap/v2/product.template.yaml ================================================ ================================================ FILE: unsorted/multi-account-aws-guardduty/guardduty-spoke/v1/product.template.yaml ================================================ ================================================ FILE: unsorted/multi-account-aws-guardduty/guardduty-spoke/v1/src/lambda_handler.py ================================================ ================================================ FILE: unsorted/multi-account-aws-guardduty/guardduty-spoke/v2/product.template.yaml ================================================ ================================================ FILE: unsorted/multi-account-aws-guardduty/guardduty-spoke/v2/register/lambda_handler.py ================================================ ================================================ FILE: unsorted/multi-account-aws-guardduty/guardduty-spoke/v2/register/requirements.txt ================================================ ================================================ FILE: unsorted/multi-account-aws-guardduty/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: guardduty-spoke: portfolio: demo-central-it-team-portfolio product: guardduty-spoke version: v2 depends_on: - guardduty-master - guardduty-org-bootstrap guardduty-master: portfolio: demo-central-it-team-portfolio product: guardduty-master version: v2 guardduty-org-bootstrap: portfolio: demo-central-it-team-portfolio product: guardduty-org-bootstrap version: v2 ================================================ FILE: unsorted/multi-account-aws-guardduty/portfolio.yaml ================================================ ================================================ FILE: unsorted/multi-account-aws-securityhub/README.md ================================================ # SecurityHub This is a solution that will set up AWS Security Hub in a Hub and Spoke style model. ## Description AWS Security Hub provides you with a comprehensive view of your security state in AWS and helps you check your compliance with the security industry standards and best practices. Security Hub collects security data from across AWS accounts, services, and supported third-party partner products and helps you analyze your security trends and identify the highest priority security issues. ## Install Instructions ```bash aws codecommit create-repository --repository-name securityhub-master git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/securityhub-master svn export https://github.com/awslabs/aws-service-catalog-products/trunk/multi-account-aws-securityhub/securityhub-master/v1 securityhub-master --force aws codecommit create-repository --repository-name securityhub-spoke git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/securityhub-spoke svn export https://github.com/awslabs/aws-service-catalog-products/trunk/multi-account-aws-securityhub/securityhub-spoke/v1 securityhub-spoke --force ``` ================================================ FILE: unsorted/multi-account-aws-securityhub/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: securityhub-master: portfolio: demo-central-it-team-portfolio product: securityhub-master version: v1 parameters: AWSOrganizationId: default: 'o-qwertyuiopa' outputs: ssm: - param_name: /sc-outputs/securityhub-master/SecurityHubRegisterRoleArn stack_output: SecurityHubRegisterRoleArn deploy_to: tags: - tag: aws_account_name:security regions: default_region securityhub-spoke: portfolio: demo-central-it-team-portfolio product: securityhub-spoke version: v1 depends_on: - securityhub-master parameters: HubEnablerFunctionRole: ssm: name: /sc-outputs/securityhub-master/SecurityHubRegisterRoleArn region: eu-central-1 Email: default: 'joe+sechubemail@example.com' HubAccountId: ssm: name: /sc-outputs/avm-security-account/account_id region: eu-central-1 deploy_to: tags: - tag: aws_account_name:development01 regions: default_region ================================================ FILE: unsorted/multi-account-aws-securityhub/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: securityhub-master Owner: infrastructure-team@customer.com Description: This will set up AWS Security Hub and an IAM role to allow self registration in the Security Account. Distributor: IT-Support-Customer SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: infrastructure-team@customer.com SupportUrl: https://wiki.customer.com/infrastructure-team/self-service/ Tags: - Key: lz-type Value: core - Key: product-type Value: SecurityHub Versions: - Name: v1 Description: This will set up AWS Security Hub and an IAM role to allow self registration in the Security Account. Active: True Source: Provider: CodeCommit Configuration: RepositoryName: securityhub-master BranchName: master - Name: securityhub-spoke Owner: infrastructure-team@customer.com Description: This will set up AWS Security Hub and assume an IAM role in the Security Account to perform self registration. Distributor: IT-Support-Customer SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: infrastructure-team@customer.com SupportUrl: https://wiki.customer.com/infrastructure-team/self-service/ Tags: - Key: lz-type Value: core - Key: product-type Value: SecurityHub Versions: - Name: v1 Description: This will set up AWS Security Hub and assume an IAM role in the Security Account to perform self registration. Active: True Source: Provider: CodeCommit Configuration: RepositoryName: securityhub-spoke BranchName: master BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.8 build: commands: - for dir in src/*; do pip install -r $dir/requirements.txt -t $dir/; done {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' ================================================ FILE: unsorted/multi-account-aws-securityhub/securityhub-master/v1/README.md ================================================ # securityhub-master This well set up AWS Security Hub and an IAM role to allow self registration in the Security Account. ## Parameters ``` AWSOrganizationId: Type: String Description: The AWS Organizations ID (example o-xxxxxxx) ``` ================================================ FILE: unsorted/multi-account-aws-securityhub/securityhub-master/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: 2010-09-09 Description: Creates an IAM Role that can be assumed by the Spoke Security Hub Lambdas for self-registration Parameters: AWSOrganizationId: Type: String Description: The AWS Organizations ID (example o-xxxxxxx) Resources: SecurityHub: Type: AWS::SecurityHub::Hub Properties: Tags: "Managed-by" : "Service-Catalog-Puppet" SecurityHubRegisterRole: Type: "AWS::IAM::Role" Properties: RoleName: SecurityHubRegisterRole AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Principal: AWS: - "*" Action: - "sts:AssumeRole" Condition: StringEquals: aws:PrincipalOrgID: - !Ref AWSOrganizationId Policies: - PolicyName: "Invite-Spoke" PolicyDocument: Version: "2012-10-17" Statement: - Effect: "Allow" Action: - securityhub:AcceptInvitation - securityhub:CreateMembers - securityhub:InviteMembers - securityhub:DeleteMembers - securityhub:DisassociateMembers Resource: "*" Outputs: SecurityHubRegisterRoleArn: Description: ARN of the SecurityHubRegisterRole to be assumed by spoke accounts in the org Value: !GetAtt SecurityHubRegisterRole.Arn SecurityHubArn: Description: ARN of SecurityHub Value: !Ref SecurityHub ================================================ FILE: unsorted/multi-account-aws-securityhub/securityhub-spoke/v1/README.md ================================================ # securityhub-spoke This well set up AWS Security Hub and assume an IAM role in the Security Account to perform self registration. ## Parameters ``` HubEnablerFunctionRole: Type: String Description: ARN of the SecurityHub role in the master that SecurityHubRegisterFunction will assume into Email: Type: String Description: Email contact required for SecurityHub invite HubAccountId: Type: String Description: The AccountId of the SecurityHub master account ``` ================================================ FILE: unsorted/multi-account-aws-securityhub/securityhub-spoke/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: Enables SecurityHub & creates a Lambda-backed custom resource which will assume a role in the hub account and register itself Parameters: HubEnablerFunctionRole: Type: String Description: ARN of the SecurityHub role in the master that SecurityHubRegisterFunction will assume into Email: Type: String Description: Email contact required for SecurityHub invite HubAccountId: Type: String Description: The AccountId of the SecurityHub master account Resources: SecurityHub: Type: AWS::SecurityHub::Hub Properties: Tags: "Managed-by" : "Service-Catalog-Puppet" SecurityHubRegisterFunction: Type: AWS::Serverless::Function Description: | A lambda function that will register itself in the hub and send an invite Properties: Runtime: python3.7 Handler: lambda_function.lambda_handler CodeUri: ./src/register Policies: - arn:aws:iam::aws:policy/AWSLambdaExecute - Version: 2012-10-17 Statement: - Effect: Allow Action: - sts:AssumeRole Resource: !Ref HubEnablerFunctionRole - Effect: Allow Action: - securityhub:ListInvitations - securityhub:AcceptInvitation Resource: '*' Timeout: 900 SpokeCustomResource: Type: Custom::RegisterSecurityHub DependsOn: SecurityHub Properties: ServiceToken: !GetAtt SecurityHubRegisterFunction.Arn AssumableHubRoleArn: !Ref HubEnablerFunctionRole SpokeAccountId: !Ref AWS::AccountId HubAccountId: !Ref HubAccountId Email: !Ref Email ================================================ FILE: unsorted/multi-account-aws-securityhub/securityhub-spoke/v1/src/register/cfnresponse.py ================================================ # Copyright 2016 Amazon Web Services, Inc. or its affiliates. All Rights Reserved. # This file is licensed to you under the AWS Customer Agreement (the "License"). # You may not use this file except in compliance with the License. # A copy of the License is located at http://aws.amazon.com/agreement/ . # This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. # See the License for the specific language governing permissions and limitations under the License. import requests import json SUCCESS = "SUCCESS" FAILED = "FAILED" def send(event, context, responseStatus, responseData, physicalResourceId=None, noEcho=False): responseUrl = event['ResponseURL'] print(responseUrl) responseBody = {} responseBody['Status'] = responseStatus responseBody['Reason'] = 'See the details in CloudWatch Log Stream: ' + context.log_stream_name responseBody['PhysicalResourceId'] = physicalResourceId or context.log_stream_name responseBody['StackId'] = event['StackId'] responseBody['RequestId'] = event['RequestId'] responseBody['LogicalResourceId'] = event['LogicalResourceId'] responseBody['NoEcho'] = noEcho responseBody['Data'] = responseData json_responseBody = json.dumps(responseBody) print("Response body:\n" + json_responseBody) headers = { 'content-type' : '', 'content-length' : str(len(json_responseBody)) } try: response = requests.put(responseUrl, data=json_responseBody, headers=headers) print("Status code: " + response.reason) except Exception as e: print("send(..) failed executing requests.put(..): " + str(e)) ================================================ FILE: unsorted/multi-account-aws-securityhub/securityhub-spoke/v1/src/register/lambda_function.py ================================================ # Any code, applications, scripts, templates, proofs of concept, documentation # and other items provided by AWS under this SOW are "AWS Content,"" as defined # in the Agreement, and are provided for illustration purposes only. All such # AWS Content is provided solely at the option of AWS, and is subject to the # terms of the Addendum and the Agreement. Customer is solely responsible for # using, deploying, testing, and supporting any code and applications provided # by AWS under this SOW. # # (c) 2019 Amazon Web Services import logging import json import boto3 import cfnresponse # Configure logging FORMAT = '%(asctime)s - %(name)s - %(levelname)s - %(message)s' if len(logging.getLogger().handlers) > 0: # The Lambda environment pre-configures a handler logging to stderr. If a handler is already configured, # `.basicConfig` does not execute. Thus we set the level directly. logging.getLogger().setLevel(logging.INFO) else: logging.basicConfig(format=FORMAT, level=logging.INFO) def lambda_handler(event, context): """ Lambda Function for command execution """ logging.info(json.dumps(event, indent=2)) request_type = event['RequestType'] if request_type == 'Create': associate_securityhub(event, context) elif request_type == 'Delete': disassociate_securityhub(event, context) def assume_role(arn, session_name): """aws sts assume-role --role-arn arn:aws:iam::00000000000000:role/example-role --role-session-name example-role""" sts_client = boto3.client('sts') sts_client.get_caller_identity()["Account"] response = sts_client.assume_role( RoleArn=arn, RoleSessionName=session_name) session = boto3.Session(aws_access_key_id=response['Credentials']['AccessKeyId'], aws_secret_access_key=response['Credentials']['SecretAccessKey'], aws_session_token=response['Credentials']['SessionToken']) return session def associate_securityhub(event, context): status = cfnresponse.FAILED data = {} try: create_invite_member(event) accept_invite(event) status = cfnresponse.SUCCESS except BaseException as ex: logging.exception(ex) finally: cfnresponse.send(event=event, context=context, responseStatus=status, responseData=data, physicalResourceId=None) def create_invite_member(event): arn = event['ResourceProperties']['AssumableHubRoleArn'] spoke_account_id = event['ResourceProperties']['SpokeAccountId'] email = event['ResourceProperties']['Email'] session = assume_role(arn, 'SecurityHubInvite') logging.info("Creating Member") client = session.client('securityhub') create_response = client.create_members( AccountDetails=[ { 'AccountId': spoke_account_id, 'Email': email }, ] ) logging.info(create_response) logging.info("Inviting Member") invite_response = client.invite_members( AccountIds=[ spoke_account_id, ] ) logging.info(invite_response) def accept_invite(event): HubAccountId = event['ResourceProperties']['HubAccountId'] client = boto3.client('securityhub') resp = client.list_invitations() items = [] while resp: items += resp['Invitations'] resp = client.list_invitations()(NextToken=resp['NextToken']) if 'NextToken' in resp else None logging.info("Invites received in total") logging.info(items) invite_id = None for item in items: if item['AccountId'] == HubAccountId: logging.info("Success. Invite Received from Hub Security account.") invite_id = item['InvitationId'] logging.info(item) else: logging.error("Cannot find invite from Hub Security account.") raise Exception accept_response = client.accept_invitation( MasterId=HubAccountId, InvitationId=invite_id ) logging.info("Accepted Invitation") logging.info(accept_response) def disassociate_securityhub(event, context): status = cfnresponse.FAILED data = {} try: delete_member(event) status = cfnresponse.SUCCESS except BaseException as ex: logging.exception(ex) finally: cfnresponse.send(event=event, context=context, responseStatus=status, responseData=data, physicalResourceId=None) def delete_member(event): spoke_account_id = event['ResourceProperties']['SpokeAccountId'] arn = event['ResourceProperties']['AssumableHubRoleArn'] session = assume_role(arn, 'SecurityHubInvite') logging.info("Disassociating Member") client = session.client('securityhub') response = client.disassociate_members( AccountIds=[ spoke_account_id, ] ) logging.info(response) logging.info("Deleting Member") delete_response = client.delete_members( AccountIds=[ spoke_account_id, ] ) logging.info(delete_response) ================================================ FILE: unsorted/multi-account-aws-securityhub/securityhub-spoke/v1/src/register/requirements.txt ================================================ boto3==1.10.0 requests==2.22.0 ================================================ FILE: unsorted/networking/README.md ================================================ # networking ## Description With this product set you can create a VPC and a public subnet ## Install Instructions ```bash aws codecommit create-repository --repository-name networking-vpc git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/networking-vpc svn export https://github.com/awslabs/aws-service-catalog-products/trunk/networking/vpc/v1 networking-vpc --force aws codecommit create-repository --repository-name networking-public-subnet git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/networking-public-subnet svn export https://github.com/awslabs/aws-service-catalog-products/trunk/networking/vpc/v1 networking-public-subnet --force ``` ================================================ FILE: unsorted/networking/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: networking-public-subnet: portfolio: demo-central-it-team-portfolio product: networking-public-subnet version: v1 depends_on: - networking-vpc parameters: VPCId: ssm: name: my-wonderful-vpc PublicSubnetCIDR: Default: 10.0.0.0/16 outputs: ssm: - param_name: my-wonderful-subnet stack_output: PublicSubnetId networking-vpc: portfolio: demo-central-it-team-portfolio product: networking-vpc version: v1 parameters: VPCCIDR: Default: 10.0.0.0/16 outputs: ssm: - param_name: my-wonderful-vpc stack_output: VPCId ================================================ FILE: unsorted/networking/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Portfolios: Components: - Name: networking-vpc Owner: Amazon-Web-Services Description: VPC Product Distributor: Amazon-Web-Services SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/ Tags: - Key: product-type Value: networking Versions: - Name: v1 Description: VPC Product Active: True Source: Provider: CodeCommit Configuration: RepositoryName: networking-vpc BranchName: v1 - Name: networking-public-subnet Owner: Amazon-Web-Services Description: public-subnet Product Distributor: Amazon-Web-Services SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it-team@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/ Tags: - Key: product-type Value: networking Versions: - Name: v1 Description: public-subnet Product Active: True Source: Provider: CodeCommit Configuration: RepositoryName: networking-public-subnet BranchName: v1 ================================================ FILE: unsorted/networking/public-subnet/v1/README.md ================================================ # product.template # Description Builds out a public subnet for use ## Parameters The list of parameters for this template: ### VPCId Type: String Description: VPC to create the subnet in ### PublicSubnetCIDR Type: String Default: 10.0.0.0/16 Description: CIDR to use for the Public Subnet ## Resources The list of resources this template creates: ### PublicSubnet Type: AWS::EC2::Subnet Description: The public subnet that is created ### InternetGateway Type: AWS::EC2::InternetGateway Description: The internet gateway to attach to the public subnet ### GatewayAttachement Type: AWS::EC2::VPCGatewayAttachment Description: Attach the gateway to the subnet ### PublicRouteTable Type: AWS::EC2::RouteTable Description: Associate the route table for the subnet ### PublicRoute Type: AWS::EC2::Route Description: Set up the route out to the internet ### PublicSubnetRouteTableAssociation Type: AWS::EC2::SubnetRouteTableAssociation Description: Associate the route ## Outputs The list of outputs this template exposes: ### PublicSubnetId Description: The subnet id of the public subnet created ================================================ FILE: unsorted/networking/public-subnet/v1/product.template.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: | Builds out a public subnet for use Parameters: VPCId: Type: String Description: | VPC to create the subnet in PublicSubnetCIDR: Type: String Default: '10.0.0.0/16' Description: | CIDR to use for the Public Subnet Resources: PublicSubnet: Type: AWS::EC2::Subnet Description: The public subnet that is created Properties: AvailabilityZone: Fn::Select: - 0 - Fn::GetAZs: {Ref: 'AWS::Region'} VpcId: !Ref VPCId CidrBlock: !Ref PublicSubnetCIDR MapPublicIpOnLaunch: true InternetGateway: Type: AWS::EC2::InternetGateway Description: The internet gateway to attach to the public subnet GatewayAttachement: Type: AWS::EC2::VPCGatewayAttachment Description: Attach the gateway to the subnet Properties: VpcId: !Ref VPCId InternetGatewayId: !Ref InternetGateway PublicRouteTable: Type: AWS::EC2::RouteTable Description: Associate the route table for the subnet Properties: VpcId: !Ref VPCId PublicRoute: Type: AWS::EC2::Route DependsOn: GatewayAttachement Description: Set up the route out to the internet Properties: RouteTableId: !Ref PublicRouteTable DestinationCidrBlock: '0.0.0.0/0' GatewayId: !Ref InternetGateway PublicSubnetRouteTableAssociation: Type: AWS::EC2::SubnetRouteTableAssociation Description: Associate the route Properties: SubnetId: !Ref PublicSubnet RouteTableId: !Ref PublicRouteTable Outputs: PublicSubnetId: Description: The subnet id of the public subnet created Value: !Ref PublicSubnet ================================================ FILE: unsorted/networking/vpc/v1/README.md ================================================ # product.template # Description Builds out a VPC for use ## Parameters The list of parameters for this template: ### VPCCIDR Type: String Default: 10.0.0.0/16 Description: Subnet to use for the VPC ## Resources The list of resources this template creates: ### VPC Type: AWS::EC2::VPC Description: The vpc being created ## Outputs The list of outputs this template exposes: ### VPCId Description: The ID of the VPC that was created ================================================ FILE: unsorted/networking/vpc/v1/product.template.yaml ================================================ AWSTemplateFormatVersion: '2010-09-09' Description: | Builds out a VPC for use Parameters: VPCCIDR: Type: String Default: '10.0.0.0/16' Description: | Subnet to use for the VPC Resources: VPC: Type: AWS::EC2::VPC Description: The vpc being created Properties: EnableDnsSupport: true EnableDnsHostnames: true CidrBlock: !Ref VPCCIDR Outputs: VPCId: Description: The ID of the VPC that was created Value: !Ref VPC ================================================ FILE: unsorted/s3-event-notifier/README.md ================================================ # S3 Event Notifier This solution creates an event driven approach to process S3 PUT events via SQS and Lambda. ![Template Design](s3-event-notifier-design.png) ## Description * Deploys one product which will listen to any `PUT` events on S3 `files/` prefix folder * Sends the event to a SQS queue * Configures a dead-letter queue in case of failures * Uses KMS encryption on the SQS queues * Lambda trigger is configured on the SQS queue to extract the `bucketName`, `key` and `eventTime` ## Install Instructions ```bash aws codecommit create-repository --repository-name s3-event-notifier git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.us-east-2.amazonaws.com/v1/repos/s3-event-notifier svn export https://github.com/awslabs/aws-service-catalog-products/trunk/s3-event-notifier/v1 s3-event-notifier --force ``` ## Usage Instructions - Copy the config from the portfolio.yaml. Here we are providing the details on the repository and BuildSpec needed for packaging the products - Copy the config from manifest.yaml. We will be having one launch in the manifest ================================================ FILE: unsorted/s3-event-notifier/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: s3-event-notification: portfolio: demo-central-it-team-portfolio product: s3-event-notifier version: v1 deploy_to: tags: - tag: aws_account_name:app_dev regions: default_region ================================================ FILE: unsorted/s3-event-notifier/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: s3-event-notifier Owner: central-it@customer.com Description: s3-event-notifier product for event driven architecture Distributor: IT-Support-Customer SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/s3-event-notifier Tags: - Key: product-type Value: s3-event-notifier Versions: - Name: v1 Description: s3-event-notification product for processing the PUT events on S3 Active: True Source: Provider: CodeCommit Configuration: RepositoryName: s3-event-notifier BranchName: v1 BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.8 build: commands: - pip install -r requirements.txt -t src {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' ================================================ FILE: unsorted/s3-event-notifier/v1/product.template.yaml ================================================ AWSTemplateFormatVersion: "2010-09-09" Transform: AWS::Serverless-2016-10-31 Description: > Creates an event driven pattern to process S3 PUT events via SQS and Lambda {"framework": "servicecatalog-products", "role": "product", "product-set": "s3-event-notifier", "product": "s3-event-notifier", "version": "v1"} Resources: # CMK for the SQS FileProcessingCMK: Type: AWS::KMS::Key Properties: Description: CMK for the encryption of the SQS KeyPolicy: Version: '2012-10-17' Statement: - Sid: Enable IAM User Permissions Effect: Allow Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Action: - "kms:*" Resource: "*" - Sid: Allow administration of the key Effect: Allow Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:role/IsenConsoleAdmin" Action: - "kms:Create*" - "kms:Describe*" - "kms:Enable*" - "kms:List*" - "kms:Put*" - "kms:Update*" - "kms:Revoke*" - "kms:Disable*" - "kms:Get*" - "kms:Delete*" - "kms:ScheduleKeyDeletion" - "kms:CancelKeyDeletion" Resource: "*" - Sid: Allow use of the key by S3 services Effect: Allow Principal: Service: "s3.amazonaws.com" Action: - "kms:Decrypt" - "kms:GenerateDataKey" Resource: "*" - Sid: Allow use of the key by SQS services Effect: Allow Principal: Service: "sqs.amazonaws.com" Action: - "kms:Decrypt" - "kms:GenerateDataKey" - Sid: Allow use of the key by Lambda services Effect: Allow Principal: Service: "lambda.amazonaws.com" Action: - "kms:Decrypt" - "kms:GenerateDataKey" Resource: "*" FileProcessingCMKAlias: Type: AWS::KMS::Alias Properties: AliasName: "alias/FileProcessingCMK" TargetKeyId: !Ref FileProcessingCMK # SQS queue and queue policy FileProcessingEventsQueue: Type: AWS::SQS::Queue Properties: QueueName: "FileProcessingEventsQueue" VisibilityTimeout: 60 KmsMasterKeyId: !Ref FileProcessingCMK RedrivePolicy: deadLetterTargetArn: !GetAtt FileProcessingDeadLetterQueue.Arn maxReceiveCount: 5 FileProcessingEventsQueuePolicy: Type: AWS::SQS::QueuePolicy Properties: Queues: - !Ref FileProcessingEventsQueue PolicyDocument: Statement: - Action: - "SQS:*" Effect: "Allow" Resource: !GetAtt FileProcessingEventsQueue.Arn Principal: AWS: "*" Condition: ArnLike: aws:SourceArn: !Sub "arn:aws:s3:*:*:file-processing-${AWS::AccountId}" StringEquals: aws:SourceAccount: !Sub "${AWS::AccountId}" FileProcessingDeadLetterQueue: Type: AWS::SQS::Queue Properties: QueueName: "FileProcessingDeadLetterQueue" VisibilityTimeout: 60 KmsMasterKeyId: !Ref FileProcessingCMK FileProcessingDeadLetterQueuePolicy: Type: AWS::SQS::QueuePolicy Properties: Queues: - !Ref FileProcessingDeadLetterQueue PolicyDocument: Statement: - Action: - "SQS:*" Effect: "Allow" Resource: !GetAtt FileProcessingDeadLetterQueue.Arn Principal: AWS: "*" Condition: ArnLike: aws:SourceArn: !Sub "arn:aws:sqs:${AWS::Region}:${AWS::AccountId}:FileProcessingEventsQueue" StringEquals: aws:SourceAccount: !Sub "${AWS::AccountId}" # S3 bucket for storing the files S3Bucket: DependsOn: - FileProcessingCMK - FileProcessingCMKAlias - FileProcessingEventsQueue - FileProcessingEventsQueuePolicy Type: AWS::S3::Bucket Properties: BucketName: !Sub "file-processing-${AWS::AccountId}" AccessControl: BucketOwnerFullControl PublicAccessBlockConfiguration: BlockPublicAcls: True BlockPublicPolicy: True IgnorePublicAcls: True RestrictPublicBuckets: True BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: SSEAlgorithm: AES256 NotificationConfiguration: QueueConfigurations: - Event: "s3:ObjectCreated:Put" Filter: S3Key: Rules: - Name: "prefix" Value: "files/" Queue: !GetAtt FileProcessingEventsQueue.Arn # Bucket policy for the S3 bucket S3BucketPolicy: Type: AWS::S3::BucketPolicy Properties: PolicyDocument: Statement: - Action: - s3:PutObject Effect: Allow Resource: !Join ["", [!GetAtt S3Bucket.Arn, "/*"]] Principal: AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root" Bucket: !Ref S3Bucket # Lambda function and role for handling the SQS events LambdaExecutionRole: Type: AWS::IAM::Role Properties: AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Principal: Service: lambda.amazonaws.com Action: "sts:AssumeRole" ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: InlinePolicy PolicyDocument: Statement: - Action: - "SQS:SendMessage" - "SQS:ReceiveMessage" - "SQS:DeleteMessage" - "SQS:GetQueueAttributes" - "kms:Decrypt" - "kms:GenerateDataKey" Effect: Allow Resource: "*" LambdaFunction: Type: AWS::Serverless::Function Properties: Description: "Lambda for the event processing" Role: !GetAtt LambdaExecutionRole.Arn CodeUri: ./src Handler: handler.handler MemorySize: 128 Runtime: "python3.8" Timeout: 60 SQSAndLambdaMapping: Type: AWS::Lambda::EventSourceMapping Properties: EventSourceArn: !GetAtt FileProcessingEventsQueue.Arn FunctionName: !GetAtt LambdaFunction.Arn Outputs: FileProcessingBucket: Description: Bucket for uploading the files Value: !Ref S3Bucket SQSQueue: Description: File processing queue Value: !Ref FileProcessingEventsQueue ================================================ FILE: unsorted/s3-event-notifier/v1/requirements.txt ================================================ boto3 ================================================ FILE: unsorted/s3-event-notifier/v1/src/handler.py ================================================ import json import logging # Configure logging LOGGER = logging.getLogger(__name__) LOGGER.setLevel(logging.DEBUG) ''' Function to process the event ''' def handler(event, context): LOGGER.debug(json.dumps(event, indent=4, default=str)) data = {} try: # Fetch the message records records_ = event['Records'] for sqs_record in records_: # The body of the SQS message is a text, hence converting it into a python dictionary s3_event_string = sqs_record['body'] s3_event = json.loads(s3_event_string) for s3_record in s3_event['Records']: data['bucketName'] = s3_record['s3']['bucket']['name'] data['key'] = s3_record['s3']['object']['key'] data['eventTime'] = s3_record['eventTime'] except BaseException as ex: raise ex finally: LOGGER.debug(json.dumps(data, indent=4, default=str)) return data ================================================ FILE: unsorted/service-catalog-tools-dashboard/README.md ================================================ # Service Catalog Tools Dashboard This is a solution to monitor the service catalog tools - Factory and Puppet, using dashboards in CloudWatch and a static website hosted on S3. ![Product Launch Status](product-launch-status.png) ![Pipelines Status](pipelines-status.png) ## Description Deploys three products which create the dashboard for monitoring the service catalog tools - [get-metrics](get-metrics/v2/README.md) - [put-metrics](put-metrics/v2/README.md) - [static-web-app](static-web-app/v4/README.md) ## Install Instructions ```bash aws codecommit create-repository --repository-name get-metrics git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.us-east-2.amazonaws.com/v2/repos/get-metrics svn export https://github.com/awslabs/aws-service-catalog-products/trunk/service-catalog-tools-dashboard/get-metrics/v2 get-metrics --force ``` ```bash aws codecommit create-repository --repository-name put-metrics git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.us-east-2.amazonaws.com/v2/repos/put-metrics svn export https://github.com/awslabs/aws-service-catalog-products/trunk/service-catalog-tools-dashboard/put-metrics/v2 put-metrics --force ``` ```bash aws codecommit create-repository --repository-name static-web-app git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.us-east-2.amazonaws.com/v4/repos/static-web-app svn export https://github.com/awslabs/aws-service-catalog-products/trunk/service-catalog-tools-dashboard/static-web-app/v4 static-web-app --force ``` ## Usage Instructions - Copy the config from the portfolio.yaml. Here we are providing the details on the repository and BuildSpec needed for packaging the products - Copy the config from manifest.yaml. We will be having three launches in the manifest ================================================ FILE: unsorted/service-catalog-tools-dashboard/get-metrics/v2/README.md ================================================ # Get Metrics Product This CloudFormation template creates custom Lambda functions and CloudWatch event rules for uploading the JSON output from SC tools into the S3 bucket hosting the static website. **NOTE** : **This is for illustration purposes only and not approved for production use**. ## Parameters The manifest.yaml should use the SSM to provide `S3BucketNameForStaticWebsite` value from the [static-web-app product](../../static-web-app/v1/README.md) ``` S3BucketNameForStaticWebsite: Description: S3 bucket name for hosting the static website Type: String IsDebugEnabled: Description: Set true/false to enable/ disable logging of the get metrics lambda Type: String ``` ## Custom resources - [GetMetrics Lambda Function](src/handler.py) : The lambda function will use the service catalog commands to generate a `list-launches.json` and `show-pipelines.json`. The JSON files are uploaded into the S3 bucket at runtime. The JSON files are uploaded everytime we have an execution of the `servicecatalog-factory-pipeline` and `servicecatalog-puppet-pipeline` ## Example ``` S3BucketNameForStaticWebsite = static-s3-website IsDebugEnabled = true ``` ================================================ FILE: unsorted/service-catalog-tools-dashboard/get-metrics/v2/product.template.yaml ================================================ AWSTemplateFormatVersion: "2010-09-09" Transform: AWS::Serverless-2016-10-31 Description: "Creates the get metric resources for fetching the SC-F and SC-P pipelines status" Parameters: S3BucketNameForStaticWebsite: Description: S3 bucket name for hosting the static website Type: String IsDebugEnabled: Description: Set true/false to enable/ disable logging of the get metrics lambda Type: String Resources: # Role for the build projects - Factory and Puppet DashboardCodeBuildRole: Type: AWS::IAM::Role Properties: Path: /servicecatalog-monitoring/ AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - codebuild.amazonaws.com Action: - sts:AssumeRole Policies: - PolicyName: SCFDashboardCodeBuildPolicy PolicyDocument: Statement: - Action: - sts:AssumeRole - ecr:BatchCheckLayerAvailability - ecr:GetDownloadUrlForLayer - ecr:BatchGetImage - ecr:GetAuthorizationToken - logs:CreateLogGroup - logs:CreateLogStream - logs:PutLogEvents - codecommit:GitPull - codepipeline:ListPipelineExecutions - ssm:GetParameter - servicecatalog:ListPortfolioAccess - servicecatalog:AssociatePrincipalWithPortfolio - iam:GetRole Effect: Allow Resource: "*" - Action: - s3:PutObject - s3:GetObject - s3:GetObjectVersion - s3:GetBucketAcl - s3:GetBucketLocation Effect: Allow Resource: - !Join ["", ["arn:aws:s3:::",!Ref S3BucketNameForStaticWebsite, "/*"]] - !Join ["", ["arn:aws:s3:::",!Ref S3BucketNameForStaticWebsite]] # Creates a build project for exporting the SC products status PuppetPipelineBuildLogs: Type: AWS::CodeBuild::Project Properties: Name: PuppetPipelineBuildLogs Description: Build project for exporting the SC products status Environment: Type: LINUX_CONTAINER ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:5.0 ServiceRole: !GetAtt DashboardCodeBuildRole.Arn Source: Type: CODECOMMIT Location: !Join - "" - - "https://git-codecommit." - !Ref "AWS::Region" - ".amazonaws.com/v1/repos/ServiceCatalogPuppet" BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.8 commands: - pip install aws-service-catalog-puppet build: commands: - servicecatalog-puppet expand manifest.yaml - servicecatalog-puppet list-launches manifest-expanded.yaml --format json > list-launches.json artifacts: files: - list-launches.json Artifacts: Type: S3 Location: !Ref S3BucketNameForStaticWebsite Name: assets Packaging: NONE EncryptionDisabled: true # Creates a build project for exporting the SC factory pipeline status FactoryPipelineBuildLogs: Type: AWS::CodeBuild::Project Properties: Name: FactoryPipelineBuildLogs Description: Build project for exporting the SC factory pipelines status Environment: Type: LINUX_CONTAINER ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:5.0 ServiceRole: !GetAtt DashboardCodeBuildRole.Arn Source: Type: CODECOMMIT Location: !Join - "" - - "https://git-codecommit." - !Ref "AWS::Region" - ".amazonaws.com/v1/repos/ServiceCatalogFactory" BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.8 commands: - pip install aws-service-catalog-factory build: commands: - servicecatalog-factory show-pipelines . --format json > show-pipelines.json artifacts: files: - show-pipelines.json Artifacts: Type: S3 ArtifactIdentifier: outputArtifact Location: !Ref S3BucketNameForStaticWebsite Name: assets Packaging: NONE EncryptionDisabled: true # Custom Lambda resource to start the code build project for fetching the SC-F and SC-P metrics GetMetricLambdaFunction: Type: AWS::Serverless::Function Properties: CodeUri: ./src Handler: handler.handler MemorySize: 128 Role: !GetAtt GetMetricLambdaRole.Arn Runtime: python3.8 Timeout: 500 Environment: Variables: DEBUG_MODE: !Ref IsDebugEnabled # Lambda role for executing custom GetMetricLambdaFunction GetMetricLambdaRole: Type: AWS::IAM::Role Properties: Path: /servicecatalog-monitoring/ AssumeRolePolicyDocument: Statement: - Action: - sts:AssumeRole Effect: Allow Principal: Service: lambda.amazonaws.com Version: "2012-10-17" ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: GetSCFMetricsPolicy PolicyDocument: Statement: - Action: - codebuild:StartBuild Effect: Allow Resource: "*" # Puppet pipeline event invoked on success/ failure of servicecatalog-puppet-pipeline PuppetPipelineStatusEventRule: Type: AWS::Events::Rule Properties: Name: service-catalog-puppet-pipeline-metrics Description: Event to detect a successful/ failed execution of the service catalog puppet pipeline EventPattern: source: - "aws.codepipeline" detail-type: - "CodePipeline Pipeline Execution State Change" detail: pipeline: - "servicecatalog-puppet-pipeline" state: - "SUCCEEDED" - "FAILED" Targets: - Id: "PuppetPipelineMetric" Arn: !GetAtt "GetMetricLambdaFunction.Arn" Input: '{"ProjectName":"PuppetPipelineBuildLogs"}' DependsOn: - PuppetPipelineBuildLogs # Factory pipeline event invoked on success/ failure of servicecatalog-factory-pipeline FactoryPipelineStatusEventRule: Type: AWS::Events::Rule Properties: Name: service-catalog-factory-pipeline-metrics Description: Event to detect a successful/ failed execution of the service catalog factory pipeline EventPattern: source: - "aws.codepipeline" detail-type: - "CodePipeline Pipeline Execution State Change" detail: pipeline: - "servicecatalog-factory-pipeline" state: - "SUCCEEDED" - "FAILED" Targets: - Id: "FactoryPipelineMetric" Arn: !GetAtt "GetMetricLambdaFunction.Arn" Input: '{"ProjectName":"FactoryPipelineBuildLogs"}' DependsOn: - FactoryPipelineBuildLogs # Permission for the puppet event rule lambda invocation GetMetricPuppetLambdaInvokePermission: Type: AWS::Lambda::Permission Properties: Action: lambda:InvokeFunction Principal: events.amazonaws.com SourceArn: !GetAtt PuppetPipelineStatusEventRule.Arn FunctionName: !Ref GetMetricLambdaFunction # Permission for the factory event rule lambda invocation GetMetricFactoryLambdaInvokePermission: Type: AWS::Lambda::Permission Properties: Action: lambda:InvokeFunction Principal: events.amazonaws.com SourceArn: !GetAtt FactoryPipelineStatusEventRule.Arn FunctionName: !Ref GetMetricLambdaFunction Outputs: FactoryBuildProject: Description: Build project for the SC-F pipeline statistics Value: !Ref FactoryPipelineBuildLogs PuppetBuildProject: Description: Build project for the SC-P pipeline statistics Value: !Ref PuppetPipelineBuildLogs ================================================ FILE: unsorted/service-catalog-tools-dashboard/get-metrics/v2/requirements.txt ================================================ boto3==1.9.163 ================================================ FILE: unsorted/service-catalog-tools-dashboard/get-metrics/v2/src/handler.py ================================================ #!/usr/bin/env python """ CodeBuild CloudFormation Lambda Function For Fetching Metrics """ import json import logging import os import boto3 # Instantiate the code build client client = boto3.client('codebuild') # Configure logging LOGGER = logging.getLogger(__name__) DEBUG_MODE = os.getenv('DEBUG_MODE', 'true') if DEBUG_MODE == 'true': LOGGER.setLevel(logging.DEBUG) else: LOGGER.setLevel(logging.INFO) # Constants SUCCESS = "SUCCESS" FAILED = "FAILED" def start_build(project_name): if not project_name: raise ValueError( 'missing ProjectName resource property' ) response = client.start_build( projectName=project_name ) return response def handler(event, context): LOGGER.info('event: {}'.format(json_dump_format(event))) project_name = event.get('ProjectName') try: start_build_response = start_build(project_name) LOGGER.info( 'start_build response: {}'.format(json_dump_format(start_build_response) ) ) # only return specific fields to prevent "response object is too long" errors response = { 'build_id': start_build_response['build']['id'], 'project_name': start_build_response['build']['projectName'], 'arn': start_build_response['build']['arn'], } response_status = SUCCESS request_id = start_build_response['ResponseMetadata']['RequestId'] reason = 'Create' except Exception as e: error = 'failed to start build: {}'.format(e) LOGGER.error(error) response_status = FAILED reason = error pass response_body = { 'Status': response_status, 'Reason': ('Reason: ' + json_dump_format(reason) + '. See the details in CloudWatch Log Stream: ' + context.log_stream_name), 'RequestId': request_id, 'Data': response } LOGGER.info( 'lambda response: {}'.format(json_dump_format(response_body) ) ) def json_dump_format(obj): return json.dumps(obj, indent=4, sort_keys=True, default=str) ================================================ FILE: unsorted/service-catalog-tools-dashboard/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 actions: # Action for the build and deploy of the static website build-static-content: type: codebuild project_name: BuildStaticWebsite account_id: "123456789012" region: "us-east-2" launches: sc-tools-dashboard-static-web-app: portfolio: demo-central-it-team-portfolio product: static-web-app version: v4 parameters: CIDRForDashboardAccess: default: "192.168.0.0/20" outputs: ssm: - param_name: sc-dashboard-bucket-name stack_output: S3BucketName # Post build to initiate CodeBuild post_actions: - name: build-static-content sc-tools-dashboard-get-metrics: portfolio: demo-central-it-team-portfolio product: get-metrics version: v2 depends_on: - sc-tools-dashboard-static-web-app parameters: S3BucketNameForStaticWebsite: ssm: name: sc-dashboard-bucket-name region: us-east-2 IsDebugEnabled: default: "true" sc-tools-dashboard-put-metrics: portfolio: demo-central-it-team-portfolio product: put-metrics version: v2 parameters: IsDebugEnabled: default: "true" ================================================ FILE: unsorted/service-catalog-tools-dashboard/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: static-web-app Owner: central-it@customer.com Description: Deploys a static website in S3 bucket to display service catalog tools dashboard Distributor: IT-Support-Customer SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/service-catalog-tools-dashboard/static-web-app Tags: - Key: product-type Value: service-catalog-tools-dashboard Versions: - Name: v4 Description: Deploys a static website in S3 bucket to display service catalog tools dashboard Active: True Source: Provider: CodeCommit Configuration: RepositoryName: static-web-app BranchName: v4 - Name: get-metrics Owner: central-it@customer.com Description: get-metrics product for fetching the service catalog tools launch and pipelines information Distributor: IT-Support-Customer SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/service-catalog-tools-dashboard/get-metrics Tags: - Key: product-type Value: service-catalog-tools-dashboard Versions: - Name: v2 Description: get-metrics product for fetching the service catalog tools launch and pipelines information Active: True Source: Provider: CodeCommit Configuration: RepositoryName: get-metrics BranchName: v2 BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.8 build: commands: - pip install -r requirements.txt -t src {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' - Name: put-metrics Owner: central-it@customer.com Description: put-metrics product to push custom metrics into CloudWatch and create CloudWatch dashboard Distributor: IT-Support-Customer SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/service-catalog-tools-dashboard/put-metrics Tags: - Key: product-type Value: service-catalog-tools-dashboard Versions: - Name: v2 Description: put-metrics product to push custom metrics into CloudWatch and create CloudWatch dashboard Active: True Source: Provider: CodeCommit Configuration: RepositoryName: put-metrics BranchName: v2 BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.8 build: commands: - pip install -r requirements.txt -t src {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' ================================================ FILE: unsorted/service-catalog-tools-dashboard/put-metrics/v2/README.md ================================================ # Put Metrics Product This CloudFormation template creates custom Lambda functions and CloudWatch event rules for uploading the metrics for SC tools pipelines into CloudWatch. **NOTE** : **This is for illustration purposes only and not approved for production use**. ## Parameters ``` IsDebugEnabled: Description: Set true/false to enable/ disable logging of the get metrics lambda Type: String ``` ## Custom resources - [PutMetrics Lambda Function](src/handler.py) : The lambda function will upload custom metrics into cloud watch for the pipeline execution status of `servicecatalog-factory-pipeline` and `servicecatalog-puppet-pipeline`. The states tracked are `SUCCEEDED`, `FAILED` and `CANCELED`. The metrics will be used to plot the CloudWatch dashboard for the pipelines ## Example ``` IsDebugEnabled = true ``` ================================================ FILE: unsorted/service-catalog-tools-dashboard/put-metrics/v2/product.template.yaml ================================================ AWSTemplateFormatVersion: "2010-09-09" Transform: AWS::Serverless-2016-10-31 Description: "Creates a CloudWatch dashboard that monitors SC-F and SC-P pipelines execution status" Parameters: IsDebugEnabled: Description: Set true/false to enable/ disable logging of the get metrics lambda Type: String Resources: # Custom Lambda resource to put the pipeline metrics into cloud watch PutMetricLambdaFunction: Type: AWS::Serverless::Function Properties: CodeUri: ./src Handler: handler.handler MemorySize: 128 Role: !GetAtt PutMetricLambdaRole.Arn Runtime: python3.7 Timeout: 500 Environment: Variables: DEBUG_MODE: !Ref IsDebugEnabled # Event to collect the CloudWatch dashboard metrics for service catalog factory and puppet pipelines SCFPipelinesEventForCWDashboard: Type: AWS::Events::Rule Properties: Name: service-catalog-pipelines-dashboard-metrics Description: Event to detect a successful/ failed or cancelled execution of the service catalog pipelines EventPattern: source: - "aws.codepipeline" detail-type: - "CodePipeline Pipeline Execution State Change" detail: pipeline: - "servicecatalog-factory-pipeline" - "servicecatalog-puppet-pipeline" state: - "SUCCEEDED" - "FAILED" - "CANCELED" Targets: - Id: "PutMetricLambda" Arn: !GetAtt "PutMetricLambdaFunction.Arn" # Permission for the SCF event rule lambda invocation PutMetricLambdaInvokePermission: Type: AWS::Lambda::Permission Properties: Action: lambda:InvokeFunction Principal: events.amazonaws.com SourceArn: !GetAtt SCFPipelinesEventForCWDashboard.Arn FunctionName: !Ref PutMetricLambdaFunction # Lambda role for executing custom PutMetricLambdaFunction PutMetricLambdaRole: Type: AWS::IAM::Role Properties: Path: /servicecatalog-monitoring/ AssumeRolePolicyDocument: Statement: - Action: - sts:AssumeRole Effect: Allow Principal: Service: lambda.amazonaws.com Version: 2012-10-17 ManagedPolicyArns: - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole Policies: - PolicyName: PutSCFMetricsPolicy PolicyDocument: Statement: - Action: - cloudwatch:PutMetricData Effect: Allow Resource: "*" # Dashboard for viewing the metrics for the pipelines ServiceCatalogFoundationDashboard: Type: AWS::CloudWatch::Dashboard Properties: DashboardName: Service-Catalog-Foundation-Dashboard DashboardBody: !Sub | { "widgets": [ { "type": "metric", "x": 0, "y": 0, "width": 12, "height": 3, "properties": { "metrics": [ [ "Service Catalog Foundation", "SucceededExecutions", "By Pipelines", "servicecatalog-factory-pipeline" ], [ ".", "FailedExecutions", ".", "." ], [ ".", "CancelledExecutions", ".", "." ] ], "view": "singleValue", "region": "${AWS::Region}", "stat": "Sum", "period": 300, "setPeriodToTimeRange": true, "title": "Service Catalog Factory Pipeline Counts" } }, { "type": "metric", "x": 12, "y": 0, "width": 12, "height": 3, "properties": { "metrics": [ [ "Service Catalog Foundation", "SucceededExecutions", "By Pipelines", "servicecatalog-puppet-pipeline" ], [ ".", "FailedExecutions", ".", "." ], [ ".", "CancelledExecutions", ".", "." ] ], "view": "singleValue", "region": "${AWS::Region}", "setPeriodToTimeRange": true, "title": "Service Catalog Puppet Pipeline Counts", "period": 300, "stat": "Sum" } }, { "type": "metric", "x": 0, "y": 3, "width": 12, "height": 6, "properties": { "metrics": [ [ "Service Catalog Foundation", "SucceededExecutions", "By Pipelines", "servicecatalog-factory-pipeline" ], [ ".", "FailedExecutions", ".", "." ], [ ".", "CancelledExecutions", ".", "." ] ], "view": "timeSeries", "stacked": false, "region": "${AWS::Region}", "stat": "Sum", "period": 900, "legend": { "position": "right" }, "title": "Service Catalog Factory Pipeline Time Series" } }, { "type": "metric", "x": 12, "y": 3, "width": 12, "height": 6, "properties": { "metrics": [ [ "Service Catalog Foundation", "SucceededExecutions", "By Pipelines", "servicecatalog-puppet-pipeline" ], [ ".", "FailedExecutions", ".", "." ], [ ".", "CancelledExecutions", ".", "." ] ], "view": "timeSeries", "stacked": false, "region": "${AWS::Region}", "legend": { "position": "right" }, "yAxis": { "right": { "label": "" } }, "title": "Service Catalog Puppet Pipeline Time Series", "period": 300, "stat": "Sum" } } ] } Outputs: CloudWatchDashboardName: Value: !Ref ServiceCatalogFoundationDashboard Description: Logical name of the service catalog CloudWatch dashboard ================================================ FILE: unsorted/service-catalog-tools-dashboard/put-metrics/v2/requirements.txt ================================================ boto3==1.9.163 ================================================ FILE: unsorted/service-catalog-tools-dashboard/put-metrics/v2/src/handler.py ================================================ #!/usr/bin/env python """ Lambda Function For Putting Metrics into CloudWatch """ import json import logging import os from datetime import datetime import boto3 # Instantiate the cloud watch client client = boto3.client('cloudwatch') # Configure logging LOGGER = logging.getLogger(__name__) DEBUG_MODE = os.getenv('DEBUG_MODE', 'true') if DEBUG_MODE == 'true': LOGGER.setLevel(logging.DEBUG) else: LOGGER.setLevel(logging.INFO) # Configure the metric names for Success, Failure and Cancelled executions def succeeded_executions(): return "SucceededExecutions" def failed_executions(): return "FailedExecutions" def cancelled_executions(): return "CancelledExecutions" # dictionary for the metric names pipeline_state_map = { 'SUCCEEDED': succeeded_executions(), 'FAILED': failed_executions(), 'CANCELED': cancelled_executions() } def handler(event, context): pipeline_name, pipeline_state, execution_timestamp = get_event_info(event) put_metrics(pipeline_name, pipeline_state_map[pipeline_state], execution_timestamp) def get_event_info(event): LOGGER.info('Event: {}'.format(json_dump_format(event))) pipeline_name = event['detail']['pipeline'] pipeline_state = event['detail']['state'] execution_timestamp = event['time'] return pipeline_name, pipeline_state, execution_timestamp def put_metrics(name, status, timestamp): datetime_obj = datetime.strptime(timestamp, '%Y-%m-%dT%H:%M:%SZ') client.put_metric_data( Namespace='Service Catalog Foundation', MetricData=[ { 'MetricName': '{}'.format(status), 'Dimensions': [ { 'Name': 'By Pipelines', 'Value': name } ], 'Timestamp': datetime_obj.timestamp(), 'Value': 1, 'Unit': 'Count', 'StorageResolution': 1 } ] ) def json_dump_format(obj): return json.dumps(obj, indent=4, sort_keys=True, default=str) ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/README.md ================================================ # Static Web App Product This CloudFormation template creates dashboard product hosted on S3 bucket for tracking the status of the SC tools. **NOTE** : **This is for illustration purposes only and not approved for production use**. This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.3.9. ## Local development server - Navigate to the root folder. Here the root folder is _v1_ - Run `npm install` for installing all the dependencies from `package.json` - Run `npm run-script start` for a dev server. Navigate to `http://localhost:4200/` - The app will automatically reload if you change any of the source files. - Any environment specific variables are defined in `environment.ts` and `environment.prod.ts` ## Location for the JSON data - The application has the `list-launches.json` stored in `src/assets/data` - All JSON files generated by the code pipeline will be stored here ## Deployment to S3 - The code build project will be deploying the static website into the S3 bucket - We have a cloud watch event which listens for any change to the code commit repository of static-web-app and triggers the code build ## Parameters ``` CIDRForDashboardAccess: Description: IP CIDR range which will be allowed to access the monitoring dashboard hosted on S3 Type: String ``` ## Example ``` CIDRForDashboardAccess = 192.168.0.0/20 ``` ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/angular.json ================================================ { "$schema": "./node_modules/@angular/cli/lib/config/schema.json", "version": 1, "newProjectRoot": "projects", "projects": { "web-dashboard": { "root": "", "sourceRoot": "src", "projectType": "application", "prefix": "app", "schematics": { "@schematics/angular:component": { "style": "scss" } }, "architect": { "build": { "builder": "@angular-devkit/build-angular:browser", "options": { "outputPath": "dist", "index": "src/index.html", "main": "src/main.ts", "polyfills": "src/polyfills.ts", "tsConfig": "src/tsconfig.app.json", "assets": [ "src/favicon.ico", "src/assets", "src/error.html" ], "styles": [ "src/styles.scss", "node_modules/bootstrap/dist/css/bootstrap.min.css" ], "scripts": [], "es5BrowserSupport": true }, "configurations": { "production": { "fileReplacements": [ { "replace": "src/environments/environment.ts", "with": "src/environments/environment.prod.ts" } ], "optimization": true, "outputHashing": "all", "sourceMap": false, "extractCss": true, "namedChunks": false, "aot": true, "extractLicenses": true, "vendorChunk": false, "buildOptimizer": true, "budgets": [ { "type": "initial", "maximumWarning": "2mb", "maximumError": "5mb" } ] } } }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { "browserTarget": "web-dashboard:build" }, "configurations": { "production": { "browserTarget": "web-dashboard:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { "browserTarget": "web-dashboard:build" } }, "test": { "builder": "@angular-devkit/build-angular:karma", "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", "tsConfig": "src/tsconfig.spec.json", "karmaConfig": "src/karma.conf.js", "styles": [ "src/styles.scss" ], "scripts": [], "assets": [ "src/favicon.ico", "src/assets" ] } }, "lint": { "builder": "@angular-devkit/build-angular:tslint", "options": { "tsConfig": [ "src/tsconfig.app.json", "src/tsconfig.spec.json" ], "exclude": [ "**/node_modules/**" ] } } } }, "web-dashboard-e2e": { "root": "e2e/", "projectType": "application", "prefix": "", "architect": { "e2e": { "builder": "@angular-devkit/build-angular:protractor", "options": { "protractorConfig": "e2e/protractor.conf.js", "devServerTarget": "web-dashboard:serve" }, "configurations": { "production": { "devServerTarget": "web-dashboard:serve:production" } } }, "lint": { "builder": "@angular-devkit/build-angular:tslint", "options": { "tsConfig": "e2e/tsconfig.e2e.json", "exclude": [ "**/node_modules/**" ] } } } } }, "defaultProject": "web-dashboard" } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/buildspec.yml ================================================ version: 0.2 phases: install: runtime-versions: nodejs: 10 pre_build: commands: - echo Installing NPM dependencies.... - npm install build: commands: - echo Building the project.... - npm run-script build post_build: commands: - echo Build is completed on `date` artifacts: files: - "**/*" base-directory: "dist" ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/e2e/protractor.conf.js ================================================ // Protractor configuration file, see link for more information // https://github.com/angular/protractor/blob/master/lib/config.ts const {SpecReporter} = require('jasmine-spec-reporter'); exports.config = { allScriptsTimeout: 11000, specs: [ './src/**/*.e2e-spec.ts' ], capabilities: { 'browserName': 'chrome' }, directConnect: true, baseUrl: 'http://localhost:4200/', framework: 'jasmine', jasmineNodeOpts: { showColors: true, defaultTimeoutInterval: 30000, print: function () { } }, onPrepare() { require('ts-node').register({ project: require('path').join(__dirname, './tsconfig.e2e.json') }); jasmine.getEnv().addReporter(new SpecReporter({spec: {displayStacktrace: true}})); } }; ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/e2e/src/app.e2e-spec.ts ================================================ import {AppPage} from './app.po'; import {browser, logging} from 'protractor'; describe('workspace-project App', () => { let page: AppPage; beforeEach(() => { page = new AppPage(); }); it('should display welcome message', () => { page.navigateTo(); expect(page.getTitleText()).toEqual('Welcome to web-dashboard!'); }); afterEach(async () => { // Assert that there are no errors emitted from the browser const logs = await browser.manage().logs().get(logging.Type.BROWSER); expect(logs).not.toContain(jasmine.objectContaining({ level: logging.Level.SEVERE, } as logging.Entry)); }); }); ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/e2e/src/app.po.ts ================================================ import {browser, by, element} from 'protractor'; export class AppPage { navigateTo() { return browser.get(browser.baseUrl) as Promise; } getTitleText() { return element(by.css('app-root h1')).getText() as Promise; } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/e2e/tsconfig.e2e.json ================================================ { "extends": "../tsconfig.json", "compilerOptions": { "outDir": "../out-tsc/app", "module": "commonjs", "target": "es5", "types": [ "jasmine", "jasminewd2", "node" ] } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/package.json ================================================ { "name": "web-dashboard", "version": "0.0.0", "scripts": { "ng": "ng", "start": "ng serve", "build": "ng build --prod", "test": "ng test", "lint": "ng lint", "e2e": "ng e2e" }, "private": true, "dependencies": { "@angular/animations": "~9.1.1", "@angular/common": "~9.1.1", "@angular/compiler": "~9.1.1", "@angular/core": "~9.1.1", "@angular/forms": "~9.1.1", "@angular/platform-browser": "~9.1.1", "@angular/platform-browser-dynamic": "~9.1.1", "@angular/router": "~9.1.1", "bootstrap": "^4.4.1", "core-js": "^3.6.5", "jquery": "^3.5.0", "popper": "^1.0.1", "rxjs": "~6.5.5", "serialize-javascript": "^3.1.0", "tslib": "^1.11.1", "zone.js": "~0.10.3" }, "devDependencies": { "@angular-devkit/build-angular": "~0.901.1", "@angular/cli": "~9.1.1", "@angular/compiler-cli": "~9.1.1", "@angular/language-service": "~9.1.1", "@types/node": "~13.11.1", "@types/jasmine": "~3.5.10", "@types/jasminewd2": "~2.0.8", "codelyzer": "~5.2.2", "jasmine-core": "~3.5.0", "jasmine-spec-reporter": "~5.0.1", "karma": "~5.0.1", "karma-chrome-launcher": "~3.1.0", "karma-coverage-istanbul-reporter": "~2.1.1", "karma-jasmine": "~3.1.1", "karma-jasmine-html-reporter": "^1.5.3", "protractor": "~5.4.3", "ts-node": "~8.8.2", "tslint": "~6.1.1", "typescript": "~3.8.3" } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/product.template.yaml ================================================ AWSTemplateFormatVersion: "2010-09-09" Transform: AWS::Serverless-2016-10-31 Description: "Creates a static website dashboard that monitors SC-F/ SC-P pipelines and products health" Parameters: CIDRForDashboardAccess: Description: IP CIDR range which will be allowed to access the monitoring dashboard hosted on S3 Type: String Resources: # S3 Bucket for hosting the static website for monitoring dashboard S3StaticHostingBucket: Type: AWS::S3::Bucket DeletionPolicy: Retain # S3 bucket cannot be deleted when non empty Properties: AccessControl: BucketOwnerFullControl WebsiteConfiguration: IndexDocument: index.html ErrorDocument: error.html BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: SSEAlgorithm: AES256 # Bucket policy for the S3 bucket hosting the static website StaticHostingBucketPolicy: Type: AWS::S3::BucketPolicy Properties: PolicyDocument: Id: AllowSelectedIPSource Version: 2012-10-17 Statement: - Sid: PublicReadForGetBucketObjects Effect: Allow Principal: "*" Action: "s3:GetObject" Resource: !Join ["", [!GetAtt [S3StaticHostingBucket, Arn], "/*"]] Condition: IpAddress: aws:SourceIp: - !Ref CIDRForDashboardAccess Bucket: !Ref S3StaticHostingBucket # Code build role for the static website StaticWebsiteBuildRole: Type: AWS::IAM::Role Properties: Path: /servicecatalog-monitoring/ AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - codebuild.amazonaws.com Action: - sts:AssumeRole Policies: - PolicyName: StaticWebsiteBuildPolicy PolicyDocument: Statement: - Action: - "sts:AssumeRole" - "logs:CreateLogGroup" - "logs:CreateLogStream" - "logs:PutLogEvents" - "codecommit:Get*" - "codecommit:List*" - "codecommit:GitPull" - "s3:List*" - "s3:Get*" - "s3:PutObject" Effect: Allow Resource: "*" # Code build project for the static website BuildStaticWebsite: Type: AWS::CodeBuild::Project Properties: Name: BuildStaticWebsite Description: Project to build the static website for the metrics dashboard Environment: Type: LINUX_CONTAINER ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/standard:5.0 ServiceRole: !GetAtt StaticWebsiteBuildRole.Arn Source: Type: CODECOMMIT Location: !Join - "" - - "https://git-codecommit." - !Ref "AWS::Region" - ".amazonaws.com/v4/repos/static-web-app" Artifacts: Type: S3 Location: !Ref S3StaticHostingBucket Packaging: NONE EncryptionDisabled: true Name: "/" # Role for the CW event to invoke the code build CWEventInvokeStaticWebsiteBuildRole: Type: AWS::IAM::Role Properties: Path: /servicecatalog-monitoring/ AssumeRolePolicyDocument: Version: 2012-10-17 Statement: - Effect: Allow Principal: Service: - events.amazonaws.com Action: - sts:AssumeRole Policies: - PolicyName: CWEventPolicyForCodeBuild PolicyDocument: Statement: - Action: - "sts:AssumeRole" - "codebuild:StartBuild" Effect: Allow Resource: "*" # Event for triggering the code build project StaticWebsiteEventRole: Type: AWS::Events::Rule Properties: Name: service-catalog-metrics-static-web-app Description: Event to detect a code change to trigger the code build project EventPattern: source: - "aws.codecommit" detail: referenceType: - branch event: - referenceCreated - referenceUpdated referenceName: - v4 detail-type: - CodeCommit Repository State Change resources: - !Sub 'arn:aws:codecommit:${AWS::Region}:${AWS::AccountId}:static-web-app' Targets: - Id: "InvokeStaticWebAppBuild" Arn: !GetAtt BuildStaticWebsite.Arn RoleArn: !GetAtt CWEventInvokeStaticWebsiteBuildRole.Arn Outputs: WebsiteURL: Value: !GetAtt [S3StaticHostingBucket, WebsiteURL] Description: URL for website hosted on S3 S3BucketName: Value: !Ref S3StaticHostingBucket Description: Name of S3 bucket to hold website content StaticWebsiteCodeBuildName: Value: !Ref BuildStaticWebsite Description: Code build project for the static website build and deployment ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/_helpers/header.interceptor.ts ================================================ import {Injectable} from '@angular/core'; import {HttpEvent, HttpHandler, HttpInterceptor, HttpRequest} from '@angular/common/http'; import {Observable} from 'rxjs'; @Injectable() export class HeaderInterceptor implements HttpInterceptor { intercept(request: HttpRequest, next: HttpHandler): Observable> { // add headers request = request.clone({ setHeaders: { 'Content-Type': 'application/json', 'Cache-Control': 'no-cache', 'Pragma': 'no-cache', 'Expires': 'Sat, 01 Jan 2000 00:00:00 GMT' } }); return next.handle(request); } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/_helpers/index.ts ================================================ export * from './header.interceptor'; ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/_models/index.ts ================================================ export * from './product-info'; export * from './product-launch-list'; export * from './pipeline-info'; export * from './pipeline-list'; ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/_models/pipeline-info.ts ================================================ export class PipelineInfo { name: string; status: string; revision_id: string; revision_summary: string; } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/_models/pipeline-list.ts ================================================ import {PipelineInfo} from "./pipeline-info"; export class PipelineList { key: PipelineInfo; } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/_models/product-info.ts ================================================ export class ProductInfo { account_id: number; region: string; launch: string; portfolio: string; product: string; expected_version: string; actual_version: string; active: boolean; status: string; } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/_models/product-launch-list.ts ================================================ import {ProductInfo} from "./product-info"; export class ProductLaunchList { key: ProductInfo; } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/_services/index.ts ================================================ export * from './list-launch.service'; ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/_services/list-launch.service.ts ================================================ import {Injectable} from '@angular/core'; import {ProductInfo, ProductLaunchList} from "../_models"; import {BehaviorSubject, Observable} from "rxjs"; import {HttpClient} from "@angular/common/http"; import {environment} from "../../environments/environment"; @Injectable({ providedIn: 'root' }) export class ListLaunchService { list_launches: Observable; baseUrl: string = `${environment.apiUrl}/assets/list-launches.json`; private _list_launches: BehaviorSubject; private dataStore: { // This is where we will store our data in memory list_launches: ProductInfo[]; }; constructor(private http: HttpClient) { this.dataStore = {list_launches: []}; this._list_launches = >new BehaviorSubject([]); this.list_launches = this._list_launches.asObservable(); } loadAll() { let product_array: ProductInfo[]; return this.http.get(`${this.baseUrl}`) .subscribe( data => { console.log('Loading the data from JSON....'); console.log(data); product_array = Object.keys(data).map(function (key) { return data[key]; }); console.log('Data converted to a collection....'); console.log(product_array); this.dataStore.list_launches = product_array; this._list_launches.next(Object.assign({}, this.dataStore).list_launches); }, error => console.log('Failed to load status.', error) ) } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/_services/pipeline-status.service.ts ================================================ import {Injectable} from '@angular/core'; import {PipelineInfo} from "../_models"; import {BehaviorSubject, Observable} from "rxjs"; import {HttpClient} from "@angular/common/http"; import {environment} from "../../environments/environment"; @Injectable({ providedIn: 'root' }) export class PipelineStatusService { pipelines: Observable; baseUrl: string = `${environment.apiUrl}/assets/show-pipelines.json`; private _pipelines: BehaviorSubject; private dataStore: { // This is where we will store our data in memory pipelines: PipelineInfo[]; }; constructor(private http: HttpClient) { this.dataStore = {pipelines: []}; this._pipelines = >new BehaviorSubject([]); this.pipelines = this._pipelines.asObservable(); } loadAll() { let pipeline_array: PipelineInfo[]; return this.http.get(`${this.baseUrl}`) .subscribe( data => { console.log('Loading the data from JSON....'); console.log(data); pipeline_array = Object.keys(data).map(function (key) { return data[key]; }); console.log('Data converted to a collection....'); console.log(pipeline_array); this.dataStore.pipelines = pipeline_array; this._pipelines.next(Object.assign({}, this.dataStore).pipelines); }, error => console.log('Failed to load status.', error) ) } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/app-routing.module.ts ================================================ import {NgModule} from '@angular/core'; import {RouterModule, Routes} from '@angular/router'; import {ListLaunchesComponent} from "./list-launches/list-launches.component"; import {ShowPipelinesComponent} from "./show-pipelines/show-pipelines.component"; const routes: Routes = [ { path: '', redirectTo: '/list-launches', pathMatch: 'full' }, { path: 'list-launches', component: ListLaunchesComponent }, { path: 'show-pipelines', component: ShowPipelinesComponent } ]; @NgModule({ imports: [RouterModule.forRoot(routes, {useHash: true})], exports: [RouterModule] }) export class AppRoutingModule { } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/app.component.html ================================================ ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/app.component.scss ================================================ ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/app.component.spec.ts ================================================ import {async, TestBed} from '@angular/core/testing'; import {RouterTestingModule} from '@angular/router/testing'; import {AppComponent} from './app.component'; describe('AppComponent', () => { beforeEach(async(() => { TestBed.configureTestingModule({ imports: [ RouterTestingModule ], declarations: [ AppComponent ], }).compileComponents(); })); it('should create the app', () => { const fixture = TestBed.createComponent(AppComponent); const app = fixture.debugElement.componentInstance; expect(app).toBeTruthy(); }); it(`should have as title 'web-dashboard'`, () => { const fixture = TestBed.createComponent(AppComponent); const app = fixture.debugElement.componentInstance; expect(app.title).toEqual('web-dashboard'); }); it('should render title in a h1 tag', () => { const fixture = TestBed.createComponent(AppComponent); fixture.detectChanges(); const compiled = fixture.debugElement.nativeElement; expect(compiled.querySelector('h1').textContent).toContain('Welcome to web-dashboard!'); }); }); ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/app.component.ts ================================================ import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush }) export class AppComponent { } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/app.module.ts ================================================ import {BrowserModule} from '@angular/platform-browser'; import {NgModule} from '@angular/core'; import {AppRoutingModule} from './app-routing.module'; import {AppComponent} from './app.component'; import {ListLaunchesComponent} from './list-launches/list-launches.component'; import {HTTP_INTERCEPTORS, HttpClientModule} from '@angular/common/http'; import {FormsModule, ReactiveFormsModule} from "@angular/forms"; import {HeaderComponent} from './header/header.component'; import {FooterComponent} from './footer/footer.component'; import {HeaderInterceptor} from "./_helpers"; import {ShowPipelinesComponent} from './show-pipelines/show-pipelines.component'; import {SpinnerComponent} from './spinner/spinner.component'; @NgModule({ declarations: [ AppComponent, ListLaunchesComponent, HeaderComponent, FooterComponent, ShowPipelinesComponent, SpinnerComponent ], imports: [ BrowserModule, FormsModule, ReactiveFormsModule, HttpClientModule, AppRoutingModule ], providers: [ {provide: HTTP_INTERCEPTORS, useClass: HeaderInterceptor, multi: true} ], bootstrap: [AppComponent] }) export class AppModule { } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/footer/footer.component.html ================================================ ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/footer/footer.component.scss ================================================ @import "~src/styles"; ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/footer/footer.component.spec.ts ================================================ import {async, ComponentFixture, TestBed} from '@angular/core/testing'; import {FooterComponent} from './footer.component'; describe('FooterComponent', () => { let component: FooterComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [FooterComponent] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(FooterComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); }); ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/footer/footer.component.ts ================================================ import {Component, OnInit} from '@angular/core'; @Component({ selector: 'app-footer', templateUrl: './footer.component.html', styleUrls: ['./footer.component.scss'] }) export class FooterComponent implements OnInit { constructor() { } ngOnInit() { } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/header/header.component.html ================================================

Service Catalog Monitoring Dashboard

================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/header/header.component.scss ================================================ @import "~src/styles"; ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/header/header.component.spec.ts ================================================ import {async, ComponentFixture, TestBed} from '@angular/core/testing'; import {HeaderComponent} from './header.component'; describe('HeaderComponent', () => { let component: HeaderComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [HeaderComponent] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(HeaderComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); }); ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/header/header.component.ts ================================================ import {Component, OnInit} from '@angular/core'; @Component({ selector: 'app-header', templateUrl: './header.component.html', styleUrls: ['./header.component.scss'] }) export class HeaderComponent implements OnInit { constructor() { } ngOnInit() { } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/list-launches/list-launches.component.html ================================================

Product Launch Status

Last refreshed {{ now | date:'MMM d, y, h:mm:ss a'}}

Account ID Region Launch Portfolio Product Expected Version Actual Version Active Status
{{list_launch.account_id}} {{list_launch.region}} {{list_launch.launch}} {{list_launch.portfolio}} {{list_launch.product}} {{list_launch.expected_version}} {{list_launch.actual_version}} {{list_launch.active}} {{list_launch.status}}
================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/list-launches/list-launches.component.scss ================================================ @import "~src/styles"; ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/list-launches/list-launches.component.spec.ts ================================================ import {async, ComponentFixture, TestBed} from '@angular/core/testing'; import {ListLaunchesComponent} from './list-launches.component'; describe('ListLaunchesComponent', () => { let component: ListLaunchesComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ListLaunchesComponent] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(ListLaunchesComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); }); ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/list-launches/list-launches.component.ts ================================================ import {ChangeDetectionStrategy, ChangeDetectorRef, Component, OnInit, ViewEncapsulation} from '@angular/core'; import {ProductInfo} from "../_models"; import {Observable} from "rxjs"; import {ListLaunchService} from "../_services"; @Component({ selector: 'app-list-launches', templateUrl: './list-launches.component.html', styleUrls: ['./list-launches.component.scss'], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush }) export class ListLaunchesComponent implements OnInit { list_launches$: Observable; now: number; show_spinner: boolean = true; constructor(private listLaunchService: ListLaunchService, private changeDetectorRef: ChangeDetectorRef) { } ngOnInit() { // Load the data every 5 seconds setInterval(() => { this.loadAll(); this.now = Date.now(); this.changeDetectorRef.markForCheck(); this.show_spinner = false; }, 5000); } loadAll() { this.list_launches$ = this.listLaunchService.list_launches; this.listLaunchService.loadAll(); } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/show-pipelines/show-pipelines.component.html ================================================

Pipelines Status

Last refreshed {{ now | date:'MMM d, y, h:mm:ss a'}}

Pipeline Name Status Revision ID Revision Summary
{{pipeline.name}} {{pipeline.status}} {{pipeline.revision_id}} {{pipeline.revision_summary}}
================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/show-pipelines/show-pipelines.component.scss ================================================ @import "~src/styles"; ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/show-pipelines/show-pipelines.component.spec.ts ================================================ import {async, ComponentFixture, TestBed} from '@angular/core/testing'; import {ShowPipelinesComponent} from './show-pipelines.component'; describe('ShowPipelinesComponent', () => { let component: ShowPipelinesComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ShowPipelinesComponent] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(ShowPipelinesComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); }); ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/show-pipelines/show-pipelines.component.ts ================================================ import {ChangeDetectorRef, Component, OnInit} from '@angular/core'; import {Observable} from "rxjs"; import {PipelineInfo} from "../_models"; import {PipelineStatusService} from "../_services/pipeline-status.service"; @Component({ selector: 'app-show-pipelines', templateUrl: './show-pipelines.component.html', styleUrls: ['./show-pipelines.component.scss'] }) export class ShowPipelinesComponent implements OnInit { pipelines$: Observable; now: number; show_spinner: boolean = true; constructor(private pipelineStatusService: PipelineStatusService, private changeDetectorRef: ChangeDetectorRef) { } ngOnInit() { // Load the data every 5 seconds setInterval(() => { this.loadAll(); this.now = Date.now(); this.changeDetectorRef.markForCheck(); this.show_spinner = false; }, 5000); } loadAll() { this.pipelines$ = this.pipelineStatusService.pipelines; this.pipelineStatusService.loadAll(); } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/spinner/spinner.component.html ================================================

{{message}}

================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/spinner/spinner.component.scss ================================================ @import "~src/styles"; ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/spinner/spinner.component.spec.ts ================================================ import {async, ComponentFixture, TestBed} from '@angular/core/testing'; import {SpinnerComponent} from './spinner.component'; describe('SpinnerComponent', () => { let component: SpinnerComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [SpinnerComponent] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(SpinnerComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); }); ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/app/spinner/spinner.component.ts ================================================ import {Component, Input, OnInit} from '@angular/core'; @Component({ selector: 'app-spinner', templateUrl: './spinner.component.html', styleUrls: ['./spinner.component.scss'] }) export class SpinnerComponent implements OnInit { @Input() message: string = 'Loading the details....'; @Input() enable: boolean = false; constructor() { } ngOnInit() { } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/assets/list-launches.json ================================================ { "123456789014_eu-west-1_product-one": { "account_id": "123456789014", "region": "eu-west-1", "launch": "product-one", "portfolio": "compute-portfolio", "product": "product-one", "expected_version": "v2", "actual_version": "v1", "active": true, "status": "AVAILABLE" }, "123456789015_eu-west-1_product-two": { "account_id": "123456789015", "region": "eu-west-1", "launch": "product-two", "portfolio": "network-portfolio", "product": "product-two", "expected_version": "v1", "actual_version": "v1", "active": true, "status": "ERROR" } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/assets/show-pipelines.json ================================================ { "servicecatalog-factory-pipeline": { "name": "servicecatalog-factory-pipeline", "status": "Succeeded", "revision_id": "6702bd413ddd3ad978c82a195db1e83a9ceaf664", "revision_summary": "Added monitoring products" }, "product-two-network-portfolio-v1-pipeline": { "name": "product-two-network-portfolio-v1-pipeline", "status": "Failed", "revision_id": "80260f1d8d43bd03b25ddb02624f03f1c945e5c3", "revision_summary": "Added subnets" } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/browserslist ================================================ # This file is currently used by autoprefixer to adjust CSS to support the below specified browsers # For additional information regarding the format and rule options, please see: # https://github.com/browserslist/browserslist#queries # # For IE 9-11 support, please remove 'not' from the last line of the file and adjust as needed > 0.5% last 2 versions Firefox ESR not dead not IE 9-11 ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/environments/environment.prod.ts ================================================ export const environment = { production: true, apiUrl: location.origin }; ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/environments/environment.ts ================================================ // This file can be replaced during build by using the `fileReplacements` array. // `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. // The list of file replacements can be found in `angular.json`. export const environment = { production: false, apiUrl: location.origin }; /* * For easier debugging in development mode, you can import the following file * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. * * This import should be commented out in production mode because it will have a negative impact * on performance if an error is thrown. */ // import 'zone.js/dist/zone-error'; // Included with Angular CLI. ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/error.html ================================================ Web Dashboard

Oops!

We can't find the page you requested

================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/index.html ================================================ Web Dashboard ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/karma.conf.js ================================================ // Karma configuration file, see link for more information // https://karma-runner.github.io/1.0/config/configuration-file.html module.exports = function (config) { config.set({ basePath: '', frameworks: ['jasmine', '@angular-devkit/build-angular'], plugins: [ require('karma-jasmine'), require('karma-chrome-launcher'), require('karma-jasmine-html-reporter'), require('karma-coverage-istanbul-reporter'), require('@angular-devkit/build-angular/plugins/karma') ], client: { clearContext: false // leave Jasmine Spec Runner output visible in browser }, coverageIstanbulReporter: { dir: require('path').join(__dirname, '../coverage/web-dashboard'), reports: ['html', 'lcovonly', 'text-summary'], fixWebpackSourcePaths: true }, reporters: ['progress', 'kjhtml'], port: 9876, colors: true, logLevel: config.LOG_INFO, autoWatch: true, browsers: ['Chrome'], singleRun: false, restartOnFileChange: true }); }; ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/main.ts ================================================ import {enableProdMode} from '@angular/core'; import {platformBrowserDynamic} from '@angular/platform-browser-dynamic'; import {AppModule} from './app/app.module'; import {environment} from './environments/environment'; if (environment.production) { enableProdMode(); } platformBrowserDynamic().bootstrapModule(AppModule) .catch(err => console.error(err)); ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/polyfills.ts ================================================ /** * This file includes polyfills needed by Angular and is loaded before the app. * You can add your own extra polyfills to this file. * * This file is divided into 2 sections: * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. * 2. Application imports. Files imported after ZoneJS that should be loaded before your main * file. * * The current setup is for so-called "evergreen" browsers; the last versions of browsers that * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. * * Learn more in https://angular.io/guide/browser-support */ /*************************************************************************************************** * BROWSER POLYFILLS */ /** IE10 and IE11 requires the following for NgClass support on SVG elements */ // import 'classlist.js'; // Run `npm install --save classlist.js`. /** * Web Animations `@angular/platform-browser/animations` * Only required if AnimationBuilder is used within the application and using IE/Edge or Safari. * Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0). */ // import 'web-animations-js'; // Run `npm install --save web-animations-js`. /** * By default, zone.js will patch all possible macroTask and DomEvents * user can disable parts of macroTask/DomEvents patch by setting following flags * because those flags need to be set before `zone.js` being loaded, and webpack * will put import in the top of bundle, so user need to create a separate file * in this directory (for example: zone-flags.ts), and put the following flags * into that file, and then add the following code before importing zone.js. * import './zone-flags.ts'; * * The flags allowed in zone-flags.ts are listed here. * * The following flags will work for all browsers. * * (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame * (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick * (window as any).__zone_symbol__BLACK_LISTED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames * * in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js * with the following flag, it will bypass `zone.js` patch for IE/Edge * * (window as any).__Zone_enable_cross_context_check = true; * */ /*************************************************************************************************** * Zone JS is required by default for Angular itself. */ import 'zone.js/dist/zone'; // Included with Angular CLI. /*************************************************************************************************** * APPLICATION IMPORTS */ ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/styles.scss ================================================ /* You can add global styles to this file, and also import other style files */ body { background-color: white; padding: 1.5rem 1rem 1.5rem 1rem; } .browser-upgrade { margin: 0.2em 0; background: #ccc; color: #000; padding: 0.2em 0; } /* Custom page header */ .header { padding-bottom: 3rem; border-bottom: .05rem solid #e5e5e5; } /* Make the masthead heading the same height as the navigation */ .header h3 { margin-top: 0; margin-bottom: 0; line-height: 3rem; color: black; } h4 { color: black; } .header img { padding-left: 1em; } .nav-link { color: blue; font-weight: bold; } .table td { color: black; } /* Custom page footer */ .footer { padding-top: 1.5rem; color: black; border-top: .05rem solid #e5e5e5; } /* Customize container */ @media (min-width: 48em) { .container { max-width: 46rem; } } .container-narrow > hr { margin: 2rem 0; } .form, .table-data { margin: 1.5rem 0; color: black; } .required label { font-weight: bold; } .required label:after { color: #e32; content: ' *'; display: inline; } /* Responsive: Portrait tablets and up */ @media screen and (min-width: 48em) { /* Remove the padding we set earlier */ .header, .footer { padding-right: 0; padding-left: 0; } /* Space out the masthead */ .header { margin-bottom: 2rem; } } .btn-space { margin-right: 0.5rem; } /** Spinner styling */ .spinner-message { text-align: center; } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/test.ts ================================================ // This file is required by karma.conf.js and loads recursively all the .spec and framework files import 'zone.js/dist/zone-testing'; import {getTestBed} from '@angular/core/testing'; import {BrowserDynamicTestingModule, platformBrowserDynamicTesting} from '@angular/platform-browser-dynamic/testing'; declare const require: any; // First, initialize the Angular testing environment. getTestBed().initTestEnvironment( BrowserDynamicTestingModule, platformBrowserDynamicTesting() ); // Then we find all the tests. const context = require.context('./', true, /\.spec\.ts$/); // And load the modules. context.keys().map(context); ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/tsconfig.app.json ================================================ { "extends": "../tsconfig.json", "compilerOptions": { "outDir": "../out-tsc/app", "types": [] }, "exclude": [ "test.ts", "**/*.spec.ts" ] } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/tsconfig.spec.json ================================================ { "extends": "../tsconfig.json", "compilerOptions": { "outDir": "../out-tsc/spec", "types": [ "jasmine", "node" ] }, "files": [ "test.ts", "polyfills.ts" ], "include": [ "**/*.spec.ts", "**/*.d.ts" ] } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/src/tslint.json ================================================ { "extends": "../tslint.json", "rules": { "directive-selector": [ true, "attribute", "app", "camelCase" ], "component-selector": [ true, "element", "app", "kebab-case" ] } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/tsconfig.json ================================================ { "compileOnSave": false, "compilerOptions": { "baseUrl": "./", "outDir": "./dist/out-tsc", "sourceMap": true, "declaration": false, "module": "es2015", "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, "importHelpers": true, "target": "es5", "typeRoots": [ "node_modules/@types" ], "lib": [ "es2018", "dom" ] } } ================================================ FILE: unsorted/service-catalog-tools-dashboard/static-web-app/v4/tslint.json ================================================ { "extends": "tslint:recommended", "rulesDirectory": [ "codelyzer" ], "rules": { "array-type": false, "arrow-parens": false, "deprecation": { "severity": "warn" }, "import-blacklist": [ true, "rxjs/Rx" ], "interface-name": false, "max-classes-per-file": false, "max-line-length": [ true, 140 ], "member-access": false, "member-ordering": [ true, { "order": [ "static-field", "instance-field", "static-method", "instance-method" ] } ], "no-consecutive-blank-lines": false, "no-console": [ true, "debug", "info", "time", "timeEnd", "trace" ], "no-empty": false, "no-inferrable-types": [ true, "ignore-params" ], "no-non-null-assertion": true, "no-redundant-jsdoc": true, "no-switch-case-fall-through": true, "no-use-before-declare": true, "no-var-requires": false, "object-literal-key-quotes": [ true, "as-needed" ], "object-literal-sort-keys": false, "ordered-imports": false, "quotemark": [ true, "single" ], "trailing-comma": false, "no-output-on-prefix": true, "use-input-property-decorator": true, "use-output-property-decorator": true, "use-host-property-decorator": true, "no-input-rename": true, "no-output-rename": true, "use-life-cycle-interface": true, "use-pipe-transform-interface": true, "component-class-suffix": true, "directive-class-suffix": true } } ================================================ FILE: unsorted/service-control-policy/README.md ================================================ # service-control-policy This is a solution that provides the ability to create & attach Service Control Policies. ## Description Service control policies (SCPs) are one type of policy that you can use to manage your organization. SCPs offer central control over the maximum available permissions for all accounts in your organization, allowing you to ensure your accounts stay within your organization’s access control guidelines. scp-create can be used to create a service control policy. scp-attach will then be used to attach this policy against an Organizational Unit or Account. ## Install Instructions ```bash aws codecommit create-repository --repository-name scp-create git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/scp-create svn export https://github.com/awslabs/aws-service-catalog-products/trunk/service-control-policy/scp-create/v1 scp-create --force aws codecommit create-repository --repository-name scp-attach git clone --config 'credential.helper=!aws codecommit credential-helper $@' --config 'credential.UseHttpPath=true' https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/scp-attach svn export https://github.com/awslabs/aws-service-catalog-products/trunk/service-control-policy/scp-attach/v1 scp-attach --force ``` ================================================ FILE: unsorted/service-control-policy/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: scp-create-guardrail-001: portfolio: demo-central-it-team-portfolio product: scp-create version: v1 parameters: PolicyName: default: 'enable_encryption_rest_log_archive' PolicyDescription: default: 'Prevents encryption configuration being added to any S3 resource unless using a specific role' S3Bucket: ssm: name: /sc-outputs/scp-guardrails-security-account/BucketName region: eu-central-1 S3Object: default: '1.0_enable_encryption_rest_log_archive.json' OrgRole: ssm: name: /sc-outputs/org-bootstrap-roles/SCPManagementRoleArn region: eu-central-1 deploy_to: tags: - tag: aws_account_name:core_security regions: default_region outputs: ssm: - param_name: /sc-outputs/scp-create-guardrail-001/PolicyId stack_output: PolicyId scp-attach-guardrail-001: portfolio: demo-central-it-team-portfolio product: scp-attach version: v1 depends_on: - scp-create-guardrail-001 parameters: PolicyId: ssm: name: /sc-outputs/scp-create-guardrail-001/PolicyId region: eu-central-1 TargetId: default: 'ou-xxxx-yyyyyyyy' OrgRole: ssm: name: /sc-outputs/org-bootstrap-roles/SCPManagementRoleArn region: eu-central-1 deploy_to: tags: - tag: aws_account_name:core_security regions: default_region ================================================ FILE: unsorted/service-control-policy/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: scp-create Owner: infrastructure-team@customer.com Description: Creates SCP Distributor: IT-Support-Customer SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: infrastructure-team@customer.com SupportUrl: https://wiki.customer.com/infrastructure-team/self-service/ Tags: - Key: lz-type Value: core - Key: product-type Value: scp Versions: - Name: v1 Description: Creates SCP Active: True Source: Provider: CodeCommit Configuration: RepositoryName: scp-create BranchName: master BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.8 build: commands: - for dir in src/*; do pip install -r $dir/requirements.txt -t $dir/; done {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' - Name: scp-attach Owner: infrastructure-team@customer.com Description: Attaches SCP Distributor: IT-Support-Customer SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: infrastructure-team@customer.com SupportUrl: https://wiki.customer.com/infrastructure-team/self-service/ Tags: - Key: lz-type Value: core - Key: product-type Value: scp Versions: - Name: v1 Description: Attaches SCP Active: True Source: Provider: CodeCommit Configuration: RepositoryName: scp-attach BranchName: master BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.8 build: commands: - for dir in src/*; do pip install -r $dir/requirements.txt -t $dir/; done {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' ================================================ FILE: unsorted/service-control-policy/scp-attach/v1/README.md ================================================ # scp-attach This cloudformation template uses custom resources backed by Lambda to attach Service Control Policies (SCP). ## IMPORTANT - Portfolio Build Spec Modify the Build Spec in the Factory portfolio.yaml to ensure the Python packages are installed - as specified by the requirements.txt For example: ``` - Name: scp-attach Owner: infrastructure-team@customer.com Description: Attaches SCP Distributor: IT-Support-Customer SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: infrastructure-team@customer.com SupportUrl: https://wiki.customer.com/infrastructure-team/self-service/ Tags: - Key: lz-type Value: core Versions: - Name: v1 Description: Attaches SCP Active: True Source: Provider: CodeCommit Configuration: RepositoryName: scp-attach BranchName: master BuildSpec: | version: 0.2 phases: build: commands: - for dir in src/*; do pip install -r $dir/requirements.txt -t $dir/; done {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' ``` ## Parameters ``` PolicyId: Description: The unique identifier (ID) of the policy that you want to attach to the target Type: String TargetId: Description: The unique identifier (ID) of the root, OU, or account that you want to attach the policy to. Type: String OrgRole: Description: IAM Role Lambda uses to perform policy attach/delete actions Type: String ``` For example : ``` PolicyId = "p-dcvs56kz" TargetId = "ou-aqba-fqufiols" OrgRole = "arn:aws:iam::1234567890:role/OrgSCP" ``` ### OrgRole This IAM role requires the following permissions and would sit in the Organisation Master account: ``` { "Version": "2012-10-17", "Statement": [ { "Sid": "VisualEditor0", "Effect": "Allow", "Action": [ "organizations:DetachPolicy", "organizations:AttachPolicy" ], "Resource": "*" } ] } ``` Typically this would be a cross account role with a trust relationship like: ``` { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::0987654321:root" }, "Action": "sts:AssumeRole", "Condition": {} } ] } ``` ================================================ FILE: unsorted/service-control-policy/scp-attach/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: 'Attaches SCP Policy using supporting lambda functions' Parameters: PolicyId: Description: The unique identifier (ID) of the policy that you want to attach to the target Type: String TargetId: Description: The unique identifier (ID) of the root, OU, or account that you want to attach the policy to. Type: String OrgRole: Description: IAM Role Lambda uses to perform policy attach/delete actions Type: String Resources: AttachPolicyLambdaRole: Type: 'AWS::IAM::Role' Properties: AssumeRolePolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Principal: Service: 'lambda.amazonaws.com' Action: - 'sts:AssumeRole' Path: '/' ManagedPolicyArns: - 'arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole' Policies: - PolicyName: AssumeOrgRole PolicyDocument: Statement: - Effect: Allow Action: - sts:AssumeRole Resource: '*' AttachPolicyLambda: Type: AWS::Serverless::Function Properties: CodeUri: ./src/attach_policy Handler: lambda_function.lambda_handler MemorySize: 128 Role: !GetAtt AttachPolicyLambdaRole.Arn Runtime: python3.7 Timeout: 60 AttachPolicy: Type: Custom::AttachPolicy Properties: ServiceToken: !GetAtt 'AttachPolicyLambda.Arn' PolicyId: !Ref 'PolicyId' TargetId: !Ref 'TargetId' OrgRole: !Ref 'OrgRole' ================================================ FILE: unsorted/service-control-policy/scp-attach/v1/src/attach_policy/cfnresponse.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import requests import json SUCCESS = "SUCCESS" FAILED = "FAILED" def send(event, context, responseStatus, responseData, physicalResourceId=None, noEcho=False): responseUrl = event['ResponseURL'] print(responseUrl) responseBody = {} responseBody['Status'] = responseStatus responseBody['Reason'] = 'See the details in CloudWatch Log Stream: ' + context.log_stream_name responseBody['PhysicalResourceId'] = physicalResourceId or context.log_stream_name responseBody['StackId'] = event['StackId'] responseBody['RequestId'] = event['RequestId'] responseBody['LogicalResourceId'] = event['LogicalResourceId'] responseBody['NoEcho'] = noEcho responseBody['Data'] = responseData json_responseBody = json.dumps(responseBody) print("Response body:\n" + json_responseBody) headers = { 'content-type' : '', 'content-length' : str(len(json_responseBody)) } try: response = requests.put(responseUrl, data=json_responseBody, headers=headers) print("Status code: " + response.reason) except Exception as e: print("send(..) failed executing requests.put(..): " + str(e)) ================================================ FILE: unsorted/service-control-policy/scp-attach/v1/src/attach_policy/lambda_function.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import logging import json import boto3 import cfnresponse # Configure logging FORMAT = '%(asctime)s - %(name)s - %(levelname)s - %(message)s' if len(logging.getLogger().handlers) > 0: logging.getLogger().setLevel(logging.INFO) else: logging.basicConfig(format=FORMAT, level=logging.INFO) def lambda_handler(event, context): """ Lambda Function for command execution """ logging.info("Received event: " + json.dumps(event, indent=2)) request_type = event['RequestType'] if request_type == 'Create': attach_policy(event, context) elif request_type == 'Delete': detach_policy(event, context) elif request_type == 'Update': update_policy(event, context) def attach_policy(event, context): status = cfnresponse.FAILED data = {} policy_id = event['ResourceProperties']['PolicyId'] target_id = event['ResourceProperties']['TargetId'] org_role = event['ResourceProperties']['OrgRole'] try: session = assume_role(org_role, "AttachPolicy") client = session.client('organizations') response = client.attach_policy( PolicyId=policy_id, TargetId=target_id ) logging.info(response) status = cfnresponse.SUCCESS except BaseException as ex: logging.exception(ex) finally: cfnresponse.send(event=event, context=context, responseStatus=status, responseData=data, physicalResourceId=None) def detach_policy(event, context): status = cfnresponse.FAILED data = {} policy_id = event['ResourceProperties']['PolicyId'] target_id = event['ResourceProperties']['TargetId'] org_role = event['ResourceProperties']['OrgRole'] try: session = assume_role(org_role, "DetachPolicy") client = session.client('organizations') response = client.detach_policy( PolicyId=policy_id, TargetId=target_id ) logging.info(response) status = cfnresponse.SUCCESS except BaseException as ex: logging.exception(ex) finally: cfnresponse.send(event=event, context=context, responseStatus=status, responseData=data, physicalResourceId=None) def update_policy(event, context): status = cfnresponse.FAILED data = {} org_role = event['ResourceProperties']['OrgRole'] old_policy_id = event['OldResourceProperties']['PolicyId'] old_target_id = event['OldResourceProperties']['TargetId'] new_policy_id = event['ResourceProperties']['PolicyId'] new_target_id = event['ResourceProperties']['TargetId'] try: session = assume_role(org_role, "UpdatePolicy") client = session.client('organizations') response = client.detach_policy( PolicyId=old_policy_id, TargetId=old_target_id ) logging.info(response) response = client.attach_policy( PolicyId=new_policy_id, TargetId=new_target_id ) logging.info(response) status = cfnresponse.SUCCESS except BaseException as ex: logging.exception(ex) finally: cfnresponse.send(event=event, context=context, responseStatus=status, responseData=data, physicalResourceId=None) def assume_role(arn, session_name): """aws sts assume-role --role-arn arn:aws:iam::00000000000000:role/example-role --role-session-name example-role""" sts_client = boto3.client('sts') sts_client.get_caller_identity()["Account"] response = sts_client.assume_role( RoleArn=arn, RoleSessionName=session_name) session = boto3.Session(aws_access_key_id=response['Credentials']['AccessKeyId'], aws_secret_access_key=response['Credentials']['SecretAccessKey'], aws_session_token=response['Credentials']['SessionToken']) return session ================================================ FILE: unsorted/service-control-policy/scp-attach/v1/src/attach_policy/requirements.txt ================================================ boto3==1.10.0 ================================================ FILE: unsorted/service-control-policy/scp-create/v1/.gitignore ================================================ venv deploy.sh product.template.yaml.output ================================================ FILE: unsorted/service-control-policy/scp-create/v1/README.md ================================================ # scp-create This cloudformation template uses custom resources backed by Lambda to create Service Control Policies (SCP). ## IMPORTANT - Portfolio Build Spec Modify the Build Spec in the Factory portfolio.yaml to ensure the Python packages are installed - as specified by the requirements.txt For example: ``` - Name: scp-create Owner: infrastructure-team@customer.com Description: Creates SCP Distributor: IT-Support-Customer SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: infrastructure-team@customer.com SupportUrl: https://wiki.customer.com/infrastructure-team/self-service/ Tags: - Key: lz-type Value: core Versions: - Name: v1 Description: Creates SCP Active: True Source: Provider: CodeCommit Configuration: RepositoryName: scp-create BranchName: master BuildSpec: | version: 0.2 phases: build: commands: - for dir in src/*; do pip install -r $dir/requirements.txt -t $dir/; done {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' ``` ## Parameters ``` PolicyName: Description: Name of SCP Policy Type: String PolicyDescription: Description: Description of Policy Type: String S3Bucket: Description: S3 bucket where policy has been uploaded Type: String S3Object: Description: S3 object name of policy Type: String OrgRole: Description: IAM Role Lambda uses to perform policy attach/delete actions. Type: String ``` For example : ``` PolicyName = "deny_cloudtrail_stoplogging" S3Bucket = "scp-policy-bucket" S3Object = "deny_cloudtrail_stoplogging.json" PolicyDescription = "Prevents Cloudtrail logging being turned off." OrgRole = "arn:aws:iam::1234567890:role/OrgSCP" ``` ## OrgRole This IAM role requires the following permissions and would sit in the Organisation Master account: ``` { "Version": "2012-10-17", "Statement": [ { "Sid": "VisualEditor0", "Effect": "Allow", "Action": [ "organizations:UpdatePolicy", "organizations:DetachPolicy", "organizations:AttachPolicy", "organizations:DeletePolicy", "organizations:DescribePolicy", "organizations:CreatePolicy", "organizations:ListPolicies" ], "Resource": "*" } ] } ``` Typically this would be a cross account role with a trust relationship like: ``` { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::0987654321:root" }, "Action": "sts:AssumeRole", "Condition": {} } ] } ``` ## Outputs This product will output a PolicyId e.g. `p-dcvs56kz`. This Id will be used in the `SCP-Attach` product to attach the policy with a target. ================================================ FILE: unsorted/service-control-policy/scp-create/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: 'Creates SCP Policy using supporting lambda functions' Parameters: PolicyName: Description: Name of SCP Policy Type: String PolicyDescription: Description: Description of Policy Type: String S3Bucket: Description: S3 bucket where policy has been uploaded Type: String S3Object: Description: S3 object name of policy Type: String OrgRole: Description: ARN of IAM role that Lambda will assume to perform policy attach/delete actions. Type: String Resources: CreatePolicyLambdaRole: Type: 'AWS::IAM::Role' Properties: AssumeRolePolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Principal: Service: 'lambda.amazonaws.com' Action: - 'sts:AssumeRole' Path: '/' ManagedPolicyArns: - 'arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole' Policies: - PolicyName: AssumeOrgRole PolicyDocument: Statement: - Effect: Allow Action: - sts:AssumeRole - s3:List* - s3:Get* Resource: '*' CreatePolicyLambda: Type: AWS::Serverless::Function Properties: CodeUri: ./src/create_policy Handler: lambda_function.lambda_handler MemorySize: 128 Role: !GetAtt CreatePolicyLambdaRole.Arn Runtime: python3.7 Timeout: 60 Environment: Variables: DEBUG_MODE: 'true' CreatePolicy: Type: Custom::CreatePolicy Properties: ServiceToken: !GetAtt 'CreatePolicyLambda.Arn' PolicyName: !Ref 'PolicyName' S3Object: !Ref 'S3Object' S3Bucket: !Ref 'S3Bucket' OrgRole: !Ref 'OrgRole' PolicyDescription: !Ref 'PolicyDescription' Outputs: PolicyId: Description: 'Policy Id of SCP' Value: !Ref 'CreatePolicy' ================================================ FILE: unsorted/service-control-policy/scp-create/v1/src/create_policy/cfnresponse.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import requests import json SUCCESS = "SUCCESS" FAILED = "FAILED" def send(event, context, responseStatus, responseData, physicalResourceId=None, noEcho=False): responseUrl = event['ResponseURL'] responseBody = {} responseBody['Status'] = responseStatus responseBody['Reason'] = 'See the details in CloudWatch Log Stream: ' + context.log_stream_name responseBody['PhysicalResourceId'] = physicalResourceId or context.log_stream_name responseBody['StackId'] = event['StackId'] responseBody['RequestId'] = event['RequestId'] responseBody['LogicalResourceId'] = event['LogicalResourceId'] responseBody['NoEcho'] = noEcho responseBody['Data'] = responseData json_responseBody = json.dumps(responseBody) print("Response body:\n" + json_responseBody) headers = { 'content-type' : '', 'content-length' : str(len(json_responseBody)) } try: response = requests.put(responseUrl, data=json_responseBody, headers=headers) print("Status code: " + response.reason) except Exception as e: print("send(..) failed executing requests.put(..): " + str(e)) ================================================ FILE: unsorted/service-control-policy/scp-create/v1/src/create_policy/lambda_function.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import logging import json import boto3 import cfnresponse # Configure logging FORMAT = '%(asctime)s - %(name)s - %(levelname)s - %(message)s' if len(logging.getLogger().handlers) > 0: logging.getLogger().setLevel(logging.INFO) else: logging.basicConfig(format=FORMAT, level=logging.INFO) def lambda_handler(event, context): """ Lambda Function for command execution """ logging.info("Received event: " + json.dumps(event, indent=2)) request_type = event['RequestType'] if request_type == 'Create': create_policy(event, context) elif request_type == 'Delete': delete_policy(event, context) elif request_type == 'Update': update_policy(event, context) def get_policy(event): s3_bucket = event['ResourceProperties']['S3Bucket'] s3_object = event['ResourceProperties']['S3Object'] s3 = boto3.resource('s3') policy_file = s3.Object(s3_bucket, s3_object) return policy_file.get()['Body'].read().decode('utf-8') def assume_role(arn, session_name): """aws sts assume-role --role-arn arn:aws:iam::00000000000000:role/example-role --role-session-name example-role""" sts_client = boto3.client('sts') sts_client.get_caller_identity()["Account"] response = sts_client.assume_role( RoleArn=arn, RoleSessionName=session_name) session = boto3.Session(aws_access_key_id=response['Credentials']['AccessKeyId'], aws_secret_access_key=response['Credentials']['SecretAccessKey'], aws_session_token=response['Credentials']['SessionToken']) return session def create_policy(event, context): status = cfnresponse.FAILED data = {} org_role = event['ResourceProperties']['OrgRole'] policy_name = event['ResourceProperties']['PolicyName'] policy_description = event['ResourceProperties']['PolicyDescription'] policy_id = None try: session = assume_role(org_role, "CreatePolicy") client = session.client('organizations') response = client.create_policy( Content=get_policy(event), Description=policy_description, Name=policy_name, Type="SERVICE_CONTROL_POLICY" ) policy_id = response['Policy']['PolicySummary']['Id'] logging.info("Policy created. Policy Id {0}".format(policy_id)) status = cfnresponse.SUCCESS except BaseException as ex: logging.exception(ex) finally: cfnresponse.send(event=event, context=context, responseStatus=status, responseData=data, physicalResourceId=policy_id) def update_policy(event, context): status = cfnresponse.FAILED data = {} org_role = event['ResourceProperties']['OrgRole'] policy_name = event['ResourceProperties']['PolicyName'] policy_description = event['ResourceProperties']['PolicyDescription'] try: policy_id = event['PhysicalResourceId'] session = assume_role(org_role, "UpdatePolicy") client = session.client('organizations') response = client.update_policy( Content=get_policy(event), Description=policy_description, Name=policy_name, PolicyId=policy_id ) policy_id = response['Policy']['PolicySummary']['Id'] logging.info("Policy Updated. Policy Id {0}".format(policy_id)) status = cfnresponse.SUCCESS except BaseException as ex: logging.exception(ex) finally: cfnresponse.send(event=event, context=context, responseStatus=status, responseData=data, physicalResourceId=policy_id) def delete_policy(event, context): status = cfnresponse.FAILED data = {} org_role = event['ResourceProperties']['OrgRole'] try: policy_id = event['PhysicalResourceId'] session = assume_role(org_role, "DeletePolicy") client = session.client('organizations') response = client.delete_policy( PolicyId=policy_id ) logging.debug(response) logging.info("Policy {0} deleted.".format(policy_id)) status = cfnresponse.SUCCESS except BaseException as ex: logging.exception(ex) finally: cfnresponse.send(event=event, context=context, responseStatus=status, responseData=data, physicalResourceId=policy_id) ================================================ FILE: unsorted/service-control-policy/scp-create/v1/src/create_policy/requirements.txt ================================================ boto3==1.10.0 requests==2.22.0 ================================================ FILE: unsorted/ssm-backup-restore/README.md ================================================ # SSM Backup and Restore This service catalog product will create a primary S3 bucket in the same region with a bucket policy, and a Disaster Recovery (DR) bucket in the specified region. CloudFormation invokes Lambda as a Custom Resource to back-up SSM parameter store in the launched region to the primary S3 bucket. The primary bucket will replicate to the DR bucket. After CREATE_COMPLETE for the CloudFormation Stack, a CloudWatch Rule is scheduled to invoke the backup lambda function based on the rate (Specified as a parameter). An SNS topic is created to notify the user when backups occur. This serverless application creates a Lambda function which restores SSM parameters from an S3 backup. The function will restore from either the Main SSM bucket or the DR SSM bucket and once completed will send an email to the address specified during the backup process, in order to alert of its completion or communicate any errors. The function will also automatically terminate the Service Catalog product it belongs to which will delete the CloudFormation stack and the function itself, making it so that the user does not have to worry about 'cleaning up' after a restoration. Note that the function will also apply the bucket policy of the Main bucket to the DR bucket to facilitate the restoration. ================================================ FILE: unsorted/ssm-backup-restore/manifest.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 schema: puppet-2019-04-01 launches: ssm-backup-restore-ssm-backup: portfolio: demo-central-it-team-portfolio product: ssm-backup version: v1 parameters: pS3BucketName: default: #insert bucket name pKmsKeyId: default: #insert KMS Key Id pDrRegion: default: #insert dr region pBackupSchedule: default: rate(30 minutes) pSNSUpdateEmail: default: #insert email address outputs: ssm: - param_name: /ssm-backup/BackupFunctionArn stack_output: oBackupFunctionArn - param_name: /ssm-backup/SSMLambdaRoleArn stack_output: oSSMLambdaRoleArn - param_name: /ssm-backup/SSMMainBucketName stack_output: oSSMMainBucketName - param_name: /ssm-backup/SSMDRBucketArn stack_output: oSSMDRBucketArn - param_name: /ssm-backup/SNSTopicArn stack_output: oSNSTopicArn - param_name: /ssm-backup/CreateDRBucketFunctionArn stack_output: oCreateDRBucketFunctionArn - param_name: /ssm-backup/DRBucket stack_output: oDRBucket - param_name: /ssm-backup/BackUpBucket stack_output: oBackUpBucket - param_name: /ssm-backup/CloudWatchRule stack_output: CloudWatchRule deploy_to: tags: - tag: aws_account_name:Organization_Management_Account regions: default_region ssm-backup-restore-ssm-restore: portfolio: demo-central-it-team-portfolio product: ssm-backup version: v1 parameters: pS3BucketName: default: #insert bucket name outputs: ssm: - param_name: /ssm-backup/RestoreFunctionArn stack_output: oRestoreFunctionArn deploy_to: tags: - tag: aws_account_name:Organization_Management_Account regions: default_region ================================================ FILE: unsorted/ssm-backup-restore/portfolio.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 Schema: factory-2019-04-01 Portfolios: Components: - Name: ssm-backup Owner: central-it@customer.com Description: back-up SSM Parameter Store for DR. Distributor: IT-Support-Customer SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/ssm-backup-product Tags: - Key: product-type Value: ssm-backup Versions: - Name: v1 Description: ssm-backup-product for backing up all SSM Parameters to S3 within a given account/region. Active: True Options: ShouldCFNNag: True Source: Provider: CodeCommit Configuration: RepositoryName: ssm-backup BranchName: v1 BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.8 build: commands: - pip install -r requirements.txt -t src {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' - Name: ssm-restore Owner: central-it@customer.com Description: restore SSM Parameter Store from S3 DR bucket. Distributor: IT-Support-Customer SupportDescription: Contact us on Chime for help #central-it-team SupportEmail: central-it@customer.com SupportUrl: https://wiki.customer.com/central-it-team/self-service/ssm-backup-product Tags: - Key: product-type Value: ssm-restore Versions: - Name: v1 Description: ssm-restore-product for restoring SSM Parameter Store from S3 DR bucket within a given account. Active: True Options: ShouldCFNNag: True Source: Provider: CodeCommit Configuration: RepositoryName: ssm-restore BranchName: v1 BuildSpec: | version: 0.2 phases: install: runtime-versions: python: 3.8 build: commands: - pip install -r requirements.txt -t src {% for region in ALL_REGIONS %} - aws cloudformation package --template $(pwd)/product.template.yaml --s3-bucket sc-factory-artifacts-${ACCOUNT_ID}-{{ region }} --s3-prefix ${STACK_NAME} --output-template-file product.template-{{ region }}.yaml {% endfor %} artifacts: files: - '*' - '**/*' ================================================ FILE: unsorted/ssm-backup-restore/ssm-backup/README.md ================================================ # SSM-ParamStore-Backup ![Template Design] (SSM-Store-Architecture.png) ### Description: This service catalog product will create a primary S3 bucket in the same region with a bucket policy, and a Disaster Recovery (DR) bucket in the specified region. CloudFormation invokes Lambda as a Custom Resource to back-up SSM parameter store in the launched region to the primary S3 bucket. The primary bucket will replicate to the DR bucket. After CREATE_COMPLETE for the CloudFormation Stack, a CloudWatch Rule is scheduled to invoke the backup lambda function based on the rate (Specified as a parameter). An SNS topic is created to notify the user when backups occur. ### Returns: 1. SUCCESSFUL-200 CFN OR 2. FAILURE - CFN Error and/or Lambda Error, CloudWatch Log Group ### λ CFN Custom Resource Examples: ``` rBackupParameters: Type: Custom::CustomResource Properties: ServiceToken: !GetAtt rStoreParametersFunction.Arn rCreateDrBucket: Type: Custom::CustomResource Properties: ServiceToken: !GetAtt rCreateDrBucketFunction.Arn AccountID: !Sub '${AWS::AccountId}' ``` ================================================ FILE: unsorted/ssm-backup-restore/ssm-backup/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: "AWS::Serverless-2016-10-31" Description: | Custom serverless solution that backs up SSM parameters to an S3 Bucket, bucket encrypted via KMS, user can specify AWS managed key or CMK {"framework": "servicecatalog-products", "role": "product", "product-set": "ssm-backup-restore", "product": "ssm-backup", "version": "v1"} Parameters: pS3BucketName: Type: String Description: The name for the S3 storage bucket, must be globally unique. i.e. include account number in name pKmsKeyId: Type: String Description: The KMS or CMK id for S3 bucket encryption pDrRegion: Type: String Description: The region for Disaster Recovery pBackupSchedule: Type: String Description: The schedule to backup parameters, based on RPO. ConstraintDescription: rate(30 minutes), rate(1 hour), rate(1 day) pSNSUpdateEmail: Type: String # Change this to a regex for emails <-Constraint Description Description: The email address to ping when a backup or restore operation occurs pIamRolePath: Type: String Description: The desired IAM Role path. Resources: # S3 Bucket rBackupS3Bucket: Type: AWS::S3::Bucket DeletionPolicy: Retain Properties: BucketName: !Ref pS3BucketName VersioningConfiguration: Status: Enabled ReplicationConfiguration: Role: !GetAtt rBucketReplicationRole.Arn Rules: - Id: DrReplicationRule Status: Enabled SourceSelectionCriteria: SseKmsEncryptedObjects: Status: 'Enabled' Destination: Bucket: !GetAtt rCreateDrBucket.bucket_arn StorageClass: STANDARD EncryptionConfiguration: ReplicaKmsKeyID: !Sub 'arn:aws:kms:${pDrRegion}:${AWS::AccountId}:alias/aws/s3' BucketEncryption: ServerSideEncryptionConfiguration: - ServerSideEncryptionByDefault: KMSMasterKeyID: !Ref pKmsKeyId SSEAlgorithm: aws:kms # S3 Bucket Policy rS3BucketPolicy: Type: AWS::S3::BucketPolicy DeletionPolicy: Retain Properties: Bucket: !Ref rBackupS3Bucket PolicyDocument: Statement: - Sid: AWSParamBucketPermissionCheck Effect: Allow Principal: AWS: !GetAtt rLambdaRole.Arn Action: s3:GetBucketAcl Resource: !GetAtt rBackupS3Bucket.Arn - Sid: AWSParamBucketDelivery Effect: Allow Principal: AWS: !GetAtt rLambdaRole.Arn Action: - s3:PutObject - s3:GetObject Resource: !Sub "arn:aws:s3:::${rBackupS3Bucket}/*" # IAM Role For SSM Lambda Functions rLambdaRole: Type: AWS::IAM::Role Properties: AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Principal: Service: - lambda.amazonaws.com Action: - 'sts:AssumeRole' Effect: Allow Path: !Ref pIamRolePath RoleName: SSMParameterBackupRole ManagedPolicyArns: - "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" Policies: - PolicyName: ParameterStoreBackupPermissions PolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Action: - ssm:GetParameterHistory - ssm:GetParametersByPath - ssm:GetParameters - ssm:GetParameter - ssm:DescribeParameters Resource: !Sub "arn:aws:ssm:*:${AWS::AccountId}:*" - PolicyName: PutParamToS3Bucket PolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Action: - s3:PutObject - s3:GetBucketAcl Resource: !GetAtt rBackupS3Bucket.Arn - PolicyName: ParameterStoreRestorePermissions PolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Action: - ssm:PutParameter Resource: !Sub "arn:aws:ssm:*:${AWS::AccountId}:*" - PolicyName: GetParamFromS3Bucket PolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Action: - s3:GetBucketAcl - s3:GetObject - s3:List* - s3:Read* - s3:GetBucketPolicy - s3:PutBucketPolicy Resource: [!GetAtt rBackupS3Bucket.Arn, !GetAtt rCreateDrBucket.bucket_arn] - PolicyName: CleanUpPermissions PolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Action: - servicecatalog:TerminateProvisionedProduct - servicecatalog:DescribeProvisionedProduct - cloudformation:DeleteStack - cloudformation:DescribeStacks - iam:DetachRolePolicy - iam:DeleteRole - iam:DeletePolicy - iam:DeleteRolePolicy - lambda:DeleteFunction - lambda:RemovePermission - events:DeleteRule - events:RemoveTargets - sns:Publish - sns:Unsubscribe - sns:DeleteTopic - sns:GetTopicAttributes Resource: "*" # Lambda Function to Backup SSM rStoreParametersFunction: Type: AWS::Serverless::Function Description: The lambda function that gets all Systems Manager Parameters from Parameter store and backs up to S3 Name: !Sub "BackupParameterStoreFunction-${AWS::AccountId}-${AWS::Region}" Properties: Environment: Variables: S3BucketARN: !GetAtt rBackupS3Bucket.Arn S3BucketName: !Ref rBackupS3Bucket Region: !Sub "${AWS::Region}" CodeUri: ./src Handler: handler.lambda_handler Runtime: python3.8 Timeout: 900 Role: !GetAtt rLambdaRole.Arn # Custom Resource to Invoke the Backup Lambda Function rBackupParameters: Type: Custom::CustomResource Properties: ServiceToken: !GetAtt rStoreParametersFunction.Arn # CloudWatch Rule to Schedule the Backup Lambda Invocation rCloudWatchRule: Type: AWS::Events::Rule Properties: Description: A scheduled rule that triggers the store lambda function to backup ssm parameters Name: BackupSSMParameterStoreRule ScheduleExpression: !Ref pBackupSchedule State: ENABLED Targets: - Arn: !GetAtt rStoreParametersFunction.Arn Id: !Ref rStoreParametersFunction # Permissions for Rule to Invoke Lambda Functions rPermissionsToInvoke: Type: AWS::Lambda::Permission Properties: FunctionName: !Ref rStoreParametersFunction Action: "lambda:InvokeFunction" Principal: "events.amazonaws.com" SourceArn: !GetAtt rCloudWatchRule.Arn # SNS Topic to Ping when an Update Occurs rSSMUpdateSNSTopic: Type: AWS::SNS::Topic Properties: TopicName: "SSMUpdateTopic" rSSMUpdateSNSSubscription: Type: AWS::SNS::Subscription Properties: Endpoint: !Ref pSNSUpdateEmail Protocol: email TopicArn: !Ref rSSMUpdateSNSTopic # Create DR Bucket rCreateDrBucketFunction: Type: AWS::Serverless::Function Description: The lambda creates a s3 bucket in another region. Name: !Sub "CreateDrBucketFunction-${AWS::AccountId}-${AWS::Region}" Properties: Environment: Variables: DrRegion: !Ref pDrRegion S3BucketName: !Ref pS3BucketName #OriginalLambdaRoleName: !Ref rLambdaRole OriginalLambdaRoleName: SSMParameterBackupRole OriginalPolicyName: GetParamFromS3Bucket CodeUri: ./src Handler: createBucket.lambda_handler Runtime: python3.8 Timeout: 900 Role: !GetAtt rCreateBucketRole.Arn # Custom Resource to Invoke the Create DR Bucket Lambda Function rCreateDrBucket: Type: Custom::CustomResource Properties: ServiceToken: !GetAtt rCreateDrBucketFunction.Arn AccountID: !Sub '${AWS::AccountId}' # S3 Bucket Replication Role rBucketReplicationRole: Type: AWS::IAM::Role Properties: RoleName: DrReplicationRole Path: !Ref pIamRolePath AssumeRolePolicyDocument: Statement: - Action: - 'sts:AssumeRole' Effect: Allow Principal: Service: - s3.amazonaws.com Policies: - PolicyName: S3ReplicationPermissions PolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Action: - s3:GetReplicationConfiguration - s3:ListBucket Resource: - !Sub 'arn:aws:s3:::${pS3BucketName}' - Effect: Allow Action: - s3:GetObjectVersionForReplication - s3:GetObjectVersionAcl - s3:GetObjectVersionTagging Resource: - !Sub 'arn:aws:s3:::${pS3BucketName}/*' - Effect: Allow Action: - s3:ReplicateObject - s3:ReplicateDelete - s3:ReplicateTags Resource: !Sub '${rCreateDrBucket.bucket_arn}/*' # IAM Role For DR Bucket Lambda Function rCreateBucketRole: Type: AWS::IAM::Role Properties: AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Principal: Service: - lambda.amazonaws.com Action: - 'sts:AssumeRole' Effect: Allow Path: !Ref pIamRolePath RoleName: DrCreateBucketRole ManagedPolicyArns: - "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" Policies: - PolicyName: CreateBucketPermissions PolicyDocument: Version: "2012-10-17" Statement: - Effect: Allow Action: - s3:PutObject - s3:DeleteBucket - s3:CreateBucket - s3:PutBucketVersioning - s3:GetBucketVersioning - s3:GetBucketPolicy - s3:PutBucketPolicy Resource: "arn:aws:s3:::*" Outputs: oBackupFunctionArn: Value: !GetAtt rStoreParametersFunction.Arn oSSMLambdaRoleArn: Value: !GetAtt rLambdaRole.Arn Export: Name: SSMBackupRestoreLambdaArn oSSMMainBucketName: Value: !Ref rBackupS3Bucket Export: Name: SSMMainBucketName oSSMDRBucketArn: Value: !GetAtt rCreateDrBucket.bucket_arn Export: Name: SSMDRBucketArn oSNSTopicArn: Value: !Ref rSSMUpdateSNSTopic Export: Name: SSMBackupRestoreSNSTopicArn oCreateDRBucketFunctionArn: Value: !GetAtt rCreateDrBucketFunction.Arn oDRBucket: Value: !GetAtt rCreateDrBucket.bucket_arn oBackUpBucket: Value: !GetAtt rBackupS3Bucket.Arn oCloudWatchRule: Value: !Ref rCloudWatchRule ================================================ FILE: unsorted/ssm-backup-restore/ssm-backup/v1/requirements.txt ================================================ crhelper botocore boto3 ================================================ FILE: unsorted/ssm-backup-restore/ssm-backup/v1/src/createBucket.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import boto3 import os, logging, json from botocore.retries import bucket #from pkg_resources import Version from crhelper import CfnResource from botocore.exceptions import ClientError # declare helper and logging helper = CfnResource() logger = logging.getLogger() logger.setLevel(logging.INFO) # get env variables DrRegion = os.environ['DrRegion'] S3BucketName = os.environ['S3BucketName'] OriginalLambdaRoleName = os.environ['OriginalLambdaRoleName'] OriginalPolicyName = os.environ['OriginalPolicyName'] def lambda_handler(event, context): helper(event, context) @helper.create @helper.update def create_resources(event, context): s3 = boto3.client('s3', region_name = DrRegion) account_id = event['ResourceProperties']['AccountID'] #format bucket name dr_bucket_name = str(f'disasterrecovery-{S3BucketName}') #Create S3 bucket for DR response = create_bucket(s3, dr_bucket_name, DrRegion) logger.info(f'response from bucket creation{response}') #enable bucket versioning response = enable_bucket_versioning(s3, dr_bucket_name) logger.info(f'response to setting bucket versioning: {response}') bucket_arn = str(f'arn:aws:s3:::{dr_bucket_name}') helper.Data['bucket_arn'] = bucket_arn def create_bucket(s3, dr_bucket_name, DrRegion): try: response = s3.create_bucket( Bucket = dr_bucket_name, CreateBucketConfiguration = { 'LocationConstraint': DrRegion } ) return response except ClientError as e: logger.info(e.response) def enable_bucket_versioning(s3, dr_bucket_name): try: response = s3.put_bucket_versioning( Bucket = dr_bucket_name, VersioningConfiguration={ 'Status': 'Enabled' } ) return response except ClientError as e: logger.info(e.response) @helper.delete def delete_bucket(event,context): try: bucket_name = str(f'disasterrecovery-{S3BucketName}') s3_resource = boto3.resource('s3', region_name = DrRegion) s3 = boto3.client('s3', region_name = DrRegion) bucket = s3_resource.Bucket(bucket_name) #Delete bucket objects 1st logger.info(f'Deleting bucket objects from bucket:{bucket_name}') bucket.objects.all().delete() logger.info(f'objects deleted successfully from bucket:{bucket_name}') #Delete bucket 2nd logger.info(f'Deleting s3 bucket {bucket_name}') response = s3.delete_bucket( Bucket = bucket_name) logger.info(response) logger.info(f'deleted s3 bucket {bucket_name}') return response except ClientError as e: logger.info(e.response) ================================================ FILE: unsorted/ssm-backup-restore/ssm-backup/v1/src/handler.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import boto3 import os, logging, json from crhelper import CfnResource from botocore.exceptions import ClientError # declare helper and logging helper = CfnResource() logger = logging.getLogger() logger.setLevel(logging.INFO) # get env variables S3BucketArn = os.environ['S3BucketARN'] S3BucketName = os.environ['S3BucketName'] region = os.environ['Region'] def lambda_handler(event, context): logger.info(event) try: # Decides whether event is a Customer Resource or an Event Rule if event.get('RequestType'): helper(event=event, context=context) else: store_ssm_parameters(event=event, context=context) except Exception as e: logger.error(e.response) raise ValueError(e.response) @helper.create @helper.update def store_ssm_parameters(event, context): # if event['RequestType'] == 'Delete': # do_nada() # else: #get region # declare boto3 client for ssm ssm = boto3.client('ssm', region_name=region) # 1. get list of ssm parameters parameters = get_ssm_params(event, ssm) # 2. get parameter values params_with_values = get_parameter_values(parameters, ssm) # 3. store parameters as json objects in s3 store_params(params_with_values, region) def get_ssm_params(event, ssm): try: # get parameters from ssm w/ describe. if too many parameters, # a next token is provided to loop until end token_exist = False parameters = ssm.describe_parameters() just_parameters = parameters['Parameters'] logger.info(parameters) # print the logs for viewing ssm parameters logger.info('The following are ssm parameters collected:') logger.info(just_parameters) if 'NextToken' in parameters: token_exist = True logger.info('there are more paramters to get.') token = parameters['NextToken'] while token_exist: logger.info('found next token.') next_parameters = ssm.describe_parameters(NextToken = token) logger.info(next_parameters) just_next_parameters = next_parameters['Parameters'] # append the lists #new_param_dict = {**just_parameters, **just_next_parameters} for i in just_next_parameters: logger.info(i) just_parameters.append(i) logger.info(just_parameters) #just_parameters = new_param_dict if 'NextToken' in next_parameters: logger.info('But wait, theres more parameters!!!') token = next_parameters['NextToken'] else: token_exist = False return just_parameters except ClientError as ex: logger.info(ex.response) def store_params(parameters, region): # decalare s3 boto3 resource s3 = boto3.resource('s3', region_name=region) try: for parameter in parameters: logger.info('uploading parameter to s3') logger.info(parameter['Name']) logger.info(parameter) name = parameter['Name'] processed_parameter = json_processing(parameter) new_object = s3.Object(S3BucketName, str(f'{name}.txt')) new_object.put(Body=processed_parameter, BucketKeyEnabled=True) except ClientError as e: logger.info(e.response) def json_processing(parameter): try: object = parameter #alter data type from datetime to string date = str(object['LastModifiedDate']) object['LastModifiedDate'] = date str_object = json.dumps(object) return str_object except ClientError as ep: logger.info(ep.response) def get_parameter_values(parameters, ssm): for param in parameters: response = ssm.get_parameter( Name = param['Name'], WithDecryption = True ) param['Value'] = response['Parameter']['Value'] return parameters @helper.delete def delete_resource(event, context): request = event.get('RequestType') logger.info(f'received request to remove Custom Resource: {request}, not deleting parameters!') ================================================ FILE: unsorted/ssm-backup-restore/ssm-restore/README.md ================================================ # λ SSM-ParamStore-Restore ![Template Design] (SSM-Restore-Architecture.png) ### Description: This serverless application creates a Lambda function which restores SSM parameters from an S3 backup. The function will restore from either the Main SSM bucket or the DR SSM bucket and once completed will send an email to the address specified during the backup process, in order to alert of its completion or communicate any errors. The function will also automatically terminate the Service Catalog product it belongs to which will delete the CloudFormation stack and the function itself, making it so that the user does not have to worry about 'cleaning up' after a restoration. Note that the function will also apply the bucket policy of the Main bucket to the DR bucket to facilitate the restoration. ### Returns: This function is not made with a custom resource and therefore does not return a value to the CloudFormation stack that created it. The function is called based on a rate (every three minutes) in order to circumvent circular dependencies associated with the functionality and how custom resources work. The function sends a message to an SNS topic with its status which can be thought of as its 'return' and then terminates the Service Catalog product thus deleting the function. Therefore the function will run only once given that the restoration process takes less than three minutes. This rate can be adjusted - see the following example. ### Serverless Event Trigger Example: ``` rRestoreParametersFunction: Type: AWS::Serverless::Function Properties: Events: AutoTrigger: Type: Schedule Properties: Schedule: "rate(5 minutes)" ``` ================================================ FILE: unsorted/ssm-backup-restore/ssm-restore/v1/product.template.yaml ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 AWSTemplateFormatVersion: '2010-09-09' Transform: "AWS::Serverless-2016-10-31" Description: | Custom serverless solution that restores SSM parameters from a recovery S3 bucket {"framework": "servicecatalog-products", "role": "product", "product-set": "ssm-backup-restore", "product": "ssm-restore", "version": "v1"} Parameters: pS3BucketName: Type: String Description: The name of the S3 bucket that holds the parameters Resources: # Lambda Function to Restore Parameters rRestoreParametersFunction: Type: AWS::Serverless::Function Description: The lambda function that restores SSM Parameters from S3 Name: !Sub "RestoreParameterStoreFunction-${AWS::AccountId}-${AWS::Region}" Properties: Environment: Variables: S3BucketName: !Ref pS3BucketName Region: !Sub '${AWS::Region}' RE: 're' StackName: !Sub '${AWS::StackName}' SNSTopicArn: !ImportValue SSMBackupRestoreSNSTopicArn MainBucketName: !ImportValue SSMMainBucketName DRBucketArn: !ImportValue SSMDRBucketArn CodeUri: ./src Handler: restore.lambda_handler Runtime: python3.8 Timeout: 300 Events: AutoTrigger: Type: Schedule Properties: Schedule: "rate(3 minutes)" Role: !ImportValue SSMBackupRestoreLambdaArn Outputs: oRestoreFunctionArn: Value: !GetAtt rRestoreParametersFunction.Arn ================================================ FILE: unsorted/ssm-backup-restore/ssm-restore/v1/requirements.txt ================================================ boto3 botocore ================================================ FILE: unsorted/ssm-backup-restore/ssm-restore/v1/src/restore.py ================================================ # Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import boto3 import os, logging, json, time from botocore.exceptions import ClientError # Declare logging logger = logging.getLogger() logger.setLevel(logging.INFO) # Get env variables S3BucketName = os.environ['S3BucketName'] Region = os.environ['Region'] StackName = os.environ['StackName'] SNSTopicARN = os.environ['SNSTopicArn'] MainBucketName = os.environ['MainBucketName'] DRBucketArn = os.environ['DRBucketArn'] def lambda_handler(event, context): setup_dr_bucket_policy(event, context) restore_ssm_parameters(event, context) def restore_ssm_parameters(event, context): try: # Set s3 boto3 client s3 = boto3.client('s3') # Declare boto3 client for ssm ssm = boto3.client('ssm', region_name= Region) # List objects in the bucket objects = list_parameters_in_bucket(s3) params_to_restore = [obj['Key'] for obj in objects] # Set s3 resource s3_resource = boto3.resource('s3') # Get objects for o in objects: s3_object = get_object(o['Key'],s3_resource) logger.info(s3_object) response = formulate_parameter(s3_object, ssm) logger.info(response) # Clean up resources associated with this invocation of restore clean_up(params_to_restore) except ClientError as restore_ssm_error: logger.info(restore_ssm_error.response) def setup_dr_bucket_policy(event, context): try: s3 = boto3.client('s3') response = s3.get_bucket_policy(Bucket=MainBucketName) policy = json.loads(response['Policy']) policy['Statement'][0]['Resource'] = DRBucketArn policy['Statement'][1]['Resource'] = DRBucketArn + "/*" bucket_policy = json.dumps(policy) response = s3.put_bucket_policy(Bucket=DRBucketArn.split(':::')[1], Policy=bucket_policy) return response except ClientError as e: logger.info(e.response) def clean_up(params_restored): error_status = 0 try: # Set service catalog client sc = boto3.client('servicecatalog') # Get provisioned product id of 'this' product pp_id = StackName[StackName.find('pp-'):] # Make sure provisioned product is in the AVAILABLE state while True: response = sc.describe_provisioned_product(Id=pp_id) pp_status = response['ProvisionedProductDetail']['Status'] if (pp_status == 'AVAILABLE'): break elif (pp_status == 'ERROR' or pp_status == 'TAINTED'): logger.error("Service Catalog Product is in an error state!") error_status = ("The Service Catalog product associated with the restoration has entered a bad state.\n" "Please have an administrator troubleshoot with the following logs:\n" + response['ProvisionedProductDetail']['StatusMessage']) break else: logger.info("Sleeping for 5 seconds - waiting for Service Catalog Provisioned Product to be AVAILABLE") time.sleep(5) # Terminate provisoned product logger.info("Cleaning up Service Catalog Provisioned Product ...") response = sc.terminate_provisioned_product(ProvisionedProductId=pp_id) # Determine what message to send if error_status: message = (error_status + "\nThe Service Catalog Provisioned Product for restoration has been terminated and " "the associated CloudFormation Stack has been deleted.") else: message = ("The SSM Restoration has completed.\nThe Service Catalog Provisioned Product for restoration " "has been terminated and the associated CloudFormation Stack has been deleted. The following is a list of " f"restored parameters:\n{params_restored}") # Send SNS email that restore is complete sns = boto3.client('sns') logger.info("SNS Topic being sent ...") sns.publish( TopicArn = SNSTopicARN, Subject = "SSM Restoration Progress", Message = message ) except ClientError as clean_up_error: logger.info(clean_up_error.response) def list_parameters_in_bucket(s3): try: logger.info("getting objects from the S3 bucket...") response = s3.list_objects_v2( Bucket = S3BucketName ) objects = response['Contents'] if response['IsTruncated'] == False: key_count = response['KeyCount'] logger.info(f'Got {key_count} keys from the S3 bucket. No more to get') else: next_continuation_token = response['NextContinuationToken'] logger.info('got a continuation token, still pulling objects') key_count = response['KeyCount'] more_keys = True while more_keys: next_response = s3.list_objects_v2( Bucket = S3BucketName, ContinuationToken = next_continuation_token ) next_objects = next_response['Contents'] for i in next_objects: objects.append(i) if next_response['IsTruncated'] == False: more_keys = False else: next_continuation_token = next_response['NextContinuationToken'] logger.info('got objects from bucket:') logger.info(objects) return objects except ClientError as list_objects_error: logger.info(list_objects_error.response) def get_object(key_name,s3_resource): try: str_obj = s3_resource.Object(S3BucketName,key_name) response = str_obj.get()['Body'].read() return response except ClientError as getObject_error: logger.info(getObject_error.response) def create_parameter(name, value, p_type, tier, data_type, ssm): try: logger.info('creating parameter') response = ssm.put_parameter( Name = name, Value = value, Type = p_type, Tier = tier, DataType = data_type, Overwrite = True ) logger.info(name) return response except ClientError as create_parameter_error: logger.info(create_parameter_error.response) def formulate_parameter(object, ssm): try: json_obj = json.loads(object) name = json_obj['Name'] value = json_obj['Value'] p_type = json_obj['Type'] tier = json_obj['Tier'] data_type = json_obj['DataType'] response = create_parameter(name, value, p_type, tier, data_type, ssm) return response except ClientError as formulate_parameter: logger.info(formulate_parameter.response)